summaryrefslogtreecommitdiffstats
path: root/dialog.h
blob: d8eb6527d0afbc1bbf9aa379b537da853a0dc840 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef dialog_h
#define dialog_h

#include "dialog_ui.h"

class Dialog : public DialogUI
{
public:
	Dialog(wxWindow *parent);
	void RefreshDrives(void);

protected:
	void UpdateStartButton(void);

	void OnRefreshDrives(wxCommandEvent& event);
	void OnStartButton(wxCommandEvent& event);
	void OnCancelButton(wxCommandEvent& event);
	void OnIsoChange(wxFileDirPickerEvent &event);
	void OnTargetChange(wxCommandEvent& event);
};

#endif