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


Ignore:
Timestamp:
Nov 6, 2007, 3:02:33 PM (16 years ago)
Author:
weber
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r563 r565  
    6060  setMinimumSize(77*ww, 65*ww);
    6161
    62   setWindowTitle(tr("BKG Ntrip Client (BNC), Version 1.4"));
     62  setWindowTitle(tr("BKG Ntrip Client (BNC), Version 1.5"));
    6363
    6464  // Create Actions
     
    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. 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>"));
    153153  _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>"));
     154  _ephPathLineEdit->setWhatsThis(tr("<p>Ephemeris data from RTCM Version 3 streams can be converted to RINEX. Enter a path for saving the RINEX Navigation files in a directory. If this directory does not exist, BNC will not create RINEX Navigation files.</p><p>Default value for 'Ephemeris directory' is an empty option field, meaning that no RINEX Navigation files will be created.</p>"));
     155
    155156  _rnxV3CheckBox = new QCheckBox();
    156157  _rnxV3CheckBox->setCheckState(Qt::CheckState(settings.value("rnxV3").toInt()));
     
    176177  }
    177178  _ephIntrComboBox    = new QComboBox();
    178   _ephIntrComboBox->setWhatsThis(tr("<p>Select an interval for the ephemeris file generation."));
     179  _ephIntrComboBox->setWhatsThis(tr("<p>Select an interval for the ephemeris file generation.</p><p>Default for 'Ephemeris file interval' is '1 day', meaning that a new Ephemeris file is generated every day.</p>"));
    179180  _ephIntrComboBox->setMaximumWidth(9*ww);
    180181  _ephIntrComboBox->setEditable(false);
     
    291292  layout->addWidget(new QLabel("RINEX v3"),                      4, 3, 1, 2);
    292293  layout->addWidget(_rnxV3CheckBox,                              4, 4);
     294  _rnxV3CheckBox->setWhatsThis(tr("<p>Select the RINEX Observation file output format.</p><p>Default is RINEX Version 2.11 format. Output in RINEX Version 3 (RINEX v3) format is optional.</p>"));
    293295
    294296  layout->addWidget(new QLabel("RINEX script (full path)"),      5, 0, 1, 2);
     
    301303  bl->addWidget(new QLabel("RINEX"));
    302304  bl->addWidget(_ephIntrComboBox);
    303   bl->addWidget(new QLabel("EPH"));
     305  bl->addWidget(new QLabel("Ephemeris"));
    304306  layout->addLayout(bl, 6, 2, 1, 1);
    305307
     
    318320  layout->addWidget(new QLabel("RINEX v3"),                      8, 3, 1, 2);
    319321  layout->addWidget(_ephV3CheckBox,                              8, 4);
     322  _ephV3CheckBox->setWhatsThis(tr("<p>Select the RINEX Ephemeris file output format.</p><p>Default is RINEX Version 2.11 format. Output in RINEX Version 3 (RINEX v3) format is optional.</p>"));
    320323
    321324  layout->addWidget(new QLabel("Mountpoints"),                   9, 0, 1, 2);
     
    612615  img->setPixmap(QPixmap(":ntrip-logo.png"));
    613616  dlgLayout->addWidget(img, 0,0);
    614   dlgLayout->addWidget(new QLabel("BKG NTRIP Client (BNC), Version 1.4"), 0,1);
     617  dlgLayout->addWidget(new QLabel("BKG NTRIP Client (BNC), Version 1.5"), 0,1);
    615618  dlgLayout->addWidget(tb,1,0,1,2);
    616619
Note: See TracChangeset for help on using the changeset viewer.