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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
#include "SerialisableWidgets.h"
#include "string/convert.h"
#include "itextstream.h"
namespace wxutil
{
// Text entry
SerialisableTextEntry::SerialisableTextEntry(wxWindow* parent) :
wxTextCtrl(parent, wxID_ANY)
{}
void SerialisableTextEntry::importFromString(const std::string& str)
{
SetValue(str);
}
std::string SerialisableTextEntry::exportToString() const
{
return GetValue().ToStdString();
}
SerialisableTextEntryWrapper::SerialisableTextEntryWrapper(wxTextCtrl* entry) :
_entry(entry)
{}
void SerialisableTextEntryWrapper::importFromString(const std::string& str)
{
_entry->SetValue(str);
}
std::string SerialisableTextEntryWrapper::exportToString() const
{
return _entry->GetValue().ToStdString();
}
// Spin button
SerialisableSpinButton::SerialisableSpinButton(wxWindow* parent,
double value, double min, double max, double step, unsigned int digits) :
wxSpinCtrlDouble(parent, wxID_ANY)
{
SetRange(min, max);
SetValue(value);
SetIncrement(step);
SetDigits(digits);
}
void SerialisableSpinButton::importFromString(const std::string& str)
{
SetValue(string::convert<double>(str));
}
std::string SerialisableSpinButton::exportToString() const
{
return string::to_string(GetValue());
}
SerialisableSpinButtonWrapper::SerialisableSpinButtonWrapper(wxSpinCtrlDouble* spin) :
_spin(spin)
{}
void SerialisableSpinButtonWrapper::importFromString(const std::string& str)
{
_spin->SetValue(string::convert<double>(str));
}
std::string SerialisableSpinButtonWrapper::exportToString() const
{
return string::to_string(_spin->GetValue());
}
// Toggle button
SerialisableToggleButton::SerialisableToggleButton(wxWindow* parent) :
wxToggleButton(parent, wxID_ANY, "")
{}
SerialisableToggleButton::SerialisableToggleButton(wxWindow* parent, const std::string& label) :
wxToggleButton(parent, wxID_ANY, label)
{}
void SerialisableToggleButton::importFromString(const std::string& str)
{
SetValue(str == "1");
}
std::string SerialisableToggleButton::exportToString() const
{
return GetValue() ? "1" : "0";
}
SerialisableToggleButtonWrapper::SerialisableToggleButtonWrapper(wxToggleButton* button) :
_button(button)
{}
void SerialisableToggleButtonWrapper::importFromString(const std::string& str)
{
_button->SetValue(str == "1");
}
std::string SerialisableToggleButtonWrapper::exportToString() const
{
return _button->GetValue() ? "1" : "0";
}
// Check Button
SerialisableCheckButton::SerialisableCheckButton(wxWindow* parent) :
wxCheckBox(parent, wxID_ANY, "")
{}
SerialisableCheckButton::SerialisableCheckButton(wxWindow* parent, const std::string& label) :
wxCheckBox(parent, wxID_ANY, label)
{}
void SerialisableCheckButton::importFromString(const std::string& str)
{
SetValue(str == "1");
}
std::string SerialisableCheckButton::exportToString() const
{
return GetValue() ? "1" : "0";
}
SerialisableCheckButtonWrapper::SerialisableCheckButtonWrapper(wxCheckBox* button) :
_button(button)
{}
void SerialisableCheckButtonWrapper::importFromString(const std::string& str)
{
_button->SetValue(str == "1");
}
std::string SerialisableCheckButtonWrapper::exportToString() const
{
return _button->GetValue() ? "1" : "0";
}
// SerialisableComboBox_Index
SerialisableComboBox_Index::SerialisableComboBox_Index(wxWindow* parent) :
SerialisableComboBox(parent)
{}
void SerialisableComboBox_Index::importFromString(const std::string& str)
{
int activeId = string::convert<int>(str);
SetSelection(activeId);
int newId = GetSelection();
if (activeId != newId)
{
rConsoleError() << "SerialisableComboBox_Index::importFromString(): "
<< "warning: requested index " << activeId
<< " was not set, current index is " << newId << std::endl;
}
}
std::string SerialisableComboBox_Index::exportToString() const
{
return string::to_string(GetSelection());
}
SerialisableComboBox_IndexWrapper::SerialisableComboBox_IndexWrapper(wxChoice* combo) :
_combo(combo)
{}
void SerialisableComboBox_IndexWrapper::importFromString(const std::string& str)
{
int activeId = string::convert<int>(str);
_combo->SetSelection(activeId);
int newId = _combo->GetSelection();
if (activeId != newId)
{
rConsoleError() << "SerialisableComboBox_Index::importFromString(): "
<< "warning: requested index " << activeId
<< " was not set, current index is " << newId << std::endl;
}
}
std::string SerialisableComboBox_IndexWrapper::exportToString() const
{
return string::to_string(_combo->GetSelection());
}
// SerialisableComboBox_Text
SerialisableComboBox_Text::SerialisableComboBox_Text(wxWindow* parent) :
SerialisableComboBox(parent)
{}
void SerialisableComboBox_Text::importFromString(const std::string& str)
{
SetSelection(FindString(str));
}
std::string SerialisableComboBox_Text::exportToString() const
{
return GetString(GetSelection()).ToStdString();
}
SerialisableComboBox_TextWrapper::SerialisableComboBox_TextWrapper(wxChoice* combo) :
_combo(combo)
{}
void SerialisableComboBox_TextWrapper::importFromString(const std::string& str)
{
_combo->SetSelection(_combo->FindString(str));
}
std::string SerialisableComboBox_TextWrapper::exportToString() const
{
return _combo->GetString(_combo->GetSelection()).ToStdString();
}
} // namespace
|