]> Dogcows Code - chaz/thecheat/blobdiff - NetTrafficController.h
The Cheat 1.0b3
[chaz/thecheat] / NetTrafficController.h
diff --git a/NetTrafficController.h b/NetTrafficController.h
new file mode 100644 (file)
index 0000000..092ffaf
--- /dev/null
@@ -0,0 +1,45 @@
+
+// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+// Project:   The Cheat
+//
+// File:      NetTrafficController.h
+// Created:   Wed Sep 24 2003
+//
+// Copyright: 2003 Chaz McGarvey.  All rights reserved.
+// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+#import <Cocoa/Cocoa.h>
+
+#import "NetTrafficControlling.h"
+
+#include "cheat_globals.h"
+
+
+@interface NetTrafficController : NSWindowController
+{
+       id                              delegate;
+       
+       IBOutlet id             netTrafficWindow;
+       IBOutlet id             broadcastNameText;
+       IBOutlet id             listenPortText;
+       IBOutlet id             serverListTable;
+       IBOutlet id             connectionCountText;
+       IBOutlet id             killConnectionButton;
+}
+
+- (id)initWithDelegate:(id)del;
+
+- (void)initialInterfaceSetup;
+- (void)interfaceUpdate;
+
+- (void)allowRemoteChanged:(BOOL)allow;
+- (void)listenPortChanged:(int)port;
+- (void)broadcastNameChanged:(NSString *)name;
+
+- (void)connectionListChanged;
+
+- (void)setConnectionCount:(int)count;
+
+- (IBAction)killConnectionButton:(id)sender;
+
+@end
\ No newline at end of file
This page took 0.020358 seconds and 4 git commands to generate.