1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-04 18:53:24 +01:00
Files
audacity/src/SplashDialog.h
2019-04-04 10:13:23 -04:00

43 lines
903 B
C++

/**********************************************************************
Audacity: A Digital Audio Editor
SplashDialog.h
James Crook
**********************************************************************/
#ifndef __AUDACITY_SPLASH_DLG__
#define __AUDACITY_SPLASH_DLG__
#include "MemoryX.h"
#include "widgets/wxPanelWrapper.h" // to inherit
class wxBitmap;
class ShuttleGui;
class AudacityProject;
class HtmlWindow;
class SplashDialog final : public wxDialogWrapper {
DECLARE_DYNAMIC_CLASS(SplashDialog)
public:
SplashDialog(wxWindow * parent);
virtual ~ SplashDialog();
void OnOK(wxCommandEvent & event);
static void Show2( wxWindow * pParent );
DECLARE_EVENT_TABLE()
private:
void Populate( ShuttleGui & S );
void OnDontShow( wxCommandEvent & Evt );
HtmlWindow * mpHtml;
std::unique_ptr<wxBitmap> m_pLogo; //vvv
static SplashDialog * pSelf;
};
#endif