aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPBundleEditorController.h
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2010-11-17 12:08:13 +0000
committerBibiko <bibiko@eva.mpg.de>2010-11-17 12:08:13 +0000
commit16d98d9753198d9c654f18351f42131dc74516e1 (patch)
treeb836052c1f92c2a3029494976a22aec4c2f44de3 /Source/SPBundleEditorController.h
parentaa818d39f3437acdc28661700a4b0e5de8096815 (diff)
downloadsequelpro-16d98d9753198d9c654f18351f42131dc74516e1.tar.gz
sequelpro-16d98d9753198d9c654f18351f42131dc74516e1.tar.bz2
sequelpro-16d98d9753198d9c654f18351f42131dc74516e1.zip
• further work on Bundle Editor
Diffstat (limited to 'Source/SPBundleEditorController.h')
-rw-r--r--Source/SPBundleEditorController.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/Source/SPBundleEditorController.h b/Source/SPBundleEditorController.h
index 4512cd56..8a2db321 100644
--- a/Source/SPBundleEditorController.h
+++ b/Source/SPBundleEditorController.h
@@ -24,9 +24,38 @@
#import <Cocoa/Cocoa.h>
+@class SRRecorderControl;
@interface SPBundleEditorController : NSWindowController {
+ IBOutlet NSTextView* commandTextView;
+ IBOutlet NSTableView* commandsTableView;
+ IBOutlet NSTextField* nameTextField;
+ IBOutlet NSTextField* tootlipTextField;
+ IBOutlet NSTextField* categoryTextField;
+ IBOutlet NSTextField* fallbackLabelField;
+ IBOutlet NSPopUpButton* inputPopupButton;
+ IBOutlet NSPopUpButton* inputFallbackPopupButton;
+ IBOutlet NSPopUpButton* outputPopupButton;
+ IBOutlet NSButton *editorScopeButton;
+ IBOutlet NSButton *inputFieldScopeButton;
+ IBOutlet NSButton *dataTableScopeButton;
+ IBOutlet NSButton *disableCheckBox;
+ IBOutlet SRRecorderControl *keyEquivalentField;
+
+ IBOutlet NSArrayController *commandBundleArrayController;
+ NSMutableArray *commandBundleArray;
+
+
}
+- (IBAction)scopeButtonChanged:(id)sender;
+- (IBAction)inputPopuButtonChanged:(id)sender;
+- (IBAction)duplicateCommandBundle:(id)sender;
+- (IBAction)addCommandBundle:(id)sender;
+- (IBAction)removeCommandBundle:(id)sender;
+- (IBAction)revealCommandBundleInFinder:(id)sender;
+- (IBAction)showHelp:(id)sender;
+
+
@end