mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 20:11:20 +00:00
23 lines
333 B
C
23 lines
333 B
C
|
#ifndef INCLUDED_GormPrefController_h
|
||
|
#define INCLUDED_GormPrefController_h
|
||
|
|
||
|
#include <Foundation/NSObject.h>
|
||
|
|
||
|
#include <AppKit/NSWindowController.h>
|
||
|
|
||
|
@interface GormPrefController : NSWindowController
|
||
|
{
|
||
|
id window;
|
||
|
id popup;
|
||
|
id prefBox;
|
||
|
|
||
|
id _generalView;
|
||
|
id _headersView;
|
||
|
}
|
||
|
|
||
|
- (void) popupAction: (id)sender;
|
||
|
|
||
|
@end
|
||
|
|
||
|
#endif
|