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

#import <Cocoa/Cocoa.h>

@class PSMTabDragView;

@interface PSMTabDragWindow : NSWindow {
    PSMTabDragView *_dragView;
}
+ (PSMTabDragWindow *)dragWindowWithImage:(NSImage *)image styleMask:(NSUInteger)styleMask;

- (id)initWithImage:(NSImage *)image styleMask:(NSUInteger)styleMask;
- (PSMTabDragView *)dragView;
@end