]> Dogcows Code - chaz/thecheat/blob - GeneralPrefs.h
update contact information and project URL
[chaz/thecheat] / GeneralPrefs.h
1
2 /*
3 * The Cheat - The legendary universal game trainer for Mac OS X.
4 * http://www.brokenzipper.com/trac/wiki/TheCheat
5 *
6 * Copyright (c) 2003-2011, Charles McGarvey et al.
7 *
8 * Distributable under the terms and conditions of the 2-clause BSD
9 * license; see the file COPYING for the legal text of the license.
10 */
11
12 #import <Cocoa/Cocoa.h>
13 #include "cheat_global.h"
14
15
16 @interface GeneralPrefs : NSObject
17 {
18 IBOutlet NSButton *ibWindowOrderButton;
19 IBOutlet NSButton *ibAskForSaveButton;
20 IBOutlet NSButton *ibFadeSmoothlyButton;
21 IBOutlet NSButton *ibDisplayValuesButton;
22 IBOutlet NSTextField *ibValueUpdateField;
23 IBOutlet NSTextField *ibResultsDisplayedField;
24 IBOutlet NSButton *ibSwitchVariablesButton;
25 IBOutlet NSButton *ibStartEditingVarsButton;
26 }
27
28 - (IBAction)ibWindowOrderButton:(id)sender;
29 - (IBAction)ibSetAskForSave:(id)sender;
30 - (IBAction)ibSetFadeSmoothly:(id)sender;
31 - (IBAction)ibDisplayValuesButton:(id)sender;
32 - (IBAction)ibSetValueUpdate:(id)sender;
33 - (IBAction)ibSetResultsDisplayed:(id)sender;
34 - (IBAction)ibSwitchVariablesButton:(id)sender;
35 - (IBAction)ibStartEditingVarsButton:(id)sender;
36
37 @end
This page took 0.028377 seconds and 4 git commands to generate.