summaryrefslogtreecommitdiff
path: root/tikzit/Frameworks/SFBInspectors.framework/Versions
diff options
context:
space:
mode:
Diffstat (limited to 'tikzit/Frameworks/SFBInspectors.framework/Versions')
-rw-r--r--tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPane.h31
-rw-r--r--tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPaneBody.h16
-rw-r--r--tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPaneHeader.h24
-rw-r--r--tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorView.h17
-rw-r--r--tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelector.h22
-rw-r--r--tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelectorBar.h29
-rw-r--r--tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelectorBarItem.h28
-rw-r--r--tikzit/Frameworks/SFBInspectors.framework/Versions/A/Resources/English.lproj/InfoPlist.stringsbin92 -> 0 bytes
-rw-r--r--tikzit/Frameworks/SFBInspectors.framework/Versions/A/Resources/Info.plist24
-rwxr-xr-xtikzit/Frameworks/SFBInspectors.framework/Versions/A/SFBInspectorsbin280648 -> 0 bytes
l---------tikzit/Frameworks/SFBInspectors.framework/Versions/Current1
11 files changed, 0 insertions, 192 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
diff --git a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPaneBody.h b/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPaneBody.h
deleted file mode 100644
index 250f9e6..0000000
--- a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPaneBody.h
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
- * Copyright (C) 2009 Stephen F. Booth <me@sbooth.org>
- * All Rights Reserved
- */
-
-#import <Cocoa/Cocoa.h>
-
-@interface SFBInspectorPaneBody : NSView
-{
-@private
- CGFloat _normalHeight;
-}
-
-@property (readonly, assign) CGFloat normalHeight;
-
-@end
diff --git a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPaneHeader.h b/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPaneHeader.h
deleted file mode 100644
index 3512d75..0000000
--- a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPaneHeader.h
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * 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
diff --git a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorView.h b/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorView.h
deleted file mode 100644
index e7f4b53..0000000
--- a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorView.h
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * Copyright (C) 2009 Stephen F. Booth <me@sbooth.org>
- * All Rights Reserved
- */
-
-#import <Cocoa/Cocoa.h>
-
-@interface SFBInspectorView : NSView
-{
-@private
- NSSize _initialWindowSize;
-}
-
-- (void) addInspectorPaneController:(NSViewController *)paneController;
-- (void) addInspectorPane:(NSView *)paneBody title:(NSString *)title;
-
-@end
diff --git a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelector.h b/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelector.h
deleted file mode 100644
index 8645914..0000000
--- a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelector.h
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * 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
diff --git a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelectorBar.h b/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelectorBar.h
deleted file mode 100644
index d0c8c30..0000000
--- a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelectorBar.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * Copyright (C) 2009 Stephen F. Booth <me@sbooth.org>
- * All Rights Reserved
- */
-
-#import <Cocoa/Cocoa.h>
-
-@class SFBViewSelectorBarItem;
-
-@interface SFBViewSelectorBar : NSView
-{
-@private
- NSInteger _selectedIndex;
- NSInteger _pressedIndex;
- NSMutableArray *_items;
-}
-
-@property (assign) NSInteger selectedIndex;
-@property (readonly) SFBViewSelectorBarItem * selectedItem;
-
-- (void) addItem:(SFBViewSelectorBarItem *)item;
-
-- (BOOL) selectItem:(SFBViewSelectorBarItem *)item;
-- (BOOL) selectItemWithIdentifer:(NSString *)itemIdentifier;
-
-- (SFBViewSelectorBarItem *) itemAtIndex:(NSInteger)itemIndex;
-- (SFBViewSelectorBarItem *) itemWithIdentifier:(NSString *)itemIdentifier;
-
-@end
diff --git a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelectorBarItem.h b/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelectorBarItem.h
deleted file mode 100644
index c18cfb3..0000000
--- a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelectorBarItem.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Copyright (C) 2009 Stephen F. Booth <me@sbooth.org>
- * All Rights Reserved
- */
-
-#import <Cocoa/Cocoa.h>
-
-@interface SFBViewSelectorBarItem : NSObject
-{
-@private
- NSString *_identifier;
- NSString *_label;
- NSString *_tooltip;
- NSImage *_image;
- NSView *_view;
-}
-
-@property (copy) NSString * identifier;
-@property (copy) NSString * label;
-@property (copy) NSString * tooltip;
-@property (copy) NSImage * image;
-@property (retain) NSView * view;
-
-+ (id) itemWithIdentifier:(NSString *)identifier label:(NSString *)label tooltip:(NSString *)tooltip image:(NSImage *)image view:(NSView *)view;
-
-- (id) initWithIdentifier:(NSString *)identifier label:(NSString *)label tooltip:(NSString *)tooltip image:(NSImage *)image view:(NSView *)view;
-
-@end
diff --git a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Resources/English.lproj/InfoPlist.strings b/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Resources/English.lproj/InfoPlist.strings
deleted file mode 100644
index dea12de..0000000
--- a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Resources/English.lproj/InfoPlist.strings
+++ /dev/null
Binary files differ
diff --git a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Resources/Info.plist b/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Resources/Info.plist
deleted file mode 100644
index d3e80f3..0000000
--- a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Resources/Info.plist
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
-<plist version="1.0">
-<dict>
- <key>CFBundleDevelopmentRegion</key>
- <string>English</string>
- <key>CFBundleExecutable</key>
- <string>SFBInspectors</string>
- <key>CFBundleIdentifier</key>
- <string>org.sbooth.Inspectors</string>
- <key>CFBundleInfoDictionaryVersion</key>
- <string>6.0</string>
- <key>CFBundleName</key>
- <string>SFBInspectors</string>
- <key>CFBundlePackageType</key>
- <string>FMWK</string>
- <key>CFBundleShortVersionString</key>
- <string>1.0</string>
- <key>CFBundleSignature</key>
- <string>????</string>
- <key>CFBundleVersion</key>
- <string>1</string>
-</dict>
-</plist>
diff --git a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/SFBInspectors b/tikzit/Frameworks/SFBInspectors.framework/Versions/A/SFBInspectors
deleted file mode 100755
index 6174fbb..0000000
--- a/tikzit/Frameworks/SFBInspectors.framework/Versions/A/SFBInspectors
+++ /dev/null
Binary files differ
diff --git a/tikzit/Frameworks/SFBInspectors.framework/Versions/Current b/tikzit/Frameworks/SFBInspectors.framework/Versions/Current
deleted file mode 120000
index 8c7e5a6..0000000
--- a/tikzit/Frameworks/SFBInspectors.framework/Versions/Current
+++ /dev/null
@@ -1 +0,0 @@
-A \ No newline at end of file