aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPIdMenu.h
diff options
context:
space:
mode:
authorMax <post@wickenrode.com>2015-11-03 22:42:43 +0100
committerMax <post@wickenrode.com>2015-11-03 22:42:43 +0100
commitedd4ae31b6ad14bcf3bc4deca6e68af79ad24b2a (patch)
tree445f63fb22fa6670e917f3da59453d804ab6e512 /Source/SPIdMenu.h
parentddaa4619f1ef9aedf4fbfd156df8b7b71c3e286b (diff)
downloadsequelpro-edd4ae31b6ad14bcf3bc4deca6e68af79ad24b2a.tar.gz
sequelpro-edd4ae31b6ad14bcf3bc4deca6e68af79ad24b2a.tar.bz2
sequelpro-edd4ae31b6ad14bcf3bc4deca6e68af79ad24b2a.zip
Changed my mind about something, to make it safer for localization
Diffstat (limited to 'Source/SPIdMenu.h')
-rw-r--r--Source/SPIdMenu.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/Source/SPIdMenu.h b/Source/SPIdMenu.h
new file mode 100644
index 00000000..dbda8952
--- /dev/null
+++ b/Source/SPIdMenu.h
@@ -0,0 +1,47 @@
+//
+// SPIdMenu.h
+// sequel-pro
+//
+// Created by Max Lohrmann on 02.11.15.
+// Copyright (c) 2015 Max Lohrmann. All rights reserved.
+//
+// Permission is hereby granted, free of charge, to any person
+// obtaining a copy of this software and associated documentation
+// files (the "Software"), to deal in the Software without
+// restriction, including without limitation the rights to use,
+// copy, modify, merge, publish, distribute, sublicense, and/or sell
+// copies of the Software, and to permit persons to whom the
+// Software is furnished to do so, subject to the following
+// conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+// OTHER DEALINGS IN THE SOFTWARE.
+//
+// More info at <https://github.com/sequelpro/sequelpro>
+
+#import <Cocoa/Cocoa.h>
+
+/**
+ * This class aims to solve the problem, that the only strong connection between
+ * a menu in IB and code can be made via an outlet. Since comparing breaks once
+ * the menu is copied (which NSTableView does for its cells) and the menu title
+ * is localizable, ie. not constant either, we need to add another field.
+ *
+ * Note that menuId can be set via IB's "Custom Runtime Attribute" section.
+ */
+@interface SPIdMenu : NSMenu {
+ NSString *_menuId;
+}
+
+@property (copy) NSString *menuId;
+
+@end