2001-11-20 16:52:51 +00:00
|
|
|
/* inspectors - Various inspectors for control elements
|
|
|
|
|
|
|
|
Copyright (C) 2001 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
Author: Laurent Julliard <laurent@julliard-online.org>
|
2004-07-09 20:17:44 +00:00
|
|
|
Author: Gregory John Casamento <greg_casamento@yahoo.com>
|
|
|
|
Date: Aug 2001. 2003, 2004
|
2001-11-20 16:52:51 +00:00
|
|
|
|
|
|
|
This file is part of GNUstep.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2005-05-26 03:37:38 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA.
|
2001-11-20 16:52:51 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <Foundation/Foundation.h>
|
2005-08-06 17:59:08 +00:00
|
|
|
#include <AppKit/AppKit.h>
|
|
|
|
#include <InterfaceBuilder/InterfaceBuilder.h>
|
2003-05-29 05:40:28 +00:00
|
|
|
|
2005-08-06 17:59:08 +00:00
|
|
|
/**
|
|
|
|
* IBObjectAdditions categories.
|
2001-11-20 16:52:51 +00:00
|
|
|
*/
|
|
|
|
|
2005-08-06 17:59:08 +00:00
|
|
|
@implementation NSBrowser (IBObjectAdditions)
|
2001-11-20 16:52:51 +00:00
|
|
|
- (NSString*) inspectorClassName
|
|
|
|
{
|
|
|
|
return @"GormBrowserAttributesInspector";
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
2005-08-06 17:59:08 +00:00
|
|
|
@implementation NSTabView (IBObjectAdditions)
|
2001-11-20 16:52:51 +00:00
|
|
|
|
2005-08-06 17:59:08 +00:00
|
|
|
- (NSString*) inspectorClassName
|
2001-11-20 16:52:51 +00:00
|
|
|
{
|
2005-08-06 17:59:08 +00:00
|
|
|
return @"GormTabViewAttributesInspector";
|
2001-11-20 16:52:51 +00:00
|
|
|
}
|
|
|
|
|
2005-08-06 17:59:08 +00:00
|
|
|
- (NSString*) editorClassName
|
2002-03-26 17:15:26 +00:00
|
|
|
{
|
2005-08-06 17:59:08 +00:00
|
|
|
return @"GormTabViewEditor";
|
2002-03-26 17:15:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2003-05-29 05:40:28 +00:00
|
|
|
@implementation NSTableColumn (IBObjectAdditions)
|
2002-03-29 16:30:01 +00:00
|
|
|
- (NSString *) inspectorClassName
|
|
|
|
{
|
|
|
|
return @"GormTableColumnAttributesInspector";
|
|
|
|
}
|
|
|
|
@end
|
|
|
|
|
2003-05-29 05:40:28 +00:00
|
|
|
@implementation NSTableView (IBObjectAdditions)
|
2001-11-20 16:52:51 +00:00
|
|
|
- (NSString*) inspectorClassName
|
|
|
|
{
|
|
|
|
return @"GormTableViewAttributesInspector";
|
|
|
|
}
|
|
|
|
|
2002-03-26 17:15:26 +00:00
|
|
|
- (NSString*) sizeInspectorClassName
|
|
|
|
{
|
|
|
|
return @"GormTableViewSizeInspector";
|
|
|
|
}
|
2005-08-12 02:52:49 +00:00
|
|
|
|
|
|
|
- (NSString*) editorClassName
|
|
|
|
{
|
|
|
|
return @"GormTableViewEditor";
|
|
|
|
}
|
2001-11-20 16:52:51 +00:00
|
|
|
@end
|