]>
Commit | Line | Data |
---|---|---|
b97fcfc6 | 1 | /* Cydia - iPhone UIKit Front-End for Debian APT |
4c66fad9 | 2 | * Copyright (C) 2008-2015 Jay Freeman (saurik) |
b97fcfc6 JF |
3 | */ |
4 | ||
6d9696a5 | 5 | /* GNU General Public License, Version 3 {{{ */ |
b97fcfc6 | 6 | /* |
6d9696a5 JF |
7 | * Cydia is free software: you can redistribute it and/or modify |
8 | * it under the terms of the GNU General Public License as published | |
9 | * by the Free Software Foundation, either version 3 of the License, | |
10 | * or (at your option) any later version. | |
b97fcfc6 | 11 | * |
6d9696a5 JF |
12 | * Cydia is distributed in the hope that it will be useful, but |
13 | * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | * GNU General Public License for more details. | |
b97fcfc6 | 16 | * |
6d9696a5 JF |
17 | * You should have received a copy of the GNU General Public License |
18 | * along with Cydia. If not, see <http://www.gnu.org/licenses/>. | |
19 | **/ | |
b97fcfc6 JF |
20 | /* }}} */ |
21 | ||
63755c48 JF |
22 | #include "CyteKit/UCPlatform.h" |
23 | ||
b97fcfc6 JF |
24 | #include "CyteKit/TableViewCell.h" |
25 | ||
26 | #include "iPhonePrivate.h" | |
f8c9fd4c | 27 | #include <Menes/ObjectHandle.h> |
b97fcfc6 | 28 | |
f8c9fd4c JF |
29 | @implementation CyteTableViewCellContentView { |
30 | _transient id<CyteTableViewCellDelegate> delegate_; | |
31 | } | |
b97fcfc6 JF |
32 | |
33 | - (id) initWithFrame:(CGRect)frame { | |
34 | if ((self = [super initWithFrame:frame]) != nil) { | |
35 | [self setNeedsDisplayOnBoundsChange:YES]; | |
36 | } return self; | |
37 | } | |
38 | ||
353dda5b JF |
39 | - (id) delegate { |
40 | return delegate_; | |
41 | } | |
42 | ||
b97fcfc6 JF |
43 | - (void) setDelegate:(id<CyteTableViewCellDelegate>)delegate { |
44 | delegate_ = delegate; | |
45 | } | |
46 | ||
47 | - (void) drawRect:(CGRect)rect { | |
48 | [super drawRect:rect]; | |
49 | [delegate_ drawContentRect:rect]; | |
50 | } | |
51 | ||
52 | @end | |
53 | ||
f8c9fd4c JF |
54 | @implementation CyteTableViewCell { |
55 | _H<CyteTableViewCellContentView, 1> content_; | |
56 | bool highlighted_; | |
57 | } | |
b97fcfc6 | 58 | |
2db33ea1 JF |
59 | - (instancetype) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier { |
60 | if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) { | |
61 | UIView *content([self contentView]); | |
62 | CGRect bounds([content bounds]); | |
63 | ||
64 | self.content = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease]; | |
65 | [self.content setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)]; | |
66 | [content addSubview:self.content]; | |
67 | ||
68 | [self.content setDelegate:(id<CyteTableViewCellDelegate>)self]; | |
69 | } return self; | |
70 | } | |
71 | ||
b97fcfc6 JF |
72 | - (void) _updateHighlightColorsForView:(UIView *)view highlighted:(BOOL)highlighted { |
73 | if (view == (UIView *) content_) | |
74 | highlighted_ = highlighted; | |
75 | ||
76 | [super _updateHighlightColorsForView:view highlighted:highlighted]; | |
77 | } | |
78 | ||
79 | - (void) setSelected:(BOOL)selected animated:(BOOL)animated { | |
80 | highlighted_ = selected; | |
81 | ||
82 | [super setSelected:selected animated:animated]; | |
83 | [content_ setNeedsDisplay]; | |
84 | } | |
85 | ||
f8c9fd4c JF |
86 | - (void) setContent:(CyteTableViewCellContentView *)content { |
87 | content_ = content; | |
88 | } | |
89 | ||
90 | - (CyteTableViewCellContentView *) content { | |
91 | return content_; | |
92 | } | |
93 | ||
94 | - (bool) highlighted { | |
95 | return highlighted_; | |
96 | } | |
97 | ||
b97fcfc6 | 98 | @end |