mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-17 16:40:07 +02:00
List of commands that were executed in the `src directory`: * sed -i 's/Audacity: A Digital Audio Editor/Tenacity/g' *.h * sed -i 's/Audacity: A Digital Audio Editor/Tenacity/g' *.cpp Signed-off-by: Panagiotis Vasilopoulos <hello@alwayslivid.com>
51 lines
997 B
C++
51 lines
997 B
C++
/**********************************************************************
|
|
|
|
Tenacity
|
|
|
|
LyricsWindow.h
|
|
|
|
Vaughan Johnson
|
|
Dominic Mazzoni
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_LYRICS_WINDOW__
|
|
#define __AUDACITY_LYRICS_WINDOW__
|
|
|
|
#include <wx/frame.h> // to inherit
|
|
|
|
#include "Prefs.h"
|
|
|
|
class AudacityProject;
|
|
class LyricsPanel;
|
|
|
|
class LyricsWindow final : public wxFrame,
|
|
public PrefsListener
|
|
{
|
|
|
|
public:
|
|
LyricsWindow(AudacityProject* parent);
|
|
|
|
LyricsPanel *GetLyricsPanel() { return mLyricsPanel; };
|
|
|
|
private:
|
|
void OnCloseWindow(wxCloseEvent & WXUNUSED(event));
|
|
|
|
void OnStyle_BouncingBall(wxCommandEvent &evt);
|
|
void OnStyle_Highlight(wxCommandEvent &evt);
|
|
void OnTimer(wxCommandEvent &event);
|
|
|
|
void SetWindowTitle();
|
|
|
|
// PrefsListener implementation
|
|
void UpdatePrefs() override;
|
|
|
|
AudacityProject *mProject;
|
|
LyricsPanel *mLyricsPanel;
|
|
|
|
public:
|
|
DECLARE_EVENT_TABLE()
|
|
};
|
|
|
|
#endif
|