X-Git-Url: http://git.ithinksw.org/GrowlITTSW.git/blobdiff_plain/2802d8d58f43f9b0b5c01c0c5ade24fdbecf17c7..fad781e94b464109aaa2243aa5ad2e593ea6e9bb:/GrowlITTSWPrefs.h diff --git a/GrowlITTSWPrefs.h b/GrowlITTSWPrefs.h index e2c287d..a83d30f 100644 --- a/GrowlITTSWPrefs.h +++ b/GrowlITTSWPrefs.h @@ -1,6 +1,44 @@ #import +#import +#import @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; } ++ (Class)appearanceEffect; ++ (float)appearanceSpeed; ++ (Class)vanishEffect; ++ (float)vanishSpeed; ++ (float)vanishDelay; ++ (ITTSWBackgroundMode)backgroundStyle; ++ (NSColor *)backgroundColor; ++ (ITTransientStatusWindowSizing)windowSize; ++ (int)screenIndex; ++ (NSScreen *)screen; ++ (ITHorizontalWindowPosition)horizontalPosition; ++ (ITVerticalWindowPosition)verticalPosition; + +- (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; + @end