Changeset 586 in ntrip


Ignore:
Timestamp:
Nov 24, 2007, 8:30:37 PM (16 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r584 r586  
    149149  _outPortLineEdit->setMaximumWidth(9*ww);
    150150  _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>"));
    151154  _rnxPathLineEdit    = new QLineEdit(settings.value("rnxPath").toString());
    152155  _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>"));
     
    284287  layout->addWidget(_outFileLineEdit,                            2, 2, 1, 3);
    285288
    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);
    288297
    289298  layout->addWidget(new QLabel("RINEX directory"),               4, 0, 1, 2);
     
    456465  settings.setValue("outFile",     _outFileLineEdit->text());
    457466  settings.setValue("outPort",     _outPortLineEdit->text());
     467  settings.setValue("outEphPort",  _outPortEphLineEdit->text());
    458468  settings.setValue("rnxPath",     _rnxPathLineEdit->text());
    459469  settings.setValue("ephPath",     _ephPathLineEdit->text());
  • trunk/BNC/bncwindow.h

    r560 r586  
    7979    QLineEdit* _outFileLineEdit;
    8080    QLineEdit* _outPortLineEdit;
     81    QLineEdit* _outPortEphLineEdit;
    8182    QLineEdit* _rnxPathLineEdit;
    8283    QLineEdit* _ephPathLineEdit;
Note: See TracChangeset for help on using the changeset viewer.