I will implement the more complex setup of providing options for most of the configuration that Rubber Band provides, at a later date, when I feel like creating a complex configuration dialog for it, and asking for help translating every option and setting. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
24 lines
493 B
Objective-C
24 lines
493 B
Objective-C
//
|
|
// SpeedButton.h
|
|
// Cog
|
|
//
|
|
// Created by Christopher Snowhill on 9/20/24.
|
|
// Copyright 2024 __LoSnoCo__. All rights reserved.
|
|
//
|
|
|
|
#import "PitchSlider.h"
|
|
#import "TempoSlider.h"
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface SpeedButton : NSButton {
|
|
IBOutlet NSView *_popView;
|
|
IBOutlet PitchSlider *_PitchSlider;
|
|
IBOutlet TempoSlider *_TempoSlider;
|
|
IBOutlet NSButton *_LockButton;
|
|
IBOutlet NSButton *_ResetButton;
|
|
}
|
|
|
|
- (IBAction)pressLock:(id)sender;
|
|
- (IBAction)pressReset:(id)sender;
|
|
|
|
@end
|