-
Notifications
You must be signed in to change notification settings - Fork 13
/
GeneralPrefs.h
37 lines (31 loc) · 1.09 KB
/
GeneralPrefs.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* The Cheat - The legendary universal game trainer for Mac OS X.
* http://www.brokenzipper.com/trac/wiki/TheCheat
*
* Copyright (c) 2003-2011, Charles McGarvey et al.
*
* Distributable under the terms and conditions of the 2-clause BSD
* license; see the file COPYING for the legal text of the license.
*/
#import <Cocoa/Cocoa.h>
#include "cheat_global.h"
@interface GeneralPrefs : NSObject
{
IBOutlet NSButton *ibWindowOrderButton;
IBOutlet NSButton *ibAskForSaveButton;
IBOutlet NSButton *ibFadeSmoothlyButton;
IBOutlet NSButton *ibDisplayValuesButton;
IBOutlet NSTextField *ibValueUpdateField;
IBOutlet NSTextField *ibResultsDisplayedField;
IBOutlet NSButton *ibSwitchVariablesButton;
IBOutlet NSButton *ibStartEditingVarsButton;
}
- (IBAction)ibWindowOrderButton:(id)sender;
- (IBAction)ibSetAskForSave:(id)sender;
- (IBAction)ibSetFadeSmoothly:(id)sender;
- (IBAction)ibDisplayValuesButton:(id)sender;
- (IBAction)ibSetValueUpdate:(id)sender;
- (IBAction)ibSetResultsDisplayed:(id)sender;
- (IBAction)ibSwitchVariablesButton:(id)sender;
- (IBAction)ibStartEditingVarsButton:(id)sender;
@end