audacia/src/SplashDialog.h
2016-08-08 07:51:24 -04:00

47 lines
970 B
C++

/**********************************************************************
Audacity: A Digital Audio Editor
SplashDialog.h
James Crook
**********************************************************************/
#ifndef __AUDACITY_SPLASH_DLG__
#define __AUDACITY_SPLASH_DLG__
#include "MemoryX.h"
#include <wx/dialog.h>
#include "widgets/wxPanelWrapper.h"
class wxBoxSizer;
class wxStaticBitmap;
class wxBitmap;
class ShuttleGui;
class AudacityProject;
class wxCheckbox;
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