source: ntrip/trunk/GnssCenter/inpedit/keyword.cpp@ 5105

Last change on this file since 5105 was 5105, checked in by mervart, 11 years ago
File size: 5.2 KB
RevLine 
[4823]1
2/* -------------------------------------------------------------------------
3 * RTNet GUI
4 * -------------------------------------------------------------------------
5 *
[4856]6 * Class: t_keyword
[4823]7 *
8 * Purpose: Keyword in RTNet Input File
9 *
10 * Author: L. Mervart
11 *
12 * Created: 05-Jan-2013
13 *
14 * Changes:
15 *
16 * -----------------------------------------------------------------------*/
17
[4866]18#include "keyword.h"
[4878]19#include "lineedit.h"
20#include "selwin.h"
21#include "uniline.h"
[4823]22
23using namespace std;
[5000]24using namespace GnssCenter;
[4823]25
26// Constructor
27////////////////////////////////////////////////////////////////////////////
[5097]28t_keyword::t_keyword(QString line, QTextStream& inStream, QStringList& staticLines) {
[4824]29
30 _ok = false;
[4867]31 _widget = 0; // do not delete (it is owned by layout)
[4824]32
[4867]33 int numVal = 0;
[4824]34 QTextStream in(line.toAscii(), QIODevice::ReadOnly);
[4867]35 in >> _name >> numVal;
[4824]36
[5097]37 staticLines << _name;
38
[4824]39 if (!_name.isEmpty()) {
40 _ok = true;
41
[4867]42 if (numVal == 1) {
[5101]43 _origValues.append(in.readLine().trimmed());
[4824]44 }
[4867]45 else if (numVal > 1) {
46 for (int ii = 0; ii < numVal; ii++) {
[5101]47 _origValues.append(inStream.readLine().trimmed());
[4824]48 }
49 }
50
51 while (inStream.status() == QTextStream::Ok && !inStream.atEnd()) {
[5098]52 line = inStream.readLine();
[5097]53 staticLines << line;
[5098]54 line = line.trimmed();
[4824]55 if (line.isEmpty()) {
56 break;
57 }
58 else if (line[0] == '#') {
[4867]59 int pos = 0;
60 while (true) {
61 QRegExp rx("([^#;]*)\\s+=\\s+([^#;]*)");
62 pos = rx.indexIn(line, pos);
63 if (pos == -1) {
64 break;
65 }
66 else {
[4869]67 pos += rx.matchedLength();
[4867]68 }
69 QString descKey = rx.cap(1).trimmed();
70 QString descVal = rx.cap(2).trimmed();
[5091]71 _desc[descKey] = descVal;
[4867]72 }
[4824]73 }
74 }
[4875]75
76 // Remove leading and trailing double-quotes
77 // -----------------------------------------
[5101]78 _origValues.replaceInStrings(QRegExp("^\\s*\"|\"\\s*$"), QString());
[4824]79 }
[4823]80}
81
82// Destructor
83////////////////////////////////////////////////////////////////////////////
[4856]84t_keyword::~t_keyword() {
[4823]85}
[4874]86
87// Create Widget (it will be owned by layout)
88////////////////////////////////////////////////////////////////////////////
[4882]89QWidget* t_keyword::createWidget(const QString& fldMask) {
[4874]90
91 if (_widget != 0) {
92 // TODO: exception
93 }
94
[5092]95 QString widgetType = _desc.value("widget");
96
97 if (widgetType == "checkbox") {
[5091]98 QCheckBox* chBox = new QCheckBox();
[5101]99 if (_origValues.size() && _origValues[0] == "1") {
[5091]100 chBox->setChecked(true);
101 }
102 _widget = chBox;
[4874]103 }
[5092]104 else if (widgetType == "combobox") {
[5091]105 QComboBox* cmbBox = new QComboBox();
[5093]106 cmbBox->addItems(_desc.value("cards").split(QRegExp("\\s"), QString::SkipEmptyParts));
[5101]107 if (_origValues.size()) {
108 int index = cmbBox->findText(_origValues[0]);
[5093]109 if (index != -1) {
110 cmbBox->setCurrentIndex(index);
111 }
112 }
[5091]113 _widget = cmbBox;
[4874]114 }
[5092]115 else if (widgetType == "lineedit") {
[4878]116 t_lineEdit* lineEdit = new t_lineEdit();
[5101]117 if (_origValues.size()) {
118 lineEdit->setText(_origValues[0]);
[4875]119 }
120 _widget = lineEdit;
[4874]121 }
[5092]122 else if (widgetType == "radiobutton") {
[5094]123 QRadioButton* radButt = new QRadioButton();
[5101]124 if (_origValues.size() && _origValues[0] == "1") {
[5094]125 radButt->setChecked(true);
126 }
127 _widget = radButt;
[4874]128 }
[5092]129 else if (widgetType == "selwin") {
[5096]130 t_selWin* selWin = new t_selWin();
[5101]131 if (_origValues.size()) {
132 selWin->setFileName(_origValues[0]);
[5096]133 }
134 _widget = selWin;
[4874]135 }
[5092]136 else if (widgetType == "spinbox") {
[5095]137 QSpinBox* spinBox = new QSpinBox();
138 QStringList rangeStr = _desc.value("range").split(QRegExp("\\s"), QString::SkipEmptyParts);
139 if (rangeStr.size() >= 1) spinBox->setMinimum(rangeStr[0].toInt());
140 if (rangeStr.size() >= 2) spinBox->setMaximum(rangeStr[1].toInt());
141 if (rangeStr.size() >= 3) spinBox->setSingleStep(rangeStr[2].toInt());
142 _widget = spinBox;
[4874]143 }
[5092]144 else if (widgetType == "uniline") {
[4882]145 _widget = new t_uniLine(fldMask, this);
[4874]146 }
147
148 return _widget;
149}
[5102]150
151//
152////////////////////////////////////////////////////////////////////////////
153QStringList t_keyword::values() const {
[5104]154
155 QStringList values;
156
157 if (_widget == 0) {
158 // TODO: exception
159 }
160
161 QString widgetType = _desc.value("widget");
162
163 if (widgetType == "checkbox") {
164 QCheckBox* chBox = static_cast<QCheckBox*>(_widget);
[5105]165 if (chBox->isChecked()) {
166 values << "1";
167 }
168 else {
169 values << "0";
170 }
[5104]171 }
172 else if (widgetType == "combobox") {
173 QComboBox* cmbBox = static_cast<QComboBox*>(_widget);
[5105]174 values << cmbBox->currentText();
[5104]175 }
176 else if (widgetType == "lineedit") {
177 t_lineEdit* lineEdit = static_cast<t_lineEdit*>(_widget);
[5105]178 values << lineEdit->text();
[5104]179 }
180 else if (widgetType == "radiobutton") {
181 QRadioButton* radButt = static_cast<QRadioButton*>(_widget);
[5105]182 if (radButt->isChecked()) {
183 values << "1";
184 }
185 else {
186 values << "0";
187 }
[5104]188 }
189 else if (widgetType == "selwin") {
190 t_selWin* selWin = static_cast<t_selWin*>(_widget);
191 }
192 else if (widgetType == "spinbox") {
193 QSpinBox* spinBox = static_cast<QSpinBox*>(_widget);
194 }
195 else if (widgetType == "uniline") {
196 t_uniLine* uniLine = static_cast<t_uniLine*>(_widget);
197 }
198
199 return values;
[5102]200}
201
Note: See TracBrowser for help on using the repository browser.