aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/BWToolkitFramework.framework/BWSelectableToolbarHelper.h
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/BWToolkitFramework.framework/BWSelectableToolbarHelper.h')
-rw-r--r--Frameworks/BWToolkitFramework.framework/BWSelectableToolbarHelper.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/Frameworks/BWToolkitFramework.framework/BWSelectableToolbarHelper.h b/Frameworks/BWToolkitFramework.framework/BWSelectableToolbarHelper.h
new file mode 100644
index 00000000..ed3029d2
--- /dev/null
+++ b/Frameworks/BWToolkitFramework.framework/BWSelectableToolbarHelper.h
@@ -0,0 +1,26 @@
+//
+// BWSelectableToolbarHelper.h
+// BWToolkit
+//
+// Created by Brandon Walkin (www.brandonwalkin.com)
+// All code is provided under the New BSD license.
+//
+
+#import <Cocoa/Cocoa.h>
+
+@interface BWSelectableToolbarHelper : NSObject
+{
+ NSMutableDictionary *contentViewsByIdentifier, *windowSizesByIdentifier;
+ NSString *selectedIdentifier, *oldWindowTitle;
+ NSSize initialIBWindowSize;
+ BOOL isPreferencesToolbar;
+}
+
+@property (copy) NSMutableDictionary *contentViewsByIdentifier;
+@property (copy) NSMutableDictionary *windowSizesByIdentifier;
+@property (copy) NSString *selectedIdentifier;
+@property (copy) NSString *oldWindowTitle;
+@property (assign) NSSize initialIBWindowSize;
+@property (assign) BOOL isPreferencesToolbar;
+
+@end