root/Trunk/AIUtilities.framework/Versions/A/Headers/AIBorderlessWindow.h @ 2

Revision 2, 441 bytes (checked in by jon, 16 years ago)

Initial commit of skeletal project.

Line 
1//AIBorderlessWindow.h based largely off sample code in CustomWindow.m from Apple's "RoundTransparentWindow" sample project.
2
3#import <AIUtilities/AIDockingWindow.h>
4
5@interface AIBorderlessWindow : NSWindow
6{
7    //This point is used in dragging to mark the initial click location
8    NSPoint originalMouseLocation;
9
10        NSRect  windowFrame;
11
12        BOOL    docked;
13        BOOL    inLeftMouseEvent;
14        BOOL    moveable;
15}
16
17- (void)setMoveable:(BOOL)inMoveable;
18
19@end
Note: See TracBrowser for help on using the browser.