diff options
author | avenjamin <avenjamin@gmail.com> | 2010-03-13 20:51:07 +0000 |
---|---|---|
committer | avenjamin <avenjamin@gmail.com> | 2010-03-13 20:51:07 +0000 |
commit | aff548a80a7d8eacdb836eea70b3e9af14658fdb (patch) | |
tree | 44d60ff91863ebf33fd18f1b1938394847cec088 | |
parent | da87ee2564f73d7f578ffb08e5d03073ce49d694 (diff) | |
download | sequelpro-aff548a80a7d8eacdb836eea70b3e9af14658fdb.tar.gz sequelpro-aff548a80a7d8eacdb836eea70b3e9af14658fdb.tar.bz2 sequelpro-aff548a80a7d8eacdb836eea70b3e9af14658fdb.zip |
- Add toolbar item for Triggers interface
- Add table triggers toolbar icon
-rw-r--r-- | Resources/Images/toolbar-switch-to-table-triggers.png | bin | 0 -> 1101 bytes | |||
-rw-r--r-- | Source/TableDocument.m | 13 | ||||
-rw-r--r-- | sequel-pro.xcodeproj/project.pbxproj | 4 |
3 files changed, 17 insertions, 0 deletions
diff --git a/Resources/Images/toolbar-switch-to-table-triggers.png b/Resources/Images/toolbar-switch-to-table-triggers.png Binary files differnew file mode 100644 index 00000000..bc9d3aeb --- /dev/null +++ b/Resources/Images/toolbar-switch-to-table-triggers.png diff --git a/Source/TableDocument.m b/Source/TableDocument.m index 24636bf3..792e54bc 100644 --- a/Source/TableDocument.m +++ b/Source/TableDocument.m @@ -3390,6 +3390,16 @@ [toolbarItem setTarget:self]; [toolbarItem setAction:@selector(viewRelations:)]; + } else if ([itemIdentifier isEqualToString:SPMainToolbarTableTriggers]) { + [toolbarItem setLabel:NSLocalizedString(@"Triggers", @"toolbar item label for switching to the Table Triggers tab")]; + [toolbarItem setPaletteLabel:NSLocalizedString(@"Table Triggers", @"toolbar item label for switching to the Table Triggers tab")]; + //set up tooltip and image + [toolbarItem setToolTip:NSLocalizedString(@"Switch to the Table Triggers tab", @"tooltip for toolbar item for switching to the Table Triggers tab")]; + [toolbarItem setImage:[NSImage imageNamed:@"toolbar-switch-to-table-triggers"]]; + //set up the target action + [toolbarItem setTarget:self]; + [toolbarItem setAction:@selector(viewTriggers:)]; + } else if ([itemIdentifier isEqualToString:SPMainToolbarUserManager]) { [toolbarItem setLabel:NSLocalizedString(@"Users", @"toolbar item label for switching to the User Manager tab")]; [toolbarItem setPaletteLabel:NSLocalizedString(@"Users", @"toolbar item label for switching to the User Manager tab")]; @@ -3399,6 +3409,7 @@ //set up the target action [toolbarItem setTarget:self]; [toolbarItem setAction:@selector(showUserManager:)]; + } else { //itemIdentifier refered to a toolbar item that is not provided or supported by us or cocoa toolbarItem = nil; @@ -3422,6 +3433,7 @@ SPMainToolbarCustomQuery, SPMainToolbarTableInfo, SPMainToolbarTableRelations, + SPMainToolbarTableTriggers, SPMainToolbarUserManager, NSToolbarCustomizeToolbarItemIdentifier, NSToolbarFlexibleSpaceItemIdentifier, @@ -3460,6 +3472,7 @@ SPMainToolbarCustomQuery, SPMainToolbarTableInfo, SPMainToolbarTableRelations, + SPMainToolbarTableTriggers, nil]; } diff --git a/sequel-pro.xcodeproj/project.pbxproj b/sequel-pro.xcodeproj/project.pbxproj index 7954e81a..bfad007d 100644 --- a/sequel-pro.xcodeproj/project.pbxproj +++ b/sequel-pro.xcodeproj/project.pbxproj @@ -175,6 +175,7 @@ 58FEF57E0F3B4E9700518E8E /* SPTableData.m in Sources */ = {isa = PBXBuildFile; fileRef = 58FEF57D0F3B4E9700518E8E /* SPTableData.m */; }; 8D15AC340486D014006FF6A4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A7FEA54F5311CA2CBB /* Cocoa.framework */; }; B508B5DA0F9837A200E03A69 /* button_edit.tiff in Resources */ = {isa = PBXBuildFile; fileRef = B508B5D90F9837A200E03A69 /* button_edit.tiff */; }; + B51D6B9E114C310C0074704E /* toolbar-switch-to-table-triggers.png in Resources */ = {isa = PBXBuildFile; fileRef = B51D6B9D114C310C0074704E /* toolbar-switch-to-table-triggers.png */; }; B52460D70F8EF92300171639 /* SPArrayAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = B52460D40F8EF92300171639 /* SPArrayAdditions.m */; }; B52460D80F8EF92300171639 /* SPTextViewAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = B52460D60F8EF92300171639 /* SPTextViewAdditions.m */; }; B52460DB0F8EF93B00171639 /* Console.xib in Resources */ = {isa = PBXBuildFile; fileRef = B52460D90F8EF93B00171639 /* Console.xib */; }; @@ -576,6 +577,7 @@ 58FEF57D0F3B4E9700518E8E /* SPTableData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SPTableData.m; sourceTree = "<group>"; }; 8D15AC370486D014006FF6A4 /* Sequel Pro.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Sequel Pro.app"; sourceTree = BUILT_PRODUCTS_DIR; }; B508B5D90F9837A200E03A69 /* button_edit.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = button_edit.tiff; sourceTree = "<group>"; }; + B51D6B9D114C310C0074704E /* toolbar-switch-to-table-triggers.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "toolbar-switch-to-table-triggers.png"; sourceTree = "<group>"; }; B52460D30F8EF92300171639 /* SPArrayAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SPArrayAdditions.h; sourceTree = "<group>"; }; B52460D40F8EF92300171639 /* SPArrayAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SPArrayAdditions.m; sourceTree = "<group>"; }; B52460D50F8EF92300171639 /* SPTextViewAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SPTextViewAdditions.h; sourceTree = "<group>"; }; @@ -1265,6 +1267,7 @@ 17E641BE0EF02036001BC333 /* toolbar-switch-to-structure.png */, 17E641BF0EF02036001BC333 /* toolbar-switch-to-table-info.png */, B54F25E50FD909C400E2CF36 /* toolbar-switch-to-table-relations.png */, + B51D6B9D114C310C0074704E /* toolbar-switch-to-table-triggers.png */, B5E92F350F75B32100012500 /* toolbar-export-csv.tiff */, B5E92F360F75B32100012500 /* toolbar-export-html.tiff */, B5E92F370F75B32100012500 /* toolbar-export-pdf.tiff */, @@ -1680,6 +1683,7 @@ BC30C011111C98BD002701C9 /* DataMigrationDialog.xib in Resources */, BC962D661144EACA006170BD /* CompletionTokens.plist in Resources */, 17E0937E114AE154007FC1B4 /* sequel-pro-table-info-print-template.html in Resources */, + B51D6B9E114C310C0074704E /* toolbar-switch-to-table-triggers.png in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; |