27 lines
477 B
Objective-C
27 lines
477 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)showContent;
|
|
|
|
|
|
//Only sets the flag, doesn't do anything.
|
|
- (void)setContentHidden:(BOOL)hidden;
|
|
- (NSString *)contentHiddenDefaultsKey;
|
|
- (NSString *)contentHeightDefaultsKey;
|
|
|
|
@end
|