You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
834 B
30 lines
834 B
//
|
|
// 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
|