mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-20 14:40:10 +00:00
34 lines
770 B
Objective-C
34 lines
770 B
Objective-C
//
|
|
// DoButton.h
|
|
// UltraGrid GUI
|
|
//
|
|
// Created by Martin Pulec on 11/2/11.
|
|
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "UltraGrid_GUIAppDelegate.h"
|
|
#import "Terminal.h"
|
|
|
|
@interface DoButton : NSButton {
|
|
NSWindow *advancedWin;
|
|
UltraGrid_GUIAppDelegate *myApp;
|
|
}
|
|
- (IBAction)doPlay:(id)pId;
|
|
|
|
- (IBAction)doAdvanced:(id)pId;
|
|
- (IBAction)doAdvancedOK:(id)pId;
|
|
- (IBAction)doAdvancedSave:(id)pId;
|
|
|
|
- (IBAction)doCaptureHelp:(id)pId;
|
|
- (IBAction)doDisplayHelp:(id)pId;
|
|
|
|
- (IBAction)doShowTerminal:(id)pId;
|
|
|
|
@property (assign) IBOutlet NSWindow *advancedWin;
|
|
@property (assign) IBOutlet Settings *settings;
|
|
@property (assign) IBOutlet Terminal *terminal;
|
|
@property (assign) IBOutlet UltraGrid_GUIAppDelegate *app;
|
|
|
|
@end
|