Changeset 586 in ntrip for trunk/BNC/bncwindow.cpp
- Timestamp:
- Nov 24, 2007, 8:30:37 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncwindow.cpp
r584 r586 149 149 _outPortLineEdit->setMaximumWidth(9*ww); 150 150 _outPortLineEdit->setWhatsThis(tr("<p>BNC makes synchronized observations available in a binary format on your local host (IP 127.0.0.1) through an IP port. Enter an IP port number to activate this function.</p><p>Default is an empty option field, meaning that no binary output is generated.</p>")); 151 _outPortEphLineEdit = new QLineEdit(settings.value("outEphPort").toString()); 152 _outPortEphLineEdit->setMaximumWidth(9*ww); 153 _outPortEphLineEdit->setWhatsThis(tr("<p>BNC makes broadcast ephemeris available in ASCII format on your local host through an IP port</p>")); 151 154 _rnxPathLineEdit = new QLineEdit(settings.value("rnxPath").toString()); 152 155 _rnxPathLineEdit->setWhatsThis(tr("<p>Observations can be converted to RINEX. Enter a path for saving the RINEX files in a directory. If this directory does not exist, BNC will not create RINEX files.</p><p>Default value for 'RINEX directory' is an empty option field, meaning that streams are not converted to RINEX.</p>")); … … 284 287 layout->addWidget(_outFileLineEdit, 2, 2, 1, 3); 285 288 286 layout->addWidget(new QLabel("Port for binary output"), 3, 0, 1, 2); 287 layout->addWidget(_outPortLineEdit, 3, 2); 289 layout->addWidget(new QLabel("Port for output"), 3, 0, 1, 2); 290 QBoxLayout* bl1 = new QBoxLayout(QBoxLayout::LeftToRight); 291 bl1->addWidget(_outPortLineEdit); 292 bl1->addWidget(new QLabel("Observation (binary)")); 293 bl1->addStretch(); 294 bl1->addWidget(_outPortEphLineEdit); 295 bl1->addWidget(new QLabel("Ephemeris (ascii)")); 296 layout->addLayout(bl1, 3, 2, 1, 2); 288 297 289 298 layout->addWidget(new QLabel("RINEX directory"), 4, 0, 1, 2); … … 456 465 settings.setValue("outFile", _outFileLineEdit->text()); 457 466 settings.setValue("outPort", _outPortLineEdit->text()); 467 settings.setValue("outEphPort", _outPortEphLineEdit->text()); 458 468 settings.setValue("rnxPath", _rnxPathLineEdit->text()); 459 469 settings.setValue("ephPath", _ephPathLineEdit->text());
Note:
See TracChangeset
for help on using the changeset viewer.