]> git.saurik.com Git - cydia.git/blobdiff - CyteKit/TableViewCell.h
Also move ListController title support to CyteKit.
[cydia.git] / CyteKit / TableViewCell.h
index f97a592e1d17c0bd50c95d1f94ac0ac9a5fd265d..f435f01f4d07fb995aff79356e28d8ee3aeb6d2c 100644 (file)
 
 #include <UIKit/UIKit.h>
 
-#include <Menes/ObjectHandle.h>
-
 @protocol CyteTableViewCellDelegate
 - (void) drawContentRect:(CGRect)rect;
 @end
 
-@interface CyteTableViewCellContentView : UIView {
-    _transient id<CyteTableViewCellDelegate> delegate_;
-}
+@interface CyteTableViewCellContentView : UIView
 
 - (id) delegate;
 - (void) setDelegate:(id<CyteTableViewCellDelegate>)delegate;
 
 @end
 
-@interface CyteTableViewCell : UITableViewCell {
-    _H<CyteTableViewCellContentView, 1> content_;
-    bool highlighted_;
-}
+@interface CyteTableViewCell : UITableViewCell
+
+- (void) setContent:(CyteTableViewCellContentView *)content;
+- (CyteTableViewCellContentView *) content;
+
+- (bool) highlighted;
 
 @end