-
Notifications
You must be signed in to change notification settings - Fork 12
/
MVPreferencesController.h
executable file
·39 lines (34 loc) · 1.44 KB
/
MVPreferencesController.h
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
//
// MVPreferencesController.h
// FileShuttle
//
// Created by Michael Villar on 8/15/11.
//
#import <Foundation/Foundation.h>
#import <ShortcutRecorder/ShortcutRecorder.h>
///////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////
@interface MVPreferencesController : NSObject <NSTextFieldDelegate> {
BOOL showDockIcon_;
NSTimer *passwordTimer_;
NSWindow *window_;
NSSecureTextField *passwordTextField_;
NSPopUpButton *showInPopUpButton_;
SRRecorderControl *clipboardRecorderControl_;
NSPopUpButton *setFilenamePopUpButton;
}
@property (assign) IBOutlet NSWindow *window;
@property (assign) IBOutlet NSToolbar *toolbar;
@property (assign) IBOutlet NSView *generalView;
@property (assign) IBOutlet NSView *advancedView;
@property (assign) IBOutlet NSSecureTextField *passwordTextField;
@property (assign) IBOutlet NSPopUpButton *showInPopUpButton;
@property (assign) IBOutlet NSPopUpButton *setFilenamePopUpButton;
@property (assign) IBOutlet SRRecorderControl *clipboardRecorderControl;
- (IBAction)toolbarItemAction:(id)sender;
- (IBAction)protocolChanged:(id)sender;
- (IBAction)passwordChanged:(id)sender;
- (IBAction)showInPopUpButtonChanged:(id)sender;
- (IBAction)setFilenamePopUpButtonChanged:(id)sender;
@end