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

21 lines
439 B
Objective-C

//
// 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, *_alternateImage;
CGFloat _alpha;
}
- (void)setFadeValue:(CGFloat)value;
- (NSImage *)image;
- (void)setImage:(NSImage *)image;
- (NSImage *)alternateImage;
- (void)setAlternateImage:(NSImage *)image;
@end