Index: trunk/GnssCenter/inpedit/keyword.cpp
===================================================================
--- trunk/GnssCenter/inpedit/keyword.cpp	(revision 5104)
+++ trunk/GnssCenter/inpedit/keyword.cpp	(revision 5105)
@@ -163,13 +163,27 @@
   if      (widgetType == "checkbox") {
     QCheckBox* chBox = static_cast<QCheckBox*>(_widget); 
+    if (chBox->isChecked()) {
+      values << "1";
+    }
+    else {
+      values << "0";
+    }
   }
   else if (widgetType == "combobox") {
     QComboBox* cmbBox = static_cast<QComboBox*>(_widget);
+    values << cmbBox->currentText();
   }
   else if (widgetType == "lineedit") {
     t_lineEdit* lineEdit = static_cast<t_lineEdit*>(_widget);
+    values << lineEdit->text();
   }
   else if (widgetType == "radiobutton") {
     QRadioButton* radButt = static_cast<QRadioButton*>(_widget);
+    if (radButt->isChecked()) {
+      values << "1";
+    }
+    else {
+      values << "0";
+    }
   }
   else if (widgetType == "selwin") {
