blob: 9af2f3b1165e6a40a7896108e348db6726903bf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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();
}
|