#ifndef dialog_h #define dialog_h #include #include "dialog_ui.h" class Dialog : public DialogUI { public: Dialog(wxWindow *parent); void RefreshDrives(void); void SetProgress(size_t current, size_t total, const char *filename); protected: wxLogTextCtrl *m_log; void UpdateStartButton(void); void OnRefreshDrives(wxCommandEvent& event); void OnStartButton(wxCommandEvent& event); void OnCancelButton(wxCommandEvent& event); void OnIsoChange(wxFileDirPickerEvent &event); void OnTargetChange(wxCommandEvent& event); }; #endif