summaryrefslogtreecommitdiff
path: root/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelectorBarItem.h
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelectorBarItem.h')
-rw-r--r--Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelectorBarItem.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelectorBarItem.h b/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelectorBarItem.h
new file mode 100644
index 0000000..c18cfb3
--- /dev/null
+++ b/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelectorBarItem.h
@@ -0,0 +1,28 @@
+/*
+ * 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