2009-02-09 05:53:38 +00:00
|
|
|
//
|
|
|
|
// VolumeSlider.h
|
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Vincent Spader on 2/8/09.
|
|
|
|
// Copyright 2009 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
@interface VolumeSlider : NSSlider {
|
2021-01-07 03:48:40 +00:00
|
|
|
NSPopover *popover;
|
|
|
|
NSText *textView;
|
2022-01-18 06:41:26 +00:00
|
|
|
double MAX_VOLUME;
|
2009-02-09 05:53:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)showToolTip;
|
|
|
|
- (void)showToolTipForDuration:(NSTimeInterval)duration;
|
2021-01-07 03:48:40 +00:00
|
|
|
- (void)showToolTipForView:(NSView *)view closeAfter:(NSTimeInterval)duration;
|
2009-02-09 05:53:38 +00:00
|
|
|
- (void)hideToolTip;
|
|
|
|
|
|
|
|
@end
|