2024-09-21 02:23:59 -03:00
|
|
|
//
|
2024-12-09 05:31:58 -03:00
|
|
|
// SpeedButton.h
|
2024-09-21 02:23:59 -03:00
|
|
|
// Cog
|
|
|
|
//
|
2024-12-09 05:31:58 -03:00
|
|
|
// Created by Christopher Snowhill on 9/20/24.
|
|
|
|
// Copyright 2024 __LoSnoCo__. All rights reserved.
|
2024-09-21 02:23:59 -03:00
|
|
|
//
|
|
|
|
|
2024-12-09 05:31:58 -03:00
|
|
|
#import "PitchSlider.h"
|
|
|
|
#import "TempoSlider.h"
|
2024-09-21 02:23:59 -03:00
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2024-12-09 05:31:58 -03:00
|
|
|
@interface SpeedButton : NSButton {
|
|
|
|
IBOutlet NSView *_popView;
|
|
|
|
IBOutlet PitchSlider *_PitchSlider;
|
|
|
|
IBOutlet TempoSlider *_TempoSlider;
|
|
|
|
IBOutlet NSButton *_LockButton;
|
|
|
|
IBOutlet NSButton *_ResetButton;
|
2024-09-21 02:23:59 -03:00
|
|
|
}
|
|
|
|
|
2024-12-09 05:31:58 -03:00
|
|
|
- (IBAction)pressLock:(id)sender;
|
|
|
|
- (IBAction)pressReset:(id)sender;
|
|
|
|
|
2024-09-21 02:23:59 -03:00
|
|
|
@end
|