-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathALWindowController.h
More file actions
46 lines (35 loc) · 1.09 KB
/
ALWindowController.h
File metadata and controls
46 lines (35 loc) · 1.09 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
//
// ALWindowController.h
// ActiveLog
//
// Created by Uncle MiF on 9/10/10.
// Copyright 2010 Deep IT. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface ALWindowController : NSWindowController <NSTableViewDelegate>
{
NSMutableArray * rApps;
NSTableView * registeredApps;
NSMutableDictionary * eAppZones;
NSMutableArray * eZones;// auto, for selected app
BOOL eZoneSelected;
NSTableView * enabledZones;
NSButton * persistentCheck;
NSPanel * addZonePanel;
NSTextField * zoneNameField;
NSMutableDictionary * detectedModules;
}
@property (assign) IBOutlet NSTableView *registeredApps;
@property (assign) IBOutlet NSTableView *enabledZones;
@property (assign) IBOutlet NSButton *persistentCheck;
@property (assign) IBOutlet NSPanel *addZonePanel;
@property (assign) IBOutlet NSTextField *zoneNameField;
-(IBAction)refresh:(id)sender;
-(IBAction)persistentChanged:(id)sender;
-(IBAction)addZone:(id)sender;
-(IBAction)removeZone:(id)sender;
-(IBAction)addZoneFinalize:(id)sender;
-(IBAction)help:(id)sender;
-(void)registeredAppsReloadData;
-(void)setEZoneSelected:(BOOL)flag;
@end