]> Dogcows Code - chaz/thecheat/blob - PreferenceController.h
update contact information and project URL
[chaz/thecheat] / PreferenceController.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
15 #include "cheat_global.h"
16
17
18 @interface PreferenceController : NSWindowController
19 {
20 NSToolbar *_toolbar;
21
22 NSView *_contentView;
23 IBOutlet NSView *ibGeneralView;
24 IBOutlet NSView *ibServerView;
25 IBOutlet NSView *ibUpdateCheckView;
26 }
27
28 - (void)chooseGeneral:(id)object;
29 - (void)chooseServer:(id)object;
30 - (void)chooseUpdate:(id)object;
31 - (void)switchToView:(NSView *)view;
32
33 - (void)initialInterfaceSetup;
34
35 @end
This page took 0.034058 seconds and 4 git commands to generate.