]> Dogcows Code - chaz/thecheat/blob - NetTrafficController.h
The Cheat 1.1.2
[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 #import <Chaz/Chaz.h>
13
14 #import "NetTrafficControlling.h"
15
16 #include "cheat_globals.h"
17
18
19 @interface NetTrafficController : NSWindowController
20 {
21 id delegate;
22
23 IBOutlet id netTrafficWindow;
24 IBOutlet id broadcastNameText;
25 IBOutlet id listenPortText;
26 IBOutlet id serverListTable;
27 IBOutlet id connectionCountText;
28 IBOutlet id killConnectionButton;
29 }
30
31 - (id)initWithDelegate:(id)del;
32
33 - (void)initialInterfaceSetup;
34 - (void)interfaceUpdate;
35
36 - (void)serverSetAllowRemote:(BOOL)allow listenPort:(int)port broadcastName:(NSString *)name;
37
38 /*
39 - (void)allowRemoteChanged:(BOOL)allow;
40 - (void)listenPortChanged:(int)port;
41 - (void)broadcastNameChanged:(NSString *)name;
42 */
43
44 - (void)connectionListChanged;
45
46 - (void)setConnectionCount:(int)count;
47
48 - (IBAction)killConnectionButton:(id)sender;
49
50 @end
This page took 0.030288 seconds and 4 git commands to generate.