]> git.saurik.com Git - cydia.git/blob - CyteKit/TableViewCell.mm
CyteKit/Application.mm has to have its @interface.
[cydia.git] / CyteKit / TableViewCell.mm
1 /* Cydia - iPhone UIKit Front-End for Debian APT
2 * Copyright (C) 2008-2015 Jay Freeman (saurik)
3 */
4
5 /* GNU General Public License, Version 3 {{{ */
6 /*
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.
11 *
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.
16 *
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 **/
20 /* }}} */
21
22 #include "CyteKit/UCPlatform.h"
23
24 #include "CyteKit/TableViewCell.h"
25
26 #include "iPhonePrivate.h"
27 #include <Menes/ObjectHandle.h>
28
29 @implementation CyteTableViewCellContentView {
30 _transient id<CyteTableViewCellDelegate> delegate_;
31 }
32
33 - (id) initWithFrame:(CGRect)frame {
34 if ((self = [super initWithFrame:frame]) != nil) {
35 [self setNeedsDisplayOnBoundsChange:YES];
36 } return self;
37 }
38
39 - (id) delegate {
40 return delegate_;
41 }
42
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
54 @implementation CyteTableViewCell {
55 _H<CyteTableViewCellContentView, 1> content_;
56 bool highlighted_;
57 }
58
59 - (void) _updateHighlightColorsForView:(UIView *)view highlighted:(BOOL)highlighted {
60 if (view == (UIView *) content_)
61 highlighted_ = highlighted;
62
63 [super _updateHighlightColorsForView:view highlighted:highlighted];
64 }
65
66 - (void) setSelected:(BOOL)selected animated:(BOOL)animated {
67 highlighted_ = selected;
68
69 [super setSelected:selected animated:animated];
70 [content_ setNeedsDisplay];
71 }
72
73 - (void) setContent:(CyteTableViewCellContentView *)content {
74 content_ = content;
75 }
76
77 - (CyteTableViewCellContentView *) content {
78 return content_;
79 }
80
81 - (bool) highlighted {
82 return highlighted_;
83 }
84
85 @end