2006-09-18 23:39:37 +00:00
|
|
|
#include <InterfaceBuilder/IBInspector.h>
|
|
|
|
#include <AppKit/NSNibDeclarations.h>
|
2006-09-19 19:21:14 +00:00
|
|
|
|
|
|
|
@class NSButton;
|
|
|
|
@class NSTableView;
|
|
|
|
@class NSMutableArray;
|
2006-09-18 23:39:37 +00:00
|
|
|
|
|
|
|
@interface GDL2DisplayGroupInspector : IBInspector
|
|
|
|
{
|
|
|
|
IBOutlet NSButton *_fetchesOnLoad;
|
|
|
|
IBOutlet NSButton *_refresh;
|
|
|
|
IBOutlet NSButton *_validate;
|
2006-09-19 19:21:14 +00:00
|
|
|
|
|
|
|
IBOutlet NSTableView *_localKeysTable;
|
|
|
|
IBOutlet NSButton *_addKey;
|
|
|
|
IBOutlet NSButton *_removeKey;
|
|
|
|
|
|
|
|
NSMutableArray *_localKeys;
|
2006-09-18 23:39:37 +00:00
|
|
|
}
|
|
|
|
-(IBAction) setValidatesImmediately:(id)sender;
|
|
|
|
-(IBAction) setRefreshesAll:(id)sender;
|
|
|
|
-(IBAction) setFetchesOnLoad:(id)sender;
|
|
|
|
@end
|
|
|
|
|