diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-11-18 13:48:46 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-11-18 13:48:46 +0000 |
commit | 7449035e027814b807764d59ecd2428dbb43319d (patch) | |
tree | df7f10183d36b2d6138ffc44a85e5e96aec4f370 /Source/SPBundleEditorController.h | |
parent | 94e6cbd84b96af04b0b3f7eec4b67b2b99cf62ad (diff) | |
download | sequelpro-7449035e027814b807764d59ecd2428dbb43319d.tar.gz sequelpro-7449035e027814b807764d59ecd2428dbb43319d.tar.bz2 sequelpro-7449035e027814b807764d59ecd2428dbb43319d.zip |
• Bundle Editor
- input, input fallback, output implemented plus validation
Diffstat (limited to 'Source/SPBundleEditorController.h')
-rw-r--r-- | Source/SPBundleEditorController.h | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/Source/SPBundleEditorController.h b/Source/SPBundleEditorController.h index c313668a..35a11ed6 100644 --- a/Source/SPBundleEditorController.h +++ b/Source/SPBundleEditorController.h @@ -54,9 +54,32 @@ NSString *oldBundleName; BOOL isTableCellEditing; + NSMenu *inputEditorScopePopUpMenu; + NSMenu *inputInputFieldScopePopUpMenu; + NSMenu *inputDataTableScopePopUpMenu; + NSMenu *inputNonePopUpMenu; + NSMenu *outputEditorScopePopUpMenu; + NSMenu *outputInputFieldScopePopUpMenu; + NSMenu *outputDataTableScopePopUpMenu; + NSMenu *inputFallbackEditorScopePopUpMenu; + NSMenu *inputFallbackInputFieldScopePopUpMenu; + + NSArray *inputEditorScopeArray; + NSArray *inputInputFieldScopeArray; + NSArray *inputDataTableScopeArray; + NSArray *outputEditorScopeArray; + NSArray *outputInputFieldScopeArray; + NSArray *outputDataTableScopeArray; + NSArray *inputFallbackEditorScopeArray; + NSArray *inputFallbackInputFieldScopeArray; + + } -- (IBAction)inputPopuButtonChanged:(id)sender; +- (IBAction)inputPopupButtonChanged:(id)sender; +- (IBAction)inputFallbackPopupButtonChanged:(id)sender; +- (IBAction)outputPopupButtonChanged:(id)sender; +- (IBAction)scopeButtonChanged:(id)sender; - (IBAction)duplicateCommandBundle:(id)sender; - (IBAction)addCommandBundle:(id)sender; - (IBAction)removeCommandBundle:(id)sender; |