Cog/Visualization/SpectrumItem.h
Christopher Snowhill c3ca29db0d [Spectrum] Enable switching style at runtime
It is now possible to switch the display style at runtime, while the
views are open.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2022-07-05 13:54:35 -07:00

19 lines
289 B
Objective-C

//
// SpectrumItem.h
// Cog
//
// Created by Christopher Snowhill on 2/13/22.
//
#import <Cocoa/Cocoa.h>
#import "PlaybackController.h"
NS_ASSUME_NONNULL_BEGIN
@interface SpectrumItem : NSToolbarItem {
IBOutlet PlaybackController *playbackController;
}
@end
NS_ASSUME_NONNULL_END