summaryrefslogtreecommitdiff
path: root/frontends/cocoa/PSMTabBarControl/PSMTabDragView.h
blob: f8018d290edb0238e2d52aa993d68600d51ebec2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
//  PSMTabDragView.h
//  PSMTabBarControl
//
//  Created by Kent Sutherland on 6/17/07.
//  Copyright 2007 Kent Sutherland. All rights reserved.
//

#import <Cocoa/Cocoa.h>

@interface PSMTabDragView : NSView {
	NSImage					*_image;
	NSImage					*_alternateImage;
	CGFloat					_alpha;
}
- (void)setFadeValue:(CGFloat)value;
- (NSImage *)image;
- (void)setImage:(NSImage *)image;
- (NSImage *)alternateImage;
- (void)setAlternateImage:(NSImage *)image;
@end