mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-23 03:10:55 +00:00
* GDL2Palette/ConnectInspector.m (_localKeysFromDisplayGroup): New method. (updateValues:): Add local keys. (_oaBrowserAction:): Enable ok button for LocalType. Handle relationships explicitly (browser:willDisplayCell:atRow:column:): Enable and set leaf for LocalType keys. * GDL2Palette/DisplayGroupInspector.[hm]: Add editor for local keys. * GDL2Palette/GDL2DisplayGroupInspector.gorm: Ditto. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@23563 72102866-910b-0410-8b05-ffd578937521
24 lines
571 B
Objective-C
24 lines
571 B
Objective-C
#include <InterfaceBuilder/IBInspector.h>
|
|
#include <AppKit/NSNibDeclarations.h>
|
|
|
|
@class NSButton;
|
|
@class NSTableView;
|
|
@class NSMutableArray;
|
|
|
|
@interface GDL2DisplayGroupInspector : IBInspector
|
|
{
|
|
IBOutlet NSButton *_fetchesOnLoad;
|
|
IBOutlet NSButton *_refresh;
|
|
IBOutlet NSButton *_validate;
|
|
|
|
IBOutlet NSTableView *_localKeysTable;
|
|
IBOutlet NSButton *_addKey;
|
|
IBOutlet NSButton *_removeKey;
|
|
|
|
NSMutableArray *_localKeys;
|
|
}
|
|
-(IBAction) setValidatesImmediately:(id)sender;
|
|
-(IBAction) setRefreshesAll:(id)sender;
|
|
-(IBAction) setFetchesOnLoad:(id)sender;
|
|
@end
|
|
|