mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 03:31:01 +00:00
27 lines
530 B
Objective-C
27 lines
530 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/Foundation.h>
|
|
|
|
@class NSButton, NSPanel, NSTextField;
|
|
|
|
@interface GormSetNameController : NSObject
|
|
{
|
|
NSPanel *window;
|
|
NSTextField *textField;
|
|
NSButton *okButton;
|
|
NSButton *cancelButton;
|
|
}
|
|
- (NSInteger)runAsModal;
|
|
|
|
- (NSTextField *) textField;
|
|
- (void) cancelHit: (id)sender;
|
|
- (void) okHit: (id)sender;
|
|
@end
|
|
|
|
#endif
|