2024-09-21 02:23:59 -03:00
|
|
|
//
|
2024-12-09 05:31:58 -03:00
|
|
|
// PitchSlider.h
|
2024-09-21 02:23:59 -03:00
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Christopher Snowhill on 9/20/24.
|
|
|
|
// Copyright 2024 __LoSnoCo__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2024-12-09 05:31:58 -03:00
|
|
|
#import "TempoSlider.h"
|
|
|
|
|
2024-09-21 02:23:59 -03:00
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2024-12-09 05:31:58 -03:00
|
|
|
@interface PitchSlider : NSSlider {
|
2024-09-21 02:23:59 -03:00
|
|
|
NSPopover *popover;
|
|
|
|
NSText *textView;
|
2024-12-09 05:31:58 -03:00
|
|
|
IBOutlet NSSlider *_TempoSlider;
|
2024-09-21 02:23:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)showToolTip;
|
|
|
|
- (void)showToolTipForDuration:(NSTimeInterval)duration;
|
|
|
|
- (void)showToolTipForView:(NSView *)view closeAfter:(NSTimeInterval)duration;
|
|
|
|
- (void)hideToolTip;
|
|
|
|
|
|
|
|
@end
|