-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathConfigurationWindowController.h
More file actions
58 lines (45 loc) · 2.13 KB
/
ConfigurationWindowController.h
File metadata and controls
58 lines (45 loc) · 2.13 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
////////////////////////////////////////////////////////////////////////////////////
// //
// OCSINVENTORY-NG //
// //
// Copyleft Guillaume PROTET 2012 //
// Web : http://www.ocsinventory-ng.org //
// //
// //
// This code is open source and may be copied and modified as long as the source //
// code is always made freely available. //
// Please refer to the General Public Licence http://www.gnu.org/ //
// //
////////////////////////////////////////////////////////////////////////////////////
#import <Cocoa/Cocoa.h>
@class Context;
@class ExportWindowController;
@class Configuration;
@interface ConfigurationWindowController : NSWindowController {
IBOutlet NSTextField *userOcsPkgFile;
IBOutlet NSTextField *userServer;
IBOutlet NSTextField *userLogFile;
IBOutlet NSTextField *userTag;
IBOutlet NSTextField *userCacertFile;
IBOutlet NSTextField *authUser;
IBOutlet NSTextField *authPwd;
IBOutlet NSTextField *authRealm;
IBOutlet NSButton *userDebugMode;
IBOutlet NSButton *userDownload;
IBOutlet NSButton *userLazy;
IBOutlet NSButton *userSsl;
IBOutlet NSTextField *userPeriodicity;
IBOutlet NSButton *userStartup;
IBOutlet NSButton *userNow;
IBOutlet NSPopUpButton *protocolist;
ExportWindowController *exportWindowController;
Context *context;
Configuration *configuration;
}
- (IBAction) chooseCacertFile:(id)sender;
- (IBAction) chooseOcsPkgFile:(id)sender;
- (IBAction) chooseProtocol:(id)sender;
- (IBAction) getUserConfiguration:(id)sender;
- (void) displayExportWindow;
- (IBAction) terminateApp:(id)sender;
@end