summaryrefslogtreecommitdiff
path: root/tikzit/Frameworks/SFBInspectors.framework/Versions/A/Headers/SFBInspectorPaneHeader.h
blob: 3512d75b682cac5f819237794b642ce9a70d2c35 (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
/*
 *  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