Changeset 533 in ntrip for trunk/BNC/bncwindow.cpp


Ignore:
Timestamp:
Oct 20, 2007, 2:32:15 PM (17 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r476 r533  
    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>"));
    151151  _rnxPathLineEdit    = new QLineEdit(settings.value("rnxPath").toString());
    152 _rnxPathLineEdit->setWhatsThis(tr("<p>Observations can be converted to RINEX Version 2.11. 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>"));
     152  _rnxPathLineEdit->setWhatsThis(tr("<p>Observations can be converted to RINEX Version 2.11. 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>"));
     153  _ephPathLineEdit    = new QLineEdit(settings.value("ephPath").toString());
     154  _ephPathLineEdit->setWhatsThis(tr("<p>Navigation messages can be converted to RINEX files. Enter a path for saving the files in a directory.</p>"));
     155  _rnxV3CheckBox = new QCheckBox();
     156  _rnxV3CheckBox->setCheckState(Qt::CheckState(settings.value("rnxV3").toInt()));
     157  _ephV3CheckBox = new QCheckBox();
     158  _ephV3CheckBox->setCheckState(Qt::CheckState(settings.value("ephV3").toInt()));
    153159  _rnxScrpLineEdit    = new QLineEdit(settings.value("rnxScript").toString());
    154 _rnxScrpLineEdit->setWhatsThis(tr("<p>Whenever a RINEX file is saved, you may like to compress, copy or upload it immediately via FTP. For that you enter the full path of a script or batch file which is then called to carry out these operations. The full RINEX file path will be passed to the script as a command line parameter (%1 on Windows systems, $1 on Unix/Linux systems).</p><p>The triggering event for calling the script or batch file is the end of the 'RINEX file interval'. If that is superposed by a stream outage, the triggering event is the stream reconnect.</p><p>Default value for 'RINEX script' is an empty option field, meaning that no script or batch file shall be called."));
     160  _rnxScrpLineEdit->setWhatsThis(tr("<p>Whenever a RINEX file is saved, you may like to compress, copy or upload it immediately via FTP. For that you enter the full path of a script or batch file which is then called to carry out these operations. The full RINEX file path will be passed to the script as a command line parameter (%1 on Windows systems, $1 on Unix/Linux systems).</p><p>The triggering event for calling the script or batch file is the end of the 'RINEX file interval'. If that is superposed by a stream outage, the triggering event is the stream reconnect.</p><p>Default value for 'RINEX script' is an empty option field, meaning that no script or batch file shall be called."));
    155161  _rnxSkelLineEdit    = new QLineEdit(settings.value("rnxSkel").toString());
    156162  _rnxSkelLineEdit->setMaximumWidth(5*ww);
     
    272278
    273279  layout->addWidget(new QLabel("RINEX directory"),               4, 0, 1, 2);
    274   layout->addWidget(_rnxPathLineEdit,                            4, 2, 1, 3);
     280  layout->addWidget(_rnxPathLineEdit,                            4, 2);
     281
     282  layout->addWidget(new QLabel("RINEX v3"),                      4, 3, 1, 2);
     283  layout->addWidget(_rnxV3CheckBox,                              4, 4);
    275284
    276285  layout->addWidget(new QLabel("RINEX script (full path)"),      5, 0, 1, 2);
     
    288297  layout->addWidget(_rnxAppendCheckBox,                          7, 4);
    289298
    290   layout->addWidget(new QLabel("Mountpoints"),                   8, 0, 1, 2);
    291 
    292   layout->addWidget(_mountPointsTable,                           9, 0, 1, 5);
    293 
    294   layout->addWidget(new QLabel("Log (full path)"),              10, 0, 1, 2);
    295   layout->addWidget(_logFileLineEdit,                           10, 2, 1, 3);
    296   layout->addWidget(_log,                                       11, 0, 1, 5);
     299  layout->addWidget(new QLabel("Ephemeris directory"),           8, 0, 1, 2);
     300  layout->addWidget(_ephPathLineEdit,                            8, 2);
     301
     302  layout->addWidget(new QLabel("RINEX v3"),                      8, 3, 1, 2);
     303  layout->addWidget(_ephV3CheckBox,                              8, 4);
     304
     305  layout->addWidget(new QLabel("Mountpoints"),                   9, 0, 1, 2);
     306
     307  layout->addWidget(_mountPointsTable,                          10, 0, 1, 5);
     308
     309  layout->addWidget(new QLabel("Log (full path)"),              11, 0, 1, 2);
     310  layout->addWidget(_logFileLineEdit,                           11, 2, 1, 3);
     311  layout->addWidget(_log,                                       12, 0, 1, 5);
    297312}
    298313
     
    423438  settings.setValue("outPort",     _outPortLineEdit->text());
    424439  settings.setValue("rnxPath",     _rnxPathLineEdit->text());
     440  settings.setValue("ephPath",     _ephPathLineEdit->text());
    425441  settings.setValue("rnxScript",   _rnxScrpLineEdit->text());
    426442  settings.setValue("rnxIntr",     _rnxIntrComboBox->currentText());
     
    428444  settings.setValue("rnxSkel",     _rnxSkelLineEdit->text());
    429445  settings.setValue("rnxAppend",   _rnxAppendCheckBox->checkState());
     446  settings.setValue("rnxV3",       _rnxV3CheckBox->checkState());
     447  settings.setValue("ephV3",       _ephV3CheckBox->checkState());
    430448  settings.setValue("logFile",     _logFileLineEdit->text());
    431449 
Note: See TracChangeset for help on using the changeset viewer.