-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPreferencesWindow.h
More file actions
29 lines (23 loc) · 810 Bytes
/
PreferencesWindow.h
File metadata and controls
29 lines (23 loc) · 810 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
//
// PreferencesWindow.h
// TransmissionRemote
//
// Created by Tobias Rundström on 2010-03-14.
// Copyright 2010 Purple Scout. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface PreferencesWindow : NSWindowController {
NSTextField *_serverHostField;
NSTextField *_serverPortField;
NSButton *_needsAuthButton;
NSTextField *_userField;
NSSecureTextField *_passwordField;
}
-(IBAction)needsAuthToggle:(id)pId;
-(IBAction)textChanged:(id)pId;
@property (nonatomic, retain) IBOutlet NSTextField *serverHostField;
@property (nonatomic, retain) IBOutlet NSTextField *serverPortField;
@property (nonatomic, retain) IBOutlet NSTextField *userField;
@property (nonatomic, retain) IBOutlet NSSecureTextField *passwordField;
@property (nonatomic, retain) IBOutlet NSButton *needsAuthButton;
@end