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>
21 lines
324 B
Objective-C
21 lines
324 B
Objective-C
//
|
|
// SpectrumViewCG.h
|
|
// Cog
|
|
//
|
|
// Created by Christopher Snowhill on 2/12/22.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#import <CogAudio/CogAudio-Swift.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SpectrumViewCG : NSView
|
|
@property(nonatomic) BOOL isListening;
|
|
|
|
- (void)startPlayback;
|
|
- (void)enableFullView;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|