]> Dogcows Code - chaz/thecheat/blob - NetTrafficController.h
The Cheat 1.0b4
[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)allowRemoteChanged:(BOOL)allow;
36 - (void)listenPortChanged:(int)port;
37 - (void)broadcastNameChanged:(NSString *)name;
38
39 - (void)connectionListChanged;
40
41 - (void)setConnectionCount:(int)count;
42
43 - (IBAction)killConnectionButton:(id)sender;
44
45 @end
This page took 0.033776 seconds and 4 git commands to generate.