aboutsummaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2010-11-24 07:55:17 +0000
committerBibiko <bibiko@eva.mpg.de>2010-11-24 07:55:17 +0000
commit36c3c224a32275bd80f76955b54f8057a7ccda21 (patch)
tree8fe8032e25e332ee4cfd1ed3284a38930578476d /Source
parent7d3ddb92111a1f43ecbff14bed6d4a4187257bdd (diff)
downloadsequelpro-36c3c224a32275bd80f76955b54f8057a7ccda21.tar.gz
sequelpro-36c3c224a32275bd80f76955b54f8057a7ccda21.tar.bz2
sequelpro-36c3c224a32275bd80f76955b54f8057a7ccda21.zip
• Bundle Editor
- hide Bundles main menu since the Bundle table view will be refractored completely to OutlineView - fixed validation of RemoveButton (thanks to avenjamin) - fixed storing the very first Bundle command - added Reload Bundles to Gear menu
Diffstat (limited to 'Source')
-rw-r--r--Source/SPBundleEditorController.h1
-rw-r--r--Source/SPBundleEditorController.m35
2 files changed, 26 insertions, 10 deletions
diff --git a/Source/SPBundleEditorController.h b/Source/SPBundleEditorController.h
index e07589e1..a6566e07 100644
--- a/Source/SPBundleEditorController.h
+++ b/Source/SPBundleEditorController.h
@@ -89,6 +89,7 @@
- (IBAction)saveBundle:(id)sender;
- (IBAction)showHelp:(id)sender;
- (IBAction)saveAndCloseWindow:(id)sender;
+- (IBAction)reloadBundles:(id)sender;
- (BOOL)saveBundle:(NSDictionary*)bundle atPath:(NSString*)aPath;
diff --git a/Source/SPBundleEditorController.m b/Source/SPBundleEditorController.m
index 80707d4d..11c8ad87 100644
--- a/Source/SPBundleEditorController.m
+++ b/Source/SPBundleEditorController.m
@@ -83,6 +83,8 @@
- (void)awakeFromNib
{
+ commandBundleArray = [[NSMutableArray alloc] initWithCapacity:1];
+
// Init all needed menus
inputGeneralScopePopUpMenu = [[NSMenu alloc] initWithTitle:@""];
inputInputFieldScopePopUpMenu = [[NSMenu alloc] initWithTitle:@""];
@@ -316,7 +318,6 @@
{
NSMutableDictionary *bundle;
NSUInteger insertIndex;
- BOOL wasDuplicated = NO;
// Store pending changes in Query
[[self window] makeFirstResponder:nameTextField];
@@ -363,7 +364,6 @@
return;
}
- wasDuplicated = YES;
[bundle setObject:newFileName forKey:@"bundleName"];
}
@@ -389,10 +389,11 @@
[commandsTableView scrollRowToVisible:[commandsTableView selectedRow]];
[removeButton setEnabled:([commandsTableView numberOfSelectedRows] > 0)];
+
+ [self _updateInputPopupButton];
+
[[self window] makeFirstResponder:commandsTableView];
- [self scopeButtonChanged:nil];
- if(!wasDuplicated && [commandsTableView numberOfSelectedRows] > 0)
- [commandsTableView editColumn:0 row:insertIndex withEvent:nil select:YES];
+
}
- (IBAction)removeCommandBundle:(id)sender
@@ -445,11 +446,16 @@
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:NSLocalizedString(@"http://www.sequelpro.com/docs/Bundle_Editor", @"Localized help page for bundle editor - do not localize if no translated webpage is available")]];
}
+- (IBAction)reloadBundles:(id)sender
+{
+ [self showWindow:self];
+}
+
- (IBAction)showWindow:(id)sender
{
// Suppress parsing if window is already opened
- if([[self window] isVisible]) {
+ if(sender != self && [[self window] isVisible]) {
[super showWindow:sender];
return;
}
@@ -460,8 +466,8 @@
[super showWindow:sender];
// Re-init commandBundleArray
- if(commandBundleArray) [commandBundleArray release], commandBundleArray = nil;
- commandBundleArray = [[NSMutableArray alloc] init];
+ [commandBundleArray removeAllObjects];
+ [commandsTableView reloadData];
// Load all installed bundle items
if(bundlePath) {
@@ -501,6 +507,8 @@
}
}
+ [removeButton setEnabled:([commandsTableView numberOfSelectedRows] > 0)];
+
[commandBundleArrayController setContent:commandBundleArray];
[commandBundleArrayController rearrangeObjects];
[commandsTableView reloadData];
@@ -561,6 +569,8 @@
if(![bundle objectForKey:@"bundleName"] || ![[bundle objectForKey:@"bundleName"] length]) {
return NO;
}
+ if(!bundlePath)
+ bundlePath = [[[NSFileManager defaultManager] applicationSupportDirectoryForSubDirectory:SPBundleSupportFolder createIfNotExists:YES error:nil] retain];
aPath = [NSString stringWithFormat:@"%@/%@.%@", bundlePath, [bundle objectForKey:@"bundleName"], SPUserBundleFileExtension];
}
@@ -703,8 +713,9 @@
- (void)windowWillClose:(NSNotification *)notification
{
- // Release commandBundleArray if window will close to save memory
- if(commandBundleArray) [commandBundleArray release], commandBundleArray = nil;
+ // Clear commandBundleArray if window will close to save memory
+ [commandBundleArray removeAllObjects];
+ [commandsTableView reloadData];
// Remove temporary drag file if any
if(draggedFilePath) {
@@ -771,11 +782,15 @@
- (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex
{
+ if(![commandBundleArray count]) return @"";
+
if([[aTableColumn identifier] isEqualToString:@"name"]) {
if(![[commandBundleArray objectAtIndex:rowIndex] objectForKey:@"name"]) return @"...";
return [[commandBundleArray objectAtIndex:rowIndex] objectForKey:@"bundleName"];
}
+
return @"";
+
}
- (void)tableViewSelectionDidChange:(NSNotification *)aNotification