summaryrefslogtreecommitdiffstats
path: root/dialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dialog.cpp')
-rw-r--r--dialog.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/dialog.cpp b/dialog.cpp
new file mode 100644
index 0000000..9af2f3b
--- /dev/null
+++ b/dialog.cpp
@@ -0,0 +1,31 @@
+#include <unistd.h>
+
+#include <wx/msgdlg.h>
+
+#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();
+}