forked from twocanoes/debug
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDebugPref.h
More file actions
30 lines (27 loc) · 897 Bytes
/
Copy pathDebugPref.h
File metadata and controls
30 lines (27 loc) · 897 Bytes
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
//
// DebugPref.h
// Debug
//
// Created by Timothy Perfitt on 11/6/09.
// Copyright (c) 2013 twocanoes. All rights reserved.
//
#import <PreferencePanes/PreferencePanes.h>
#import <SecurityInterface/SFAuthorizationView.h>
#include <string.h>
@interface DebugPref : NSPreferencePane
{
AuthorizationRef authorization;
IBOutlet SFAuthorizationView *lockView;
BOOL isEnabled,isDSDebugging,isLoggingDNS,isDoingNetworkTrace,isTracingDNS,
isTracingKerberos,isTracingLDAP,isSyslogDebug,hasUnappledChanges;
}
@property BOOL isEnabled,isDSDebugging,isLoggingDNS,isDoingNetworkTrace,isTracingDNS,isTracingKerberos,
isTracingLDAP,isSyslogDebug,hasUnappledChanges;
-(IBAction)apply:(id)sender;
- (void) mainViewDidLoad;
-(void)save;
-(IBAction)optionChanged:(id)sender;
-(void)setDefaults;
-(IBAction)revert:(id)sender;
-(IBAction)compressAndSendToDesktop:(id)sender;
@end