Files
itgmania212121/stepmania/PBProject/Installer/InstallerWindowController.h
T

25 lines
650 B
Objective-C
Raw Normal View History

2003-09-10 03:52:20 +00:00
/* InstallerWindowController */
#import <Cocoa/Cocoa.h>
#import "Helper.h"
@interface InstallerWindowController : NSWindowController
{
IBOutlet NSButton *button;
IBOutlet NSTextView *textView;
IBOutlet NSTextField *questionField;
IBOutlet NSPanel *questionPanel;
2003-09-10 03:52:20 +00:00
BOOL installing;
Helper *helper;
BOOL finished;
}
- (void)awakeFromNib;
- (void)dealloc;
- (IBAction)pushedButton:(id)sender;
- (void)postMessage:(NSString *)message;
- (void)finishedInstalling:(BOOL)success;
- (BOOL)askQuestion:(NSString *)question;
2003-09-10 03:52:20 +00:00
- (IBAction)pushedQuestionButton:(id)sender;
- (void)windowWillClose:(NSNotification *)notification;
2003-09-10 03:52:20 +00:00
@end