mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-24 20:11:20 +00:00
28 lines
522 B
C
28 lines
522 B
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
|