2007-10-31 22:53:52 -03:00
|
|
|
//
|
|
|
|
// InvertedToolbarWindow.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 10/31/07.
|
|
|
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
|
|
|
|
@interface InvertedToolbarWindow : NSWindow {
|
|
|
|
BOOL contentHidden;
|
2008-06-22 15:02:53 -04:00
|
|
|
NSSize contentSize;
|
2007-10-31 22:53:52 -03:00
|
|
|
}
|
|
|
|
|
2008-06-22 15:02:53 -04:00
|
|
|
- (void)hideContent;
|
|
|
|
- (void)hideContentwithAnimation:(BOOL)animate;
|
|
|
|
|
|
|
|
- (void)showContent;
|
|
|
|
|
|
|
|
|
2007-10-31 22:53:52 -03:00
|
|
|
@end
|