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
59
60
61
62
63
64
65
66
67
68
69
70
|
#include "ControlSystemTest.h"
#include "ControlEditor.h"
ControlSystemTest::ControlSystemTest(ControlEditor* parent,
int* inputType,
double* startTime,
double* slope,
double* timeStep,
double* simTime)
: ControlSystemTestBase(parent)
{
SetSize(GetBestSize());
m_inputType = inputType;
m_startTime = startTime;
m_slope = slope;
m_timeStep = timeStep;
m_simTime = simTime;
m_choiceInput->SetSelection(*m_inputType);
m_textCtrlStartTime->SetValue(wxString::FromDouble(*m_startTime));
m_textCtrlSlope->SetValue(wxString::FromDouble(*m_slope));
m_textCtrlTimeStep->SetValue(wxString::FromDouble(*m_timeStep));
m_textCtrlSimTime->SetValue(wxString::FromDouble(*m_simTime));
}
ControlSystemTest::~ControlSystemTest() {}
void ControlSystemTest::OnRunButtonClick(wxCommandEvent& event)
{
int inputType;
double startTime, slope, timeStep, simTime;
inputType = m_choiceInput->GetSelection();
if(!m_textCtrlStartTime->GetValue().ToDouble(&startTime)) {
wxMessageDialog msgDialog(this, _("Value entered incorrectly in the field \"Start time\"."), _("Error"),
wxOK | wxCENTRE | wxICON_ERROR);
msgDialog.ShowModal();
return;
}
if(!m_textCtrlSlope->GetValue().ToDouble(&slope)) {
wxMessageDialog msgDialog(this, _("Value entered incorrectly in the field \"Slope\"."), _("Error"),
wxOK | wxCENTRE | wxICON_ERROR);
msgDialog.ShowModal();
return;
}
if(!m_textCtrlTimeStep->GetValue().ToDouble(&timeStep)) {
wxMessageDialog msgDialog(this, _("Value entered incorrectly in the field \"Time step\"."), _("Error"),
wxOK | wxCENTRE | wxICON_ERROR);
msgDialog.ShowModal();
return;
}
if(!m_textCtrlSimTime->GetValue().ToDouble(&simTime)) {
wxMessageDialog msgDialog(this, _("Value entered incorrectly in the field \"Simulation time\"."), _("Error"),
wxOK | wxCENTRE | wxICON_ERROR);
msgDialog.ShowModal();
return;
}
*m_inputType = inputType;
*m_startTime = startTime;
*m_slope = slope;
*m_timeStep = timeStep;
*m_simTime = simTime;
EndModal(wxID_OK);
}
|