]> Dogcows Code - chaz/thecheat/blob - ServerPrefs.h
update contact information and project URL
[chaz/thecheat] / ServerPrefs.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 #import "StatusTextField.h"
18
19
20 @interface ServerPrefs : NSObject
21 {
22 IBOutlet StatusTextField *ibStatusField;
23 IBOutlet NSTextField *ibNameField;
24 IBOutlet NSTextField *ibPortField;
25 IBOutlet NSButton *ibStartButton;
26 IBOutlet NSTableView *ibSessionTable;
27 IBOutlet NSTextField *ibDefaultPortText;
28
29 NSTimer *_tableTimer;
30 }
31
32 - (IBAction)ibSetListenPort:(id)sender;
33 - (IBAction)ibSetBroadcast:(id)sender;
34
35 - (IBAction)ibStartServer:(id)sender;
36
37 @end
This page took 0.030387 seconds and 4 git commands to generate.