Cog/LyricsWindow/LyricsWindowController.h
Christopher Snowhill 799299df3a
Lyrics: Implement Lyrics window display and hotkey
Implement Lyrics window display into main app as a popup window panel,
with a main menu hotkey.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
2023-02-23 17:45:59 -08:00

28 lines
496 B
Objective-C

//
// LyricsWindowController.h
// Cog
//
// Created by Christopher Snowhill on 2/23/23.
//
#import <Cocoa/Cocoa.h>
#import "AppController.h"
NS_ASSUME_NONNULL_BEGIN
@interface LyricsWindowController : NSWindowController {
IBOutlet id playlistSelectionController;
IBOutlet id currentEntryController;
IBOutlet AppController *appController;
id __unsafe_unretained valueToDisplay;
}
@property(assign) id valueToDisplay;
- (IBAction)toggleWindow:(id)sender;
@end
NS_ASSUME_NONNULL_END