diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-11-24 13:41:31 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-11-24 13:41:31 +0000 |
commit | 3f55b5c341c6fe10dd467b439392b0a43d13beaf (patch) | |
tree | 3c7096dc0e76a7d27db692a866e83d1ea2db767b /Source/SPBundleEditorController.h | |
parent | 36c3c224a32275bd80f76955b54f8057a7ccda21 (diff) | |
download | sequelpro-3f55b5c341c6fe10dd467b439392b0a43d13beaf.tar.gz sequelpro-3f55b5c341c6fe10dd467b439392b0a43d13beaf.tar.bz2 sequelpro-3f55b5c341c6fe10dd467b439392b0a43d13beaf.zip |
• Bundle Editor
- further work to display Bundle commands in a Outline view ordered by scopes and categories
- attention: only partially workable!!
Diffstat (limited to 'Source/SPBundleEditorController.h')
-rw-r--r-- | Source/SPBundleEditorController.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/SPBundleEditorController.h b/Source/SPBundleEditorController.h index a6566e07..b5001e0c 100644 --- a/Source/SPBundleEditorController.h +++ b/Source/SPBundleEditorController.h @@ -25,6 +25,7 @@ #import <Cocoa/Cocoa.h> #import <ShortcutRecorder/ShortcutRecorder.h> #import "SPBundleCommandTextView.h" +#import "SPOutlineView.h" @class SRRecorderControl; @@ -32,6 +33,7 @@ IBOutlet id commandTextView; IBOutlet NSTableView* commandsTableView; + IBOutlet id commandsOutlineView; IBOutlet NSTextField* nameTextField; IBOutlet NSTextField* tootlipTextField; IBOutlet NSTextField* categoryTextField; @@ -45,9 +47,10 @@ IBOutlet NSMenuItem *revealInFinderMenuItem; IBOutlet SRRecorderControl *keyEquivalentField; - IBOutlet NSArrayController *commandBundleArrayController; + IBOutlet NSTreeController *commandBundleTreeController; NSMutableArray *commandBundleArray; - + NSMutableDictionary *commandBundleTree; + NSString *bundlePath; NSString *draggedFilePath; NSString *oldBundleName; |