1 /* Cydia - iPhone UIKit Front-End for Debian APT
2 * Copyright (C) 2008-2015 Jay Freeman (saurik)
5 /* GNU General Public License, Version 3 {{{ */
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.
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.
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/>.
22 #include "CyteKit/UCPlatform.h"
24 #include "CyteKit/TableViewCell.h"
26 #include "iPhonePrivate.h"
27 #include <Menes/ObjectHandle.h>
29 @implementation CyteTableViewCellContentView {
30 _transient id<CyteTableViewCellDelegate> delegate_;
33 - (id) initWithFrame:(CGRect)frame {
34 if ((self = [super initWithFrame:frame]) != nil) {
35 [self setNeedsDisplayOnBoundsChange:YES];
43 - (void) setDelegate:(id<CyteTableViewCellDelegate>)delegate {
47 - (void) drawRect:(CGRect)rect {
48 [super drawRect:rect];
49 [delegate_ drawContentRect:rect];
54 @implementation CyteTableViewCell {
55 _H<CyteTableViewCellContentView, 1> content_;
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]);
64 self.content = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease];
65 [self.content setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)];
66 [content addSubview:self.content];
68 [self.content setDelegate:(id<CyteTableViewCellDelegate>)self];
72 - (void) _updateHighlightColorsForView:(UIView *)view highlighted:(BOOL)highlighted {
73 if (view == (UIView *) content_)
74 highlighted_ = highlighted;
76 [super _updateHighlightColorsForView:view highlighted:highlighted];
79 - (void) setSelected:(BOOL)selected animated:(BOOL)animated {
80 highlighted_ = selected;
82 [super setSelected:selected animated:animated];
83 [content_ setNeedsDisplay];
86 - (void) setContent:(CyteTableViewCellContentView *)content {
90 - (CyteTableViewCellContentView *) content {
94 - (bool) highlighted {