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

Last change on this file since 5098 was 5098, checked in by mervart, 11 years ago
File size: 4.0 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) {
43 _values.append(in.readLine().trimmed());
[4824]44 }
[4867]45 else if (numVal > 1) {
46 for (int ii = 0; ii < numVal; ii++) {
47 _values.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 // -----------------------------------------
[4881]78 _values.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();
99 if (_values.size() && _values[0] == "1") {
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));
107 if (_values.size()) {
108 int index = cmbBox->findText(_values[0]);
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();
[4875]117 if (_values.size()) {
118 lineEdit->setText(_values[0]);
119 }
120 _widget = lineEdit;
[4874]121 }
[5092]122 else if (widgetType == "radiobutton") {
[5094]123 QRadioButton* radButt = new QRadioButton();
124 if (_values.size() && _values[0] == "1") {
125 radButt->setChecked(true);
126 }
127 _widget = radButt;
[4874]128 }
[5092]129 else if (widgetType == "selwin") {
[5096]130 t_selWin* selWin = new t_selWin();
131 if (_values.size()) {
132 selWin->setFileName(_values[0]);
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}
Note: See TracBrowser for help on using the repository browser.