summaryrefslogtreecommitdiff
path: root/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPane.h
diff options
context:
space:
mode:
authorAleks Kissinger <aleks0@gmail.com>2017-01-11 16:33:00 +0100
committerAleks Kissinger <aleks0@gmail.com>2017-01-11 16:33:00 +0100
commit1802977b95d29198f27535b1b731d1180c083667 (patch)
tree032c4beb7411d88d76794a25f0e3b00a3437da3e /tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPane.h
parentff79a9c213dfd75ea00ed5112d3a6e314601e064 (diff)
made new subdir
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, 0 insertions, 31 deletions
diff --git a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPane.h b/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPane.h
deleted file mode 100644
index b50c12d..0000000
--- a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPane.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * 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