#include #include #include "dialog.h" Dialog::Dialog(wxWindow *parent) : DialogUI(parent) { RefreshDrives(); } void Dialog::RefreshDrives(void) { wxMessageBox(wxT("To be implemented")); } void Dialog::OnRefreshDrives(wxCommandEvent &event) { RefreshDrives(); } void Dialog::OnStartButton(wxCommandEvent &event) { wxMessageBox(wxT("To be implemented")); } void Dialog::OnCancelButton(wxCommandEvent &event) { Close(); }