netsurf/cocoa/PSMTabBarControl/PSMUnifiedTabStyle.h
Sven Weidauer f85335a7f9 Implementing tabs and fixing scrolling.
svn path=/trunk/netsurf/; revision=11396
2011-01-19 20:19:43 +00:00

31 lines
779 B
Objective-C

//
// 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