Changeset 6662 in ntrip
- Timestamp:
- Mar 14, 2015, 1:01:19 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncwindow.cpp
r6661 r6662 643 643 gLayout->addWidget(new QLabel("General settings for logfile, file handling, configuration on-the-fly, and auto-start."),0, 0, 1, 50); 644 644 gLayout->addWidget(new QLabel("Logfile (full path)"), 1, 0); 645 gLayout->addWidget(_logFileLineEdit, 1, 1, 1, 30);645 gLayout->addWidget(_logFileLineEdit, 1, 1, 1,20); 646 646 gLayout->addWidget(new QLabel("Append files"), 2, 0); 647 647 gLayout->addWidget(_rnxAppendCheckBox, 2, 1); … … 651 651 gLayout->addWidget(_autoStartCheckBox, 4, 1); 652 652 gLayout->addWidget(new QLabel("Raw output file (full path)"), 5, 0); 653 gLayout->addWidget(_rawOutFileLineEdit, 5, 1, 1, 30);653 gLayout->addWidget(_rawOutFileLineEdit, 5, 1, 1,20); 654 654 gLayout->addWidget(new QLabel(""), 6, 1); 655 655 gLayout->setRowStretch(7, 999); … … 666 666 oLayout->addWidget(new QLabel("Saving RINEX observation files."),0, 0, 1,50); 667 667 oLayout->addWidget(new QLabel("Directory"), 1, 0); 668 oLayout->addWidget(_rnxPathLineEdit, 1, 1, 1, 20);668 oLayout->addWidget(_rnxPathLineEdit, 1, 1, 1, 15); 669 669 oLayout->addWidget(new QLabel("Interval"), 2, 0); 670 670 oLayout->addWidget(_rnxIntrComboBox, 2, 1); … … 674 674 oLayout->addWidget(_rnxSkelLineEdit, 3, 1, Qt::AlignLeft); 675 675 oLayout->addWidget(new QLabel("Script (full path)"), 4, 0); 676 oLayout->addWidget(_rnxScrpLineEdit, 4, 1, 1, 20);676 oLayout->addWidget(_rnxScrpLineEdit, 4, 1, 1, 15); 677 677 oLayout->addWidget(new QLabel("Version 2"), 5, 0); 678 678 oLayout->addWidget(_rnxV2Priority, 5, 1, 1, 2); … … 715 715 cLayout->addWidget(new QLabel("Saving Broadcast Ephemeris correction files and correction output through IP port."),0,0,1,70); 716 716 cLayout->addWidget(new QLabel("Directory, ASCII"), 1, 0); 717 cLayout->addWidget(_corrPathLineEdit, 1, 1, 1, 20);717 cLayout->addWidget(_corrPathLineEdit, 1, 1, 1,30); 718 718 cLayout->addWidget(new QLabel("Interval"), 2, 0); 719 719 cLayout->addWidget(_corrIntrComboBox, 2, 1); … … 741 741 sLayout->addWidget(_binSamplSpinBox, 2, 1, Qt::AlignLeft); 742 742 sLayout->addWidget(new QLabel("File (full path)"), 3, 0); 743 sLayout->addWidget(_outFileLineEdit, 3, 1, 1, 20);743 sLayout->addWidget(_outFileLineEdit, 3, 1, 1, 10); 744 744 sLayout->addWidget(new QLabel("Port (unsynchronized)"), 4, 0); 745 745 sLayout->addWidget(_outUPortLineEdit, 4, 1); … … 862 862 pppLayout1->addWidget(_pppWidgets._logFile, ir, 4); 863 863 ++ir; 864 pppLayout1->addWidget(new QLabel("ANTEX "),ir, 0);864 pppLayout1->addWidget(new QLabel("ANTEX file"), ir, 0); 865 865 pppLayout1->addWidget(_pppWidgets._antexFile, ir, 1); 866 866 … … 874 874 pppLayout1->addWidget(new QLabel(" Sampling"), ir, 5); 875 875 pppLayout1->addWidget(_pppWidgets._snxtroSampl, ir, 6); 876 876 pppLayout1->addWidget(new QLabel(""), ir, 7); 877 ++ir; 877 878 ++ir; 878 879 pppLayout1->setRowStretch(ir, 999); … … 1064 1065 _sp3CompFileChooser->setWhatsThis(tr("Specify the full path to two files with orbits and clocks in SP3 format, separate them by comma.")); 1065 1066 _sp3CompFileChooser->setMinimumWidth(15*ww); 1066 _sp3CompFileChooser->setMaximumWidth( 50*ww);1067 _sp3CompFileChooser->setMaximumWidth(40*ww); 1067 1068 1068 1069 _sp3CompExclude = new QLineEdit(settings.value("sp3CompExclude").toString()); … … 1105 1106 1106 1107 populateCmbTable(); 1107 cmbLayout->addWidget(_cmbTable, 0, 0, 6, 3); 1108 cmbLayout->addWidget(new QLabel(" "), 0, 5); 1109 cmbLayout->addWidget(new QLabel("Combine Broadcast Correction streams."), 0, 6, 1, 10); 1110 cmbLayout->addWidget(new QLabel(" "), 1, 5); 1111 cmbLayout->addWidget(addCmbRowButton, 1, 6); 1112 cmbLayout->addWidget(delCmbRowButton, 1, 7); 1113 cmbLayout->addWidget(new QLabel(" "), 2, 5); 1114 cmbLayout->addWidget(new QLabel("Method"), 2, 6, Qt::AlignRight); 1115 cmbLayout->addWidget(_cmbMethodComboBox, 2, 7, Qt::AlignRight); 1116 cmbLayout->addWidget(new QLabel(" "), 3, 5); 1117 cmbLayout->addWidget(new QLabel("Maximal residuum"), 3, 6, Qt::AlignRight); 1118 cmbLayout->addWidget(_cmbMaxresLineEdit, 3, 7, Qt::AlignRight); 1119 cmbLayout->addWidget(new QLabel("ANTEX"), 3, 9, Qt::AlignRight); 1120 cmbLayout->addWidget(_cmbAntexFile, 3, 10); 1121 cmbLayout->addWidget(new QLabel(" "), 4, 5); 1122 cmbLayout->addWidget(new QLabel("Sampling"), 4, 6, Qt::AlignRight); 1123 cmbLayout->addWidget(_cmbSamplSpinBox, 4, 7, Qt::AlignRight); 1124 cmbLayout->addWidget(new QLabel("Use Glonass"), 4, 9, Qt::AlignRight); 1125 cmbLayout->addWidget(_cmbUseGlonass, 4, 10); 1126 cmbLayout->addWidget(new QLabel(" "), 5, 0); 1108 cmbLayout->addWidget(_cmbTable, 0, 0, 7, 3); 1109 cmbLayout->addWidget(new QLabel(" Combine Broadcast Correction streams."), 1, 6, 1, 10); 1110 cmbLayout->addWidget(addCmbRowButton, 2, 6); 1111 cmbLayout->addWidget(delCmbRowButton, 2, 7); 1112 cmbLayout->addWidget(new QLabel("Method"), 3, 6, Qt::AlignRight); 1113 cmbLayout->addWidget(_cmbMethodComboBox, 3, 7, Qt::AlignRight); 1114 cmbLayout->addWidget(new QLabel(" Maximal residuum"), 4, 6, Qt::AlignRight); 1115 cmbLayout->addWidget(_cmbMaxresLineEdit, 4, 7, Qt::AlignRight); 1116 cmbLayout->addWidget(new QLabel("ANTEX file"), 4, 8, Qt::AlignRight); 1117 cmbLayout->addWidget(_cmbAntexFile, 4, 9, 1, 7); 1118 cmbLayout->addWidget(new QLabel("Sampling"), 5, 6, Qt::AlignRight); 1119 cmbLayout->addWidget(_cmbSamplSpinBox, 5, 7, Qt::AlignRight); 1120 cmbLayout->addWidget(new QLabel(" Use GLONASS"), 5, 8, Qt::AlignRight); 1121 cmbLayout->addWidget(_cmbUseGlonass, 5, 9); 1122 cmbLayout->setRowStretch(6, 999); 1127 1123 1128 1124 connect(addCmbRowButton, SIGNAL(clicked()), this, SLOT(slotAddCmbRow())); … … 1182 1178 uploadLayoutEph->addWidget(new QLabel("Uploaded"), 4, 0); 1183 1179 uploadLayoutEph->addWidget(_uploadEphBytesCounter, 4, 1); 1184 uploadLayoutEph->addWidget(new QLabel(" "), 5, 0); 1185 uploadLayoutEph->addWidget(new QLabel(" "), 6, 0); 1180 uploadLayoutEph->setRowStretch(5, 999); 1186 1181 1187 1182 uploadEphgroup->setLayout(uploadLayoutEph); … … 1281 1276 _actStart->setWhatsThis(tr("<p> Start running BNC.</p>")); 1282 1277 _actStop->setWhatsThis(tr("<p> Stop running BNC.</p>")); 1283 // Weber1284 1278 1285 1279 // Enable/Disable all Widgets
Note:
See TracChangeset
for help on using the changeset viewer.