e669709994
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11727 a1c6a512-1295-4272-9138-f99709370657
68 lines
1.2 KiB
C++
68 lines
1.2 KiB
C++
#ifndef __wizard_pages_HPP_
|
|
#define __wizard_pages_HPP_
|
|
|
|
#include "rbutil.h"
|
|
|
|
class wxPlatformPage : public wxWizardPageSimple
|
|
{
|
|
public:
|
|
wxPlatformPage(wxWizard *parent);
|
|
virtual bool TransferDataFromWindow(void);
|
|
|
|
public:
|
|
wxListBox* PlatformListBox;
|
|
};
|
|
|
|
class wxLocationPage : public wxWizardPageSimple
|
|
{
|
|
private:
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
public:
|
|
enum {
|
|
ID_LOCATION_BTN = 1000,
|
|
};
|
|
|
|
public:
|
|
wxLocationPage(wxWizard* parent);
|
|
virtual bool TransferDataFromWindow(void);
|
|
void OnLocationBtn(wxCommandEvent& event);
|
|
|
|
public:
|
|
wxStaticText* LocationText;
|
|
};
|
|
|
|
class wxBuildPage : public wxWizardPageSimple
|
|
{
|
|
private:
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
public:
|
|
enum {
|
|
ID_BUILD_BOX = 1000,
|
|
};
|
|
|
|
public:
|
|
wxBuildPage(wxWizard *parent);
|
|
virtual bool TransferDataFromWindow(void);
|
|
void OnBuildBox(wxCommandEvent& event);
|
|
void OnPageShown(wxWizardEvent& event);
|
|
|
|
public:
|
|
wxRadioBox* BuildRadioBox;
|
|
wxStaticText* DetailText;
|
|
wxCheckBox* NoCacheCheckBox;
|
|
};
|
|
|
|
class wxFullUninstallPage : public wxWizardPageSimple
|
|
{
|
|
public:
|
|
wxFullUninstallPage(wxWizard *parent);
|
|
virtual bool TransferDataFromWindow(void);
|
|
|
|
public:
|
|
wxCheckBox* FullCheckBox;
|
|
};
|
|
|
|
|
|
#endif
|