-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwxRarOptions.cpp
58 lines (49 loc) · 1.6 KB
/
wxRarOptions.cpp
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include "wxRarOptions.h"
wxRarOptions::wxRarOptions(wxWindow *parent, int id, wxString path, long numeroProcessi, bool aggiornamenti) : MyDialog1(parent)
{
terminal=id;
m_choice1->SetSelection(terminal);
this->path=path;
m_textCtrl1->SetValue(this->path);
numeroProcessiStr<<numeroProcessi;
m_textCtrl3->SetValue(numeroProcessiStr);
m_checkBox1->SetValue(aggiornamenti);
//ctor
}
wxRarOptions::~wxRarOptions()
{
//dtor
}
void wxRarOptions::OnSelect( wxCommandEvent& event ) {
wxDirDialog *dirDialog=new wxDirDialog(this, wxT("Seleziona una directory"));
if (dirDialog->ShowModal()==wxID_OK) {
m_textCtrl1->SetValue(dirDialog->GetPath());
m_textCtrl3->SetValue(numeroProcessiStr);
}
}
int wxRarOptions::GetTerminal() {
return terminal;
}
wxString wxRarOptions::GetPath() {
return path;
}
void wxRarOptions::OnOK( wxCommandEvent& event ) {
terminal=m_choice1->GetSelection();
aggiornamenti=m_checkBox1->GetValue();
numeroProcessiStr=m_textCtrl3->GetValue();
path=m_textCtrl1->GetValue();
if (!numeroProcessiStr.ToLong(&numeroProcessi))
wxMessageBox(wxT("Il valore inserito come numero di processi non è un numero intero."), wxT("Errore"), wxICON_ERROR);
else if (numeroProcessi < 1 || numeroProcessi> 10)
wxMessageBox(wxT("Il valore inserito come numero di processi non è tra 1 e 10"), wxT("Errore"), wxICON_ERROR);
else {
ok=true;
Close();
}
}
long wxRarOptions::getNumeroProcessi() {
return numeroProcessi;
}
bool wxRarOptions::getAggiornamenti() {
return aggiornamenti;
}