1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-24 16:38:07 +02:00
audacity/src/SplashDialog.h
Emily Mabrey 40d4883233
Revert "Replace header guards with #pragma once"
This reverts commit a6bc896e246d48821ff7ae70d572aefcf0cbedd6.
2021-08-24 16:57:24 -04:00

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