Header files reorganized. All the definitions were moved in appropiate files.

Each header file includes only the header files it needs and it uses
@class to forward reference a class.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2189 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Scott Christley 1997-02-18 00:29:25 +00:00
parent 0aa42f2776
commit 151bf11e2c
151 changed files with 2718 additions and 3068 deletions

View file

@ -26,18 +26,20 @@
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <gnustep/gui/NSControl.h>
#include <gnustep/gui/NSApplication.h>
#include <AppKit/NSControl.h>
#include <AppKit/NSApplication.h>
#include <AppKit/NSCell.h>
#include <AppKit/LogFile.h>
//
// Class variables
//
id MB_NSCONTROL_CELL_CLASS;
static id MB_NSCONTROL_CELL_CLASS = nil;
// NSControl notifications
NSString *NSControlTextDidBeginEditingNotification;
NSString *NSControlTextDidEndEditingNotification;
NSString *NSControlTextDidChangeNotification;
NSString *NSControlTextDidBeginEditingNotification = @"NSControlTextDidBeginEditingNotification";
NSString *NSControlTextDidEndEditingNotification = @"NSControlTextDidEndEditingNotification";
NSString *NSControlTextDidChangeNotification = @"NSControlTextDidChangeNotification";
@implementation NSControl
@ -103,7 +105,7 @@ NSString *NSControlTextDidChangeNotification;
- copyWithZone:(NSZone *)zone
{
id c;
c = [super copyWithZone: zone];
c = NSAllocateObject (isa, 0, zone);
NSLog(@"NSControl: copyWithZone\n");