Merge commit 'svn-macvim'
[MacVim/jjgod.git] / PSMTabBarControl / source / PSMMetalTabStyle.h
blob0cbdb1ee85acff905ba2c4f8ab4241fbc167e462
1 //
2 // PSMMetalTabStyle.h
3 // PSMTabBarControl
4 //
5 // Created by John Pannell on 2/17/06.
6 // Copyright 2006 Positive Spin Media. All rights reserved.
7 //
9 #import <Cocoa/Cocoa.h>
10 #import "PSMTabStyle.h"
12 @interface PSMMetalTabStyle : NSObject <PSMTabStyle> {
13 NSImage *metalCloseButton;
14 NSImage *metalCloseButtonDown;
15 NSImage *metalCloseButtonOver;
16 NSImage *_addTabButtonImage;
17 NSImage *_addTabButtonPressedImage;
18 NSImage *_addTabButtonRolloverImage;
21 - (void)drawInteriorWithTabCell:(PSMTabBarCell *)cell inView:(NSView*)controlView;
23 - (void)encodeWithCoder:(NSCoder *)aCoder;
24 - (id)initWithCoder:(NSCoder *)aDecoder;
26 @end