mirror of
https://github.com/cookiengineer/audacity
synced 2025-09-24 16:01:16 +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>
46 lines
955 B
C++
46 lines
955 B
C++
/**********************************************************************
|
|
|
|
Tenacity
|
|
|
|
SplashDialog.h
|
|
|
|
James Crook
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_SPLASH_DLG__
|
|
#define __AUDACITY_SPLASH_DLG__
|
|
|
|
#include "widgets/wxPanelWrapper.h" // to inherit
|
|
|
|
class wxBitmap;
|
|
class ShuttleGui;
|
|
class AudacityProject;
|
|
class HtmlWindow;
|
|
|
|
class SplashDialog final : public wxDialogWrapper {
|
|
DECLARE_DYNAMIC_CLASS(SplashDialog)
|
|
public:
|
|
|
|
static void DoHelpWelcome( AudacityProject &project );
|
|
|
|
SplashDialog(wxWindow * parent);
|
|
virtual ~ SplashDialog();
|
|
void OnOK(wxCommandEvent & event);
|
|
static void Show2( wxWindow * pParent );
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
private:
|
|
|
|
void OnChar(wxMouseEvent &event);
|
|
void Populate( ShuttleGui & S );
|
|
void OnDontShow( wxCommandEvent & Evt );
|
|
|
|
HtmlWindow * mpHtml;
|
|
std::unique_ptr<wxBitmap> m_pLogo; //vvv
|
|
static SplashDialog * pSelf;
|
|
};
|
|
|
|
#endif
|