- Timestamp:
- Feb 23, 2014, 10:25:13 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncwindow.cpp
r5574 r5644 361 361 // --------------------- 362 362 _miscMountLineEdit = new QLineEdit(settings.value("miscMount").toString()); 363 _miscPortLineEdit = new QLineEdit(settings.value("miscPort").toString()); 363 364 _perfIntrComboBox = new QComboBox(); 364 365 _perfIntrComboBox->setEditable(false); … … 878 879 rLayout->setColumnMinimumWidth(0,14*ww); 879 880 _perfIntrComboBox->setMaximumWidth(9*ww); 881 _miscPortLineEdit->setMaximumWidth(9*ww); 880 882 881 883 rLayout->addWidget(new QLabel("Log latencies or scan RTCM streams for numbers of message types and antenna information."),0, 0,1,30); … … 886 888 rLayout->addWidget(new QLabel("Scan RTCM"), 3, 0); 887 889 rLayout->addWidget(_scanRTCMCheckBox, 3, 1); 888 rLayout->addWidget(new QLabel(" "), 4, 0); 890 rLayout->addWidget(new QLabel("Port"), 4, 0); 891 rLayout->addWidget(_miscPortLineEdit, 4, 1); 889 892 rLayout->addWidget(new QLabel(" "), 5, 0); 890 893 rLayout->addWidget(new QLabel(" "), 6, 0); … … 1438 1441 _rnxV3CheckBox->setWhatsThis(tr("The default format for RINEX Observation files is RINEX Version 2. Select 'Version 3' if you want to save the observations in RINEX Version 3 format.")); 1439 1442 _miscMountLineEdit->setWhatsThis(tr("<p>Specify a mountpoint to apply any of the options shown below. Enter 'ALL' if you want to apply these options to all configured streams.</p><p>An empty option field (default) means that you don't want BNC to apply any of these options.</p>")); 1443 _miscPortLineEdit->setWhatsThis(tr("BNC can output an incoming stream on your local host through an IP port. Specify a port number here to activate this function.")); 1440 1444 _scanRTCMCheckBox->setWhatsThis(tr("<p>Tick 'Scan RTCM' to log the numbers of incomming message types as well as contained antenna coordinates, antenna heigt, and antenna descriptor.</p><p>In case of RTCM Version 3 MSM streams, BNC will also log contained RINEX Version 3 observation types.</p>.")); 1441 1445 _serialMountPointLineEdit->setWhatsThis(tr("<p>Enter a 'Mountpoint' to forward the corresponding stream to a serial connected receiver.</p>")); … … 1914 1918 // Miscellaneous 1915 1919 settings.setValue("miscMount", _miscMountLineEdit->text()); 1920 settings.setValue("miscPort", _miscPortLineEdit->text()); 1916 1921 settings.setValue("perfIntr", _perfIntrComboBox->currentText()); 1917 1922 settings.setValue("scanRTCM", _scanRTCMCheckBox->checkState()); … … 2454 2459 enableWidget(enable, _perfIntrComboBox); 2455 2460 enableWidget(enable, _scanRTCMCheckBox); 2461 enableWidget(enable, _miscPortLineEdit); 2456 2462 } 2457 2463
Note:
See TracChangeset
for help on using the changeset viewer.