2022-06-09 00:32:52 -04:00
|
|
|
//
|
2022-06-18 01:14:32 -04:00
|
|
|
// SpectrumViewCG.h
|
2022-06-09 00:32:52 -04:00
|
|
|
// Cog
|
|
|
|
//
|
|
|
|
// Created by Christopher Snowhill on 2/12/22.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
#import "VisualizationController.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2022-06-18 01:14:32 -04:00
|
|
|
@interface SpectrumViewCG : NSView
|
2022-06-09 00:32:52 -04:00
|
|
|
@property(nonatomic) BOOL isListening;
|
|
|
|
|
|
|
|
- (void)startPlayback;
|
2022-06-11 01:38:46 -04:00
|
|
|
- (void)enableFullView;
|
2022-06-09 00:32:52 -04:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|