Cog/Application/InvertedToolbarWindow.h
2008-06-22 19:02:53 +00:00

23 lines
363 B
Objective-C

//
// 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;
NSSize contentSize;
}
- (void)hideContent;
- (void)hideContentwithAnimation:(BOOL)animate;
- (void)showContent;
@end