]> git.saurik.com Git - cydia.git/blob - CyteKit/TableViewCell.mm
Transfer shared content code to CyteTableViewCell.
[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 - (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
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
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
98 @end