apps-gorm/GormSetNameController.h
Gregory John Casamento 5829d599d0 Changes to correct the set name issue as well as some of the code to facilitate standalone views.:
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@17643 72102866-910b-0410-8b05-ffd578937521
2003-09-09 01:28:46 +00:00

27 lines
522 B
Objective-C

// Author: Andrew E. Ruder
// Copyright (C) 2003 by Free Software Foundation, Inc
@class GormSetNameController;
#ifndef GORM_SET_NAME_CONTROLLER_H
#define GORM_SET_NAME_CONTROLLER_H
#include <Foundation/NSObject.h>
@class NSButton, NSPanel, NSTextField;
@interface GormSetNameController : NSObject
{
NSPanel *window;
NSTextField *textField;
NSButton *okButton;
NSButton *cancelButton;
}
- (int)runAsModal;
- (NSTextField *) textField;
- (void) cancelHit: (id)sender;
- (void) okHit: (id)sender;
@end
#endif