1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-07 20:22:13 +01:00
Files
audacity/src/SplashDialog.h
martynshaw99 4ce2643d5f Remove the
// Indentation settings for Vim and Emacs
etc. lines from all files, as Campbell's patch (except for other changes to Languages.cpp)
2013-09-24 00:14:37 +00:00

46 lines
917 B
C++

/**********************************************************************
Audacity: A Digital Audio Editor
SplashDialog.h
James Crook
**********************************************************************/
#ifndef __AUDACITY_SPLASH_DLG__
#define __AUDACITY_SPLASH_DLG__
#include <wx/dialog.h>
class wxBoxSizer;
class wxStaticBitmap;
class wxBitmap;
class ShuttleGui;
class AudacityProject;
class wxCheckbox;
class HtmlWindow;
class SplashDialog:public wxDialog {
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;
wxStaticBitmap* m_pIcon;
wxBitmap* m_pLogo; //vvv
static SplashDialog * pSelf;
};
#endif