mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-03 17:19:43 +02:00
44 lines
837 B
C++
44 lines
837 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
LyricsWindow.h
|
|
|
|
Vaughan Johnson
|
|
Dominic Mazzoni
|
|
|
|
**********************************************************************/
|
|
|
|
#include "Experimental.h"
|
|
|
|
#ifndef __AUDACITY_LYRICS_WINDOW__
|
|
#define __AUDACITY_LYRICS_WINDOW__
|
|
|
|
#include <wx/frame.h>
|
|
|
|
class AudacityProject;
|
|
class Lyrics;
|
|
|
|
class LyricsWindow : public wxFrame {
|
|
|
|
public:
|
|
LyricsWindow(AudacityProject* parent);
|
|
virtual ~LyricsWindow();
|
|
|
|
Lyrics *GetLyricsPanel() { return mLyricsPanel; };
|
|
|
|
private:
|
|
void OnCloseWindow(wxCloseEvent & WXUNUSED(event));
|
|
|
|
void OnStyle_BouncingBall(wxCommandEvent &evt);
|
|
void OnStyle_Highlight(wxCommandEvent &evt);
|
|
|
|
AudacityProject *mProject;
|
|
Lyrics *mLyricsPanel;
|
|
|
|
public:
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
#endif
|