summaryrefslogtreecommitdiff
path: root/frontends/cocoa/PSMTabBarControl/PSMTabDragView.m
blob: 2c9781dbc4f4cb81561fbea7a660ab8e4e2eff88 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
//
//  PSMTabDragView.m
//  PSMTabBarControl
//
//  Created by Kent Sutherland on 6/17/07.
//  Copyright 2007 Kent Sutherland. All rights reserved.
//

#import "PSMTabDragView.h"


@implementation PSMTabDragView

- (id)initWithFrame:(NSRect)frame {
	if((self = [super initWithFrame:frame])) {
		_alpha = 1.0;
	}
	return self;
}

- (void)dealloc {
	[_image release];
	[_alternateImage release];
	[super dealloc];
}

- (void)drawRect:(NSRect)rect {
	//1.0 fade means show the primary image
	//0.0 fade means show the secondary image
	CGFloat primaryAlpha = _alpha + 0.001f, alternateAlpha = 1.001f - _alpha;
	NSRect srcRect;
	srcRect.origin = NSZeroPoint;
	srcRect.size = [_image size];

	[_image drawInRect:[self bounds] fromRect:srcRect operation:NSCompositeSourceOver fraction:primaryAlpha];
	srcRect.size = [_alternateImage size];
	[_alternateImage drawInRect:[self bounds] fromRect:srcRect operation:NSCompositeSourceOver fraction:alternateAlpha];
}

- (void)setFadeValue:(CGFloat)value {
	_alpha = value;
}

- (NSImage *)image {
	return _image;
}

- (void)setImage:(NSImage *)image {
	[_image release];
	_image = [image retain];
}

- (NSImage *)alternateImage {
	return _alternateImage;
}

- (void)setAlternateImage:(NSImage *)image {
	[_alternateImage release];
	_alternateImage = [image retain];
}

@end