New header for GormConnectionInspector.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@21623 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2005-08-07 14:17:05 +00:00
parent a926755a79
commit 402f1a6f95
4 changed files with 59 additions and 13 deletions

View file

@ -1,3 +1,9 @@
2005-08-07 10:26 Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GNUmakefile: Add new header file.
* GormCore/GormConnectionInspector.m: Include new header.
* GormCore/GormConnectionInspector.h: New file, split from .m
2005-08-07 08:38 Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GNUmakefile: Added new file.

View file

@ -43,6 +43,7 @@ GormCore_HEADER_FILES = \
GormClassInspector.h \
GormClassManager.h \
GormClassPanelController.h \
GormConnectionInspector.h \
GormControlEditor.h \
GormCustomClassInspector.h \
GormCustomView.h \

View file

@ -0,0 +1,48 @@
/* GormConnectionInspector.m
*
* Copyright (C) 1999 Free Software Foundation, Inc.
*
* Author: Richard Frith-Macdonald <richard@brainstrom.co.uk>
* Date: 1999
* Author: Gregory John Casamento <greg_casamento@yahoo.com>
* Date: 2003,2005
*
* 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
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA.
*/
#ifndef INCLUDED_GormConnectionInspector_h
#define INCLUDED_GormConnectionInspector_h
#include <AppKit/NSNibConnector.h>
#include <InterfaceBuilder/IBInspector.h>
@class NSBrowser, NSArray, NSMutableArray;
@interface GormConnectionInspector : IBInspector
{
id currentConnector;
NSMutableArray *connectors;
NSArray *actions;
NSArray *outlets;
NSBrowser *newBrowser;
NSBrowser *oldBrowser;
}
- (void) updateButtons;
@end
#endif

View file

@ -4,6 +4,8 @@
*
* Author: Richard Frith-Macdonald <richard@brainstrom.co.uk>
* Date: 1999
* Author: Gregory John Casamento <greg_casamento@yahoo.com>
* Date: 2003,2005
*
* This file is part of GNUstep.
*
@ -23,21 +25,10 @@
*/
#include <AppKit/NSNibConnector.h>
#include <Foundation/NSException.h>
#include <InterfaceBuilder/IBInspector.h>
#include "GormPrivate.h"
@interface GormConnectionInspector : IBInspector
{
id currentConnector;
NSMutableArray *connectors;
NSArray *actions;
NSArray *outlets;
NSBrowser *newBrowser;
NSBrowser *oldBrowser;
}
- (void) updateButtons;
@end
#include "GormPrivate.h"
#include "GormConnectionInspector.h"
@implementation GormConnectionInspector