summaryrefslogtreecommitdiff
path: root/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBViewSelectorBarItem.h
blob: c18cfb3091ff8330da58fc7b2c930e9c4cfa9d50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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