aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPHistoryController.m
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2009-08-06 00:04:16 +0000
committerrowanbeentje <rowan@beent.je>2009-08-06 00:04:16 +0000
commite4d62081296093ddd4fcb7b09c8901c5e6fd8a3d (patch)
tree9987c070433593daa7e15030df62dec07b417c9d /Source/SPHistoryController.m
parent7ed889b0c5e05d4ee0cc67ae9f0edaf4296e233b (diff)
downloadsequelpro-e4d62081296093ddd4fcb7b09c8901c5e6fd8a3d.tar.gz
sequelpro-e4d62081296093ddd4fcb7b09c8901c5e6fd8a3d.tar.bz2
sequelpro-e4d62081296093ddd4fcb7b09c8901c5e6fd8a3d.zip
- Add history menus to the history back/forward buttons for faster navigation; click and hold buttons to view navigation menu
Diffstat (limited to 'Source/SPHistoryController.m')
-rw-r--r--Source/SPHistoryController.m81
1 files changed, 81 insertions, 0 deletions
diff --git a/Source/SPHistoryController.m b/Source/SPHistoryController.m
index 69ec9e57..d602d8d4 100644
--- a/Source/SPHistoryController.m
+++ b/Source/SPHistoryController.m
@@ -68,6 +68,8 @@
{
BOOL backEnabled = NO;
BOOL forwardEnabled = NO;
+ int i;
+ NSMenu *navMenu;
// Set the active state of the segments if appropriate
if ([history count] && historyPosition > 0) backEnabled = YES;
@@ -75,6 +77,28 @@
[historyControl setEnabled:backEnabled forSegment:0];
[historyControl setEnabled:forwardEnabled forSegment:1];
+
+ // Generate back and forward menus as appropriate to reflect the new state
+ if (backEnabled) {
+ navMenu = [[NSMenu alloc] init];
+ for (i = historyPosition - 1; i >= 0; i--) {
+ [navMenu addItem:[self menuEntryForHistoryEntryAtIndex:i]];
+ }
+ [historyControl setMenu:navMenu forSegment:0];
+ [navMenu release];
+ } else {
+ [historyControl setMenu:nil forSegment:0];
+ }
+ if (forwardEnabled) {
+ navMenu = [[NSMenu alloc] init];
+ for (i = historyPosition + 1; i < [history count]; i++) {
+ [navMenu addItem:[self menuEntryForHistoryEntryAtIndex:i]];
+ }
+ [historyControl setMenu:navMenu forSegment:1];
+ [navMenu release];
+ } else {
+ [historyControl setMenu:nil forSegment:1];
+ }
}
/**
@@ -309,4 +333,61 @@
modifyingHistoryState = NO;
}
+/**
+ * Load a history entry from an associated menu item
+ */
+- (void) loadEntryFromMenuItem:(id)theMenuItem
+{
+ [self loadEntryAtPosition:[theMenuItem tag]];
+}
+
+#pragma mark -
+#pragma mark History entry details and description
+
+/**
+ * Returns a menuitem for a history entry at a supplied index
+ */
+- (NSMenuItem *) menuEntryForHistoryEntryAtIndex:(int)theIndex
+{
+ NSMenuItem *theMenuItem = [[NSMenuItem alloc] init];
+ NSDictionary *theHistoryEntry = [history objectAtIndex:theIndex];
+
+ [theMenuItem setTag:theIndex];
+ [theMenuItem setTitle:[self nameForHistoryEntryDetails:theHistoryEntry]];
+ [theMenuItem setTarget:self];
+ [theMenuItem setAction:@selector(loadEntryFromMenuItem:)];
+
+ return [theMenuItem autorelease];
+}
+
+/**
+ * Returns a descriptive name for a history item dictionary
+ */
+- (NSString *) nameForHistoryEntryDetails:(NSDictionary *)theEntry
+{
+ if (![theEntry objectForKey:@"database"]) return NSLocalizedString(@"(no selection)", @"History item title with nothing selected");
+
+ NSMutableString *theName = [NSMutableString stringWithString:[theEntry objectForKey:@"database"]];
+ if (![theEntry objectForKey:@"table"] || ![[theEntry objectForKey:@"table"] length]) return theName;
+
+ [theName appendFormat:@"/%@", [theEntry objectForKey:@"table"]];
+ if (![theEntry objectForKey:@"contentFilter"]) return theName;
+
+ NSDictionary *filterSettings = [theEntry objectForKey:@"contentFilter"];
+ if (![filterSettings objectForKey:@"filterField"]) return theName;
+
+ if ([[filterSettings objectForKey:@"filterComparison"] isEqualToString:@"IS NULL"]
+ || [[filterSettings objectForKey:@"filterComparison"] isEqualToString:@"IS NOT NULL"])
+ {
+ [theName appendFormat:@" (%@ %@ %@)", NSLocalizedString(@"Filtered by", @"History item filtered by label"),
+ [filterSettings objectForKey:@"filterField"], [filterSettings objectForKey:@"filterComparison"]];
+ } else if ([filterSettings objectForKey:@"filterValue"] && [[filterSettings objectForKey:@"filterValue"] length]) {
+ [theName appendFormat:@" (%@ %@ %@ %@)", NSLocalizedString(@"Filtered by", @"History item filtered by label"),
+ [filterSettings objectForKey:@"filterField"], [filterSettings objectForKey:@"filterComparison"],
+ [filterSettings objectForKey:@"filterValue"]];
+ }
+
+ return theName;
+}
+
@end