Cog/SpectrumViewLegacy.h
Christopher Snowhill b3b4d728f9 [Legacy Visualizer] Customizable colors, labels
The legacy 2D visualizer now supports customizable bar and peak dot
colors, and renders a grid and labels in the windowed mode.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2022-06-10 22:38:46 -07:00

21 lines
332 B
Objective-C

//
// SpectrumViewLegacy.h
// Cog
//
// Created by Christopher Snowhill on 2/12/22.
//
#import <Cocoa/Cocoa.h>
#import "VisualizationController.h"
NS_ASSUME_NONNULL_BEGIN
@interface SpectrumViewLegacy : NSView
@property(nonatomic) BOOL isListening;
- (void)startPlayback;
- (void)enableFullView;
@end
NS_ASSUME_NONNULL_END