-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMainWindow.h
More file actions
66 lines (53 loc) · 1.75 KB
/
Copy pathMainWindow.h
File metadata and controls
66 lines (53 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//
// MainWindow.h
// Gawker
//
// Created by Phil Piwonka on 7/24/05.
// Copyright 2005 Phil Piwonka. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@class LocalCamera;
@class FireWireNotifier;
@class USBNotifier;
@class CameraMenuButton;
@class AppController;
@interface MainWindow : NSObject {
IBOutlet NSTableView *availableCamerasTable;
IBOutlet NSComboBox *internetConnect;
IBOutlet CameraMenuButton *menuButton;
NSMutableArray *recentConnections;
NSMutableArray *availableCameras;
NSNetServiceBrowser *camBrowser;
NSMutableString *xmlString;
FireWireNotifier *fireWireNotifier;
USBNotifier *usbNotifier;
IBOutlet NSMenu *cameraMenu;
IBOutlet AppController *appController;
NSMutableDictionary *topLineTextAttributes;
NSMutableDictionary *topSelectedTextAttributes;
NSMutableDictionary *topLineDisconnectedTextAttributes;
NSMutableDictionary *botLineTextAttributes;
NSMutableDictionary *botSelectedTextAttributes;
NSMutableDictionary *botLineDisconnectedTextAttributes;
}
- (id)init;
- (void)awakeFromNib;
- (void)dealloc;
//
// User Interface functions
//
- (IBAction)openCamera:(id)sender;
- (IBAction)toggleCameraEnabled:(id)sender;
- (IBAction)toggleCameraShared:(id)sender;
- (IBAction)openCameraFeatures:(id)sender;
- (IBAction)openInternetCamera:(id)sender;
- (IBAction)openCombinedCamera:(id)sender;
- (IBAction)deleteCamera:(id)sender;
- (IBAction)clearRecentConnections:(id)sender;
- (void)fireWireDeviceAdded:(FireWireNotifier *)fwNote;
- (void)fireWireDeviceRemoved:(FireWireNotifier *)fwNote
name:(NSString *)device;
- (void)usbDeviceAdded:(USBNotifier *)usbNote;
- (void)usbDeviceRemoved:(USBNotifier *)usbNote
name:(NSString *)device;
@end