You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
475 B
21 lines
475 B
//
|
|
// 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
|