]> Dogcows Code - chaz/thecheat/blob - NetTrafficController.h
The Cheat 1.1.1
[chaz/thecheat] / NetTrafficController.h
1
2 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3 // Project: The Cheat
4 //
5 // File: NetTrafficController.h
6 // Created: Wed Sep 24 2003
7 //
8 // Copyright: 2003 Chaz McGarvey. All rights reserved.
9 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10
11 #import <Cocoa/Cocoa.h>
12
13 #import "NetTrafficControlling.h"
14
15 #include "cheat_globals.h"
16
17
18 @interface NetTrafficController : NSWindowController
19 {
20 id delegate;
21
22 IBOutlet id netTrafficWindow;
23 IBOutlet id broadcastNameText;
24 IBOutlet id listenPortText;
25 IBOutlet id serverListTable;
26 IBOutlet id connectionCountText;
27 IBOutlet id killConnectionButton;
28 }
29
30 - (id)initWithDelegate:(id)del;
31
32 - (void)initialInterfaceSetup;
33 - (void)interfaceUpdate;
34
35 - (void)serverSetAllowRemote:(BOOL)allow listenPort:(int)port broadcastName:(NSString *)name;
36
37 /*
38 - (void)allowRemoteChanged:(BOOL)allow;
39 - (void)listenPortChanged:(int)port;
40 - (void)broadcastNameChanged:(NSString *)name;
41 */
42
43 - (void)connectionListChanged;
44
45 - (void)setConnectionCount:(int)count;
46
47 - (IBAction)killConnectionButton:(id)sender;
48
49 @end
This page took 0.032767 seconds and 4 git commands to generate.