diff options
Diffstat (limited to 'Frameworks/PSMTabBar/PSMTabDragWindow.h')
-rw-r--r-- | Frameworks/PSMTabBar/PSMTabDragWindow.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Frameworks/PSMTabBar/PSMTabDragWindow.h b/Frameworks/PSMTabBar/PSMTabDragWindow.h new file mode 100644 index 00000000..fd26e749 --- /dev/null +++ b/Frameworks/PSMTabBar/PSMTabDragWindow.h @@ -0,0 +1,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 |