Cog/Application/InvertedToolbarWindow.h

27 lines
477 B
C
Raw Normal View History

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)showContent;
2008-06-22 15:44:09 -04:00
//Only sets the flag, doesn't do anything.
- (void)setContentHidden:(BOOL)hidden;
- (NSString *)contentHiddenDefaultsKey;
- (NSString *)contentHeightDefaultsKey;
2007-10-31 22:53:52 -03:00
@end