aboutsummaryrefslogtreecommitdiffstats
path: root/Source/TableContent.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2009-07-02 01:08:20 +0000
committerstuconnolly <stuart02@gmail.com>2009-07-02 01:08:20 +0000
commit633b7969c21612273fb1b27a1ddefdcc628576e4 (patch)
tree6a0a5b298505a85230f938c9c239868f0fe48b00 /Source/TableContent.m
parent33032bcebcf4254755db1b6d9b7cb51e806f2fc3 (diff)
downloadsequelpro-633b7969c21612273fb1b27a1ddefdcc628576e4.tar.gz
sequelpro-633b7969c21612273fb1b27a1ddefdcc628576e4.tar.bz2
sequelpro-633b7969c21612273fb1b27a1ddefdcc628576e4.zip
Add contextual menus to the table content and table relations views. Completes the implementation of issue #139 as all views now have contextual menus.
Diffstat (limited to 'Source/TableContent.m')
-rw-r--r--Source/TableContent.m21
1 files changed, 21 insertions, 0 deletions
diff --git a/Source/TableContent.m b/Source/TableContent.m
index 16f86ff1..9a96a28a 100644
--- a/Source/TableContent.m
+++ b/Source/TableContent.m
@@ -2550,6 +2550,27 @@ objectValueForTableColumn:(NSTableColumn *)aTableColumn
[tableContentView setGridStyleMask:([[change objectForKey:NSKeyValueChangeNewKey] boolValue]) ? NSTableViewSolidVerticalGridLineMask : NSTableViewGridNone];
}
}
+
+/**
+ * Menu validation
+ */
+- (BOOL)validateMenuItem:(NSMenuItem *)menuItem
+{
+ // Remove row
+ if ([menuItem action] == @selector(removeRow:)) {
+ [menuItem setTitle:([tableContentView numberOfSelectedRows] > 1) ? @"Delete Rows" : @"Delete Row"];
+
+ return ([tableContentView numberOfSelectedRows] > 0);
+ }
+
+ // Duplicate row
+ if ([menuItem action] == @selector(copyRow:)) {
+ return ([tableContentView numberOfSelectedRows] == 1);
+ }
+
+ return [super validateMenuItem:menuItem];
+}
+
// Last but not least
- (void)dealloc
{