diff options
author | 2011-08-08 15:12:05 +0000 | |
---|---|---|
committer | 2011-08-08 15:12:05 +0000 | |
commit | f3493f0e1f92a8a284adb93ecbf350401e1c7423 (patch) | |
tree | 6a2e7b99bbcbf566b184b8789c4452ee175f9ff1 /experimental/CocoaSampleApp/SkOptionsTableView.h | |
parent | 0168afc7196fe82da8af230c93c56f3035d54d2b (diff) |
iOS/Cocoa SampleApp, Drawingboard, and Networking updates
http://codereview.appspot.com/4843041/
http://codereview.appspot.com/4826061/
http://codereview.appspot.com/4832044/
http://codereview.appspot.com/4798055/
git-svn-id: http://skia.googlecode.com/svn/trunk@2058 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'experimental/CocoaSampleApp/SkOptionsTableView.h')
-rw-r--r-- | experimental/CocoaSampleApp/SkOptionsTableView.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/experimental/CocoaSampleApp/SkOptionsTableView.h b/experimental/CocoaSampleApp/SkOptionsTableView.h index d9e77e280a..33dc29f356 100644 --- a/experimental/CocoaSampleApp/SkOptionsTableView.h +++ b/experimental/CocoaSampleApp/SkOptionsTableView.h @@ -13,16 +13,17 @@ @interface SkOptionsTableView : NSTableView <SkNSViewOptionsDelegate, NSTableViewDelegate, NSTableViewDataSource> { NSMutableArray* fItems; const SkTDArray<SkOSMenu*>* fMenus; + BOOL fShowKeys; } @property (nonatomic, retain) NSMutableArray* fItems; - (void)registerMenus:(const SkTDArray<SkOSMenu*>*)menus; - (void)updateMenu:(const SkOSMenu*)menu; - (void)loadMenu:(const SkOSMenu*)menu; +- (IBAction)toggleKeyEquivalents:(id)sender; - (NSCell*)createAction; - (NSCell*)createList:(NSArray*)items current:(int)index; -- (NSCell*)createSegmented:(NSArray*)items current:(int)index; - (NSCell*)createSlider:(float)value min:(float)min max:(float)max; - (NSCell*)createSwitch:(BOOL)state; - (NSCell*)createTextField:(NSString*)placeHolder; |