-
Notifications
You must be signed in to change notification settings - Fork 0
/
GrowlITTSWPrefs.h
65 lines (55 loc) · 1.75 KB
/
GrowlITTSWPrefs.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
54
55
56
57
58
59
60
61
62
63
64
65
/*
* GrowlITTSW
* GrowlITTSWPrefs.h
*
* Copyright (c) 2009 iThink Software
*
*/
#import <PreferencePanes/PreferencePanes.h>
#import <ITKit/ITKit.h>
#import <ITKit/ITTSWBackgroundView.h>
@interface GrowlITTSWPrefs : NSPreferencePane {
IBOutlet NSPopUpButton *appearanceEffectButton;
IBOutlet NSSlider *appearanceSpeedSlider;
IBOutlet NSPopUpButton *vanishEffectButton;
IBOutlet NSSlider *vanishSpeedSlider;
IBOutlet NSSlider *vanishDelaySlider;
IBOutlet NSPopUpButton *backgroundStyleButton;
IBOutlet NSColorWell *backgroundColorWell;
IBOutlet NSPopUpButton *windowSizeButton;
IBOutlet NSPopUpButton *screenButton;
IBOutlet NSSlider *imageSizeSlider;
IBOutlet NSButton *imageNoUpscaleButton;
IBOutlet NSButton *wrapNotificationsButton;
IBOutlet NSTextField *wrapColumnsField;
}
+ (Class)appearanceEffect;
+ (float)appearanceSpeed;
+ (Class)vanishEffect;
+ (float)vanishSpeed;
+ (float)vanishDelay;
+ (ITTSWBackgroundMode)backgroundStyle;
+ (NSColor *)backgroundColor;
+ (ITTransientStatusWindowSizing)windowSize;
+ (int)screenIndex;
+ (NSScreen *)screen;
+ (ITHorizontalWindowPosition)horizontalPosition;
+ (ITVerticalWindowPosition)verticalPosition;
+ (float)imageSize;
+ (BOOL)imageNoUpscale;
+ (BOOL)wrapNotifications;
+ (int)wrapColumns;
- (IBAction)setAppearanceEffect:(id)sender;
- (IBAction)setAppearanceSpeed:(id)sender;
- (IBAction)setVanishEffect:(id)sender;
- (IBAction)setVanishSpeed:(id)sender;
- (IBAction)setVanishDelay:(id)sender;
- (IBAction)setBackgroundStyle:(id)sender;
- (IBAction)setBackgroundColor:(id)sender;
- (IBAction)setWindowSize:(id)sender;
- (IBAction)setScreen:(id)sender;
- (IBAction)setImageSize:(id)sender;
- (IBAction)setImageNoUpscale:(id)sender;
- (IBAction)setWrap:(id)sender;
- (IBAction)setWrapColumns:(id)sender;
@end