diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-11-17 22:07:18 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-11-17 22:07:18 +0000 |
commit | 16e45c62511d8752afdb30f2dd0e0238273aac85 (patch) | |
tree | 3131c6e8ef410014eb6d2f6b6f9116539c8e741e /Source/SPBundleEditorController.h | |
parent | 16d98d9753198d9c654f18351f42131dc74516e1 (diff) | |
download | sequelpro-16e45c62511d8752afdb30f2dd0e0238273aac85.tar.gz sequelpro-16e45c62511d8752afdb30f2dd0e0238273aac85.tar.bz2 sequelpro-16e45c62511d8752afdb30f2dd0e0238273aac85.zip |
• Bundle Editor; added further functionality to Bundle Editor including the chance to drag a bundle from the table view to Finder which creates a complete foo.spBundle bundle folder for exporting a Bundle easily
Diffstat (limited to 'Source/SPBundleEditorController.h')
-rw-r--r-- | Source/SPBundleEditorController.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Source/SPBundleEditorController.h b/Source/SPBundleEditorController.h index 8a2db321..7ab89200 100644 --- a/Source/SPBundleEditorController.h +++ b/Source/SPBundleEditorController.h @@ -41,21 +41,28 @@ IBOutlet NSButton *inputFieldScopeButton; IBOutlet NSButton *dataTableScopeButton; IBOutlet NSButton *disableCheckBox; + IBOutlet NSButton *removeButton; + IBOutlet NSMenuItem *duplicateMenuItem; + IBOutlet NSMenuItem *revealInFinderMenuItem; IBOutlet SRRecorderControl *keyEquivalentField; IBOutlet NSArrayController *commandBundleArrayController; NSMutableArray *commandBundleArray; + NSString *bundlePath; + NSString *draggedFilePath; + } -- (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; +- (IBAction)saveAndCloseWindow:(id)sender; +- (BOOL)saveBundle:(NSDictionary*)bundle atPath:(NSString*)aPath; @end |