mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-22 19:01:04 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@21224 72102866-910b-0410-8b05-ffd578937521
27 lines
489 B
Objective-C
27 lines
489 B
Objective-C
#include <InterfaceBuilder/IBInspector.h>
|
|
@class NSBrowser;
|
|
@class NSPopUpButton;
|
|
|
|
@interface GDL2ConnectionInspector : IBInspector
|
|
{
|
|
NSBrowser *oaBrowser;
|
|
NSBrowser *connectionsBrowser;
|
|
NSPopUpButton *popUp;
|
|
|
|
NSArray *_keys;
|
|
NSArray *_signatures;
|
|
NSArray *_values;
|
|
NSMutableArray *_connectors;
|
|
|
|
NSNibConnector *_currentConnector;
|
|
|
|
}
|
|
|
|
- (void) updateKeys;
|
|
- (void) updateValues;
|
|
- (void) updateButtons;
|
|
- (void) selectedConnector;
|
|
- (void) selectedOutletOrAction;
|
|
@end
|
|
|
|
|