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
40 lines
784 B
Objective-C
40 lines
784 B
Objective-C
#include <Foundation/Foundation.h>
|
|
|
|
#include <EOInterface/EODisplayGroup.h>
|
|
@interface EODisplayGroup (PaletteStuff)
|
|
- (NSString *)connectInspectorClassName;
|
|
@end
|
|
|
|
@implementation EODisplayGroup (PaletteStuff)
|
|
- (NSString *)connectInspectorClassName
|
|
{
|
|
return @"GDL2ConnectionInspector";
|
|
}
|
|
@end
|
|
|
|
#include <AppKit/NSView.h>
|
|
@interface NSView (PaletteStuff)
|
|
- (NSString *)connectInspectorClassName;
|
|
@end
|
|
|
|
@implementation NSView (PaletteStuff)
|
|
- (NSString *)connectInspectorClassName
|
|
{
|
|
return @"GDL2ConnectionInspector";
|
|
}
|
|
@end
|
|
|
|
#include <AppKit/NSTableColumn.h>
|
|
|
|
@interface NSTableColumn (PaletteStuff)
|
|
- (NSString *)connectInspectorClassName;
|
|
@end
|
|
|
|
@implementation NSTableColumn (PaletteStuff)
|
|
- (NSString *)connectInspectorClassName
|
|
{
|
|
return @"GDL2ConnectionInspector";
|
|
}
|
|
|
|
@end
|
|
|