Changeset 1222 in ntrip for trunk/BNC/bncwindow.cpp
- Timestamp:
- Nov 22, 2008, 2:09:45 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncwindow.cpp
r1218 r1222 125 125 _outPortLineEdit = new QLineEdit(settings.value("outPort").toString()); 126 126 _outPortLineEdit->setMaximumWidth(9*ww); 127 _outUPortLineEdit = new QLineEdit(settings.value("outUPort").toString()); 128 _outUPortLineEdit->setMaximumWidth(9*ww); 127 129 _outEphPortLineEdit = new QLineEdit(settings.value("outEphPort").toString()); 128 130 _outEphPortLineEdit->setMaximumWidth(9*ww); … … 264 266 _outFileLineEdit->setWhatsThis(tr("Specify the full path to a file where synchronized observations are saved in plain ASCII format. Beware that the size of this file can rapidly increase depending on the number of incoming streams.")); 265 267 _outPortLineEdit->setWhatsThis(tr("BNC can produce synchronized observations in binary format on your local host through an IP port. Specify a port number here to activate this function.")); 268 _outPortLineEdit->setWhatsThis(tr("Unsynchronized observations in binary format on your local host through an IP port. Specify a port number here to activate this function.")); 266 269 _outEphPortLineEdit->setWhatsThis(tr("BNC can produce ephemeris data in RINEX ASCII format on your local host through an IP port. Specify a port number here to activate this function.")); 267 270 _corrPortLineEdit->setWhatsThis(tr("BNC can produce Broadcast Ephemeris Corrections on your local host through an IP port. Specify a port number here to activate this function.")); … … 345 348 sLayout->addWidget(new QLabel("Port"), 0, 0); 346 349 sLayout->addWidget(_outPortLineEdit, 0, 1); 350 sLayout->addWidget(new QLabel("Port (Unsynchronized)"), 0, 2); 351 sLayout->addWidget(_outUPortLineEdit, 0, 3); 347 352 sLayout->addWidget(new QLabel("Wait for full epoch"), 1, 0); 348 353 sLayout->addWidget(_waitTimeSpinBox, 1, 1); 349 354 sLayout->addWidget(new QLabel("File (full path)"), 2, 0); 350 sLayout->addWidget(_outFileLineEdit, 2, 1 );355 sLayout->addWidget(_outFileLineEdit, 2, 1, 1, 3); 351 356 sLayout->addWidget(new QLabel("Sampling"), 3, 0, Qt::AlignLeft); 352 357 sLayout->addWidget(_binSamplSpinBox, 3, 1, Qt::AlignLeft); 353 sLayout->addWidget(new QLabel("Output synchronized observations epoch by epoch."),4,0,1, 2,Qt::AlignLeft);358 sLayout->addWidget(new QLabel("Output synchronized observations epoch by epoch."),4,0,1,4,Qt::AlignLeft); 354 359 sLayout->addWidget(new QLabel(" "),5,0); 355 360 sLayout->addWidget(new QLabel(" "),6,0); … … 634 639 settings.setValue("perfIntr", _perfIntrComboBox->currentText()); 635 640 settings.setValue("outPort", _outPortLineEdit->text()); 641 settings.setValue("outUPort", _outUPortLineEdit->text()); 636 642 settings.setValue("outEphPort", _outEphPortLineEdit->text()); 637 643 settings.setValue("corrPort", _corrPortLineEdit->text());
Note:
See TracChangeset
for help on using the changeset viewer.