summaryrefslogtreecommitdiff
path: root/frontends/cocoa/PSMTabBarControl/PSMUnifiedTabStyle.h
blob: 20202536ad7630cdfdcba7973c709ccd26b16082 (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
29
//
//  PSMUnifiedTabStyle.h
//  --------------------
//
//  Created by Keith Blount on 30/04/2006.
//  Copyright 2006 __MyCompanyName__. All rights reserved.
//

#import <Cocoa/Cocoa.h>
#import "PSMTabStyle.h"

@interface PSMUnifiedTabStyle : NSObject <PSMTabStyle> {
	NSImage									*unifiedCloseButton;
	NSImage									*unifiedCloseButtonDown;
	NSImage									*unifiedCloseButtonOver;
	NSImage									*unifiedCloseDirtyButton;
	NSImage									*unifiedCloseDirtyButtonDown;
	NSImage									*unifiedCloseDirtyButtonOver;
	NSImage									*_addTabButtonImage;
	NSImage									*_addTabButtonPressedImage;
	NSImage									*_addTabButtonRolloverImage;

	NSDictionary								*_objectCountStringAttributes;

	CGFloat									leftMargin;
	PSMTabBarControl							*tabBar;
}
- (void)setLeftMarginForTabBarControl:(CGFloat)margin;
@end