Changeset 1089 in ntrip for trunk/BNS/bnswindow.cpp


Ignore:
Timestamp:
Sep 2, 2008, 1:29:07 AM (16 years ago)
Author:
weber
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNS/bnswindow.cpp

    r1085 r1089  
    160160  _ephPortLineEdit->setWhatsThis(tr("BNS reads Broadcast Ephemeris in RINEX Version 3 Navigation file format from an IP address. Specify the IP port e.g. of a BNC installation providing this information."));
    161161  _ephPortLineEdit->setMaximumWidth(9*ww);
     162  _ephEchoLineEdit  = new QLineEdit(settings.value("ephEcho").toString());
     163  _ephEchoLineEdit->setWhatsThis(tr("Specify the full path to a file where incoming Broadcast Ephemeris are saved. Beware that the size of this file can rapidly increase. Default is an empty option field meaning that incoming Broadcast Ephemeris are not saved."));
    162164
    163165  _clkPortLineEdit  = new QLineEdit(settings.value("clkPort").toString());
     
    294296  layout_eph->addWidget(new QLabel("Port"),                   1, 0);
    295297  layout_eph->addWidget(_ephPortLineEdit,                     1, 1);
    296   layout_eph->addWidget(new QLabel("Read broadcast ephemeris."), 2, 0, 1, 2, Qt::AlignLeft);
    297   layout_eph->addWidget(new QLabel(""),                       3, 0);
     298  layout_eph->addWidget(new QLabel("Save (full path)"),       2, 0);
     299  layout_eph->addWidget(_ephEchoLineEdit,                     2, 1);
     300  layout_eph->addWidget(new QLabel("Read broadcast ephemeris."), 3, 0, 1, 2, Qt::AlignLeft);
     301  layout_eph->addWidget(new QLabel(""),                       4, 0);
    298302
    299303  tab_eph->setLayout(layout_eph);
     
    535539  settings.setValue("ephHost",    _ephHostLineEdit->text());
    536540  settings.setValue("ephPort",    _ephPortLineEdit->text());
     541  settings.setValue("ephEcho",    _ephEchoLineEdit->text());
    537542  settings.setValue("clkPort",    _clkPortLineEdit->text());
    538543  settings.setValue("outHost",    _outHostLineEdit->text());
Note: See TracChangeset for help on using the changeset viewer.