summaryrefslogtreecommitdiff
path: root/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPane.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/SFBInspectorPane.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/SFBInspectorPane.h')
-rw-r--r--tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPane.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPane.h b/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPane.h
new file mode 100644
index 0000000..b50c12d
--- /dev/null
+++ b/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPane.h
@@ -0,0 +1,31 @@
+/*
+ * Copyright (C) 2009 Stephen F. Booth <me@sbooth.org>
+ * All Rights Reserved
+ */
+
+#import <Cocoa/Cocoa.h>
+
+#define INSPECTOR_PANE_HEADER_HEIGHT 17
+
+@class SFBInspectorPaneHeader, SFBInspectorPaneBody;
+
+@interface SFBInspectorPane : NSView
+{
+@private
+ BOOL _collapsed;
+ SFBInspectorPaneHeader *_headerView;
+ SFBInspectorPaneBody *_bodyView;
+}
+
+@property (readonly, assign, getter=isCollapsed) BOOL collapsed;
+
+- (NSString *) title;
+- (void) setTitle:(NSString *)title;
+
+- (IBAction) toggleCollapsed:(id)sender;
+- (void) setCollapsed:(BOOL)collapsed animate:(BOOL)animate;
+
+- (SFBInspectorPaneHeader *) headerView;
+- (SFBInspectorPaneBody *) bodyView;
+
+@end