]> Dogcows Code - chaz/thecheat/blob - AppController.h
update contact information and project URL
[chaz/thecheat] / AppController.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 #import "ChazLog.h"
14 #include "cheat_global.h"
15
16 #import "ChazUpdate.h"
17
18 #import "CheatServer.h"
19
20
21 @class AboutBoxController;
22 @class HelpController;
23 @class PreferenceController;
24
25
26 @interface AppController : NSApplication
27 {
28 CheatServer *_server;
29
30 AboutBoxController *_aboutBoxController;
31 HelpController *_helpController;
32 PreferenceController *_preferenceController;
33 }
34
35 // Interface Actions
36 - (IBAction)newSearchWindow:(id)sender;
37 - (IBAction)newBlankCheatWindow:(id)sender;
38
39 - (IBAction)showAboutBoxWindow:(id)sender;
40 - (IBAction)showPreferenceWindow:(id)sender;
41
42 - (IBAction)launchHelpFile:(id)sender;
43 - (IBAction)launchEmailMenu:(id)sender;
44 - (IBAction)launchWebsiteMenu:(id)sender;
45
46 - (IBAction)checkForUpdate:(id)sender;
47
48 // Server Stuff
49 - (CheatServer *)cheatServer;
50 - (BOOL)startCheatServer;
51 - (void)stopCheatServer;
52
53 @end
54
55
This page took 0.034771 seconds and 4 git commands to generate.