aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPChooseMenuItemDialog.h
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2010-12-06 23:44:59 +0000
committerstuconnolly <stuart02@gmail.com>2010-12-06 23:44:59 +0000
commit3fccc9c751cded1360aa22796ed3c6d700fd04c1 (patch)
tree7833f05d9540c9ad9ffd09c7dc181ee473484298 /Source/SPChooseMenuItemDialog.h
parent71524d822dd449c131f6e09b2a0be0c3c0101eb1 (diff)
parent263681ef03fd33d516ca8e84db12d1c54570679f (diff)
downloadsequelpro-3fccc9c751cded1360aa22796ed3c6d700fd04c1.tar.gz
sequelpro-3fccc9c751cded1360aa22796ed3c6d700fd04c1.tar.bz2
sequelpro-3fccc9c751cded1360aa22796ed3c6d700fd04c1.zip
Bring outlineview branch up to date with trunk (r2967:2974).
Diffstat (limited to 'Source/SPChooseMenuItemDialog.h')
-rw-r--r--Source/SPChooseMenuItemDialog.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/Source/SPChooseMenuItemDialog.h b/Source/SPChooseMenuItemDialog.h
index e268ab84..3513c2a6 100644
--- a/Source/SPChooseMenuItemDialog.h
+++ b/Source/SPChooseMenuItemDialog.h
@@ -24,17 +24,22 @@
#import <Cocoa/Cocoa.h>
+@class SPChooseMenuItemDialogTextView;
@interface SPChooseMenuItemDialog : NSWindow
{
NSMenu *contextMenu;
- NSTextView *tv;
+ NSInteger selectedItemIndex;
+ BOOL waitForChoice;
+ SPChooseMenuItemDialogTextView *dummyTextView;
}
-@property(readwrite,retain) NSMenu* contextMenu;
+@property(readwrite, retain) NSMenu* contextMenu;
+@property(readwrite, assign) NSInteger selectedItemIndex;
+@property(readwrite, assign) BOOL waitForChoice;
-- (void)initMeWithOptions:(NSDictionary *)displayOptions;
-+ (void)displayMenu:(NSMenu*)theMenu atPosition:(NSPoint)location;
+- (void)initDialog;
++ (NSInteger)withItems:(NSArray*)theList atPosition:(NSPoint)location;
@end