summaryrefslogtreecommitdiff
path: root/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelector.h
diff options
context:
space:
mode:
authorrandomguy3 <randomguy3@7c02a99a-9b00-45e3-bf44-6f3dd7fddb64>2012-01-09 11:00:50 +0000
committerrandomguy3 <randomguy3@7c02a99a-9b00-45e3-bf44-6f3dd7fddb64>2012-01-09 11:00:50 +0000
commita8a8dfb90d6a51ae369c042c95162f45754c7c4b (patch)
tree0e7a5f82febebe7129ebfb015f05b114064c39fd /tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelector.h
parente1cf0babff63e670e0d550b4072c22649a117fa7 (diff)
Move tikzit into "trunk" directory
git-svn-id: https://tikzit.svn.sourceforge.net/svnroot/tikzit/trunk@365 7c02a99a-9b00-45e3-bf44-6f3dd7fddb64
Diffstat (limited to 'tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelector.h')
-rw-r--r--tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelector.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelector.h b/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelector.h
new file mode 100644
index 0000000..8645914
--- /dev/null
+++ b/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelector.h
@@ -0,0 +1,22 @@
+/*
+ * Copyright (C) 2009 Stephen F. Booth <me@sbooth.org>
+ * All Rights Reserved
+ */
+
+#import <Cocoa/Cocoa.h>
+
+#define VIEW_SELECTOR_BAR_HEIGHT 25
+
+@class SFBViewSelectorBar;
+
+@interface SFBViewSelector : NSView
+{
+@private
+ NSSize _initialWindowSize;
+ SFBViewSelectorBar *_selectorBar;
+ NSView *_bodyView;
+}
+
+- (SFBViewSelectorBar *) selectorBar;
+
+@end