summaryrefslogtreecommitdiff
path: root/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPaneHeader.h
diff options
context:
space:
mode:
Diffstat (limited to 'tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPaneHeader.h')
-rw-r--r--tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPaneHeader.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPaneHeader.h b/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPaneHeader.h
new file mode 100644
index 0000000..3512d75
--- /dev/null
+++ b/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPaneHeader.h
@@ -0,0 +1,24 @@
+/*
+ * Copyright (C) 2009 Stephen F. Booth <me@sbooth.org>
+ * All Rights Reserved
+ */
+
+#import <Cocoa/Cocoa.h>
+
+@class SFBInspectorPane;
+
+@interface SFBInspectorPaneHeader : NSView
+{
+@private
+ BOOL _pressed;
+ NSButton *_disclosureButton;
+ NSTextField *_titleTextField;
+}
+
+- (NSString *) title;
+- (void) setTitle:(NSString *)title;
+
+- (NSButton *) disclosureButton;
+- (NSTextField *) titleTextField;
+
+@end