-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathTumblrfulPreferences.h
53 lines (43 loc) · 1.55 KB
/
TumblrfulPreferences.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
* @file TumblrfulPreferences.h
* @brief TumblrfulPreferences declaration
* @author Masayuki YAMAYA
* @date 2008-03-03
*/
#import <Cocoa/Cocoa.h>
#import "NSPreferenceModule.h"
@interface TumblrfulPreferences : NSPreferencesModule
{
IBOutlet NSTextField* authorTextField;
IBOutlet NSTextField* emailTextField;
IBOutlet NSTextField* passwordTextField;
IBOutlet NSButton* privateCheckBox;
IBOutlet NSButton * queuingCheckBox;
IBOutlet NSButton* deliciousCheckBox;
IBOutlet NSBox* deliciousBox;
IBOutlet NSTextField* deliciousUsernameTextField;
IBOutlet NSTextField* deliciousPasswordTextField;
IBOutlet NSButton* deliciousPrivateCheckBox;
IBOutlet NSButton * instapaperCheckBox;
IBOutlet NSBox * instapaperBox;
IBOutlet NSTextField * instapaperUsernameTextField;
IBOutlet NSTextField * instapaperPasswordTextField;
IBOutlet NSButton * yammerCheckBox;
IBOutlet NSBox * yammerBox;
IBOutlet NSTextField * yammerNetworkTextField;
IBOutlet NSButton* otherCheckBox;
IBOutlet NSBox* otherBox;
IBOutlet NSTextField* otherURLTextField;
IBOutlet NSTextField* otherLoginTextField;
IBOutlet NSTextField* otherPasswordTextField;
IBOutlet NSButton * openInBackgroundTab;
}
/// action that select checkbox for 'Use delicious'
- (IBAction)checkWithDelicious:(id)sender;
/// action that select checkbox for 'Use Instapaper'
- (IBAction)checkWithInstapaper:(id)sender;
/// action that select checkbox for 'Use Yammer'
- (IBAction)checkWithYammer:(id)sender;
/// action that select checkbox for 'Use other tumblog'
- (IBAction)checkUseOtherTumblog:(id)sender;
@end