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


Ignore:
Timestamp:
Aug 10, 2008, 1:58:23 AM (16 years ago)
Author:
weber
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r1029 r1030  
    108108  _proxyPortLineEdit  = new QLineEdit(settings.value("proxyPort").toString());
    109109  _proxyPortLineEdit->setMaximumWidth(9*ww);
     110  _messTypesLineEdit  = new QLineEdit(settings.value("messTypes").toString());
     111  _messTypesLineEdit->setMaximumWidth(9*ww);
    110112  _waitTimeSpinBox   = new QSpinBox();
    111113  _waitTimeSpinBox->setMinimum(1);
     
    327329  _ephV3CheckBox->setWhatsThis(tr("The default format for RINEX Navigation files containing Broadcast Ephemeris is RINEX Version 2.11. Select 'Version 3' if you want to save the ephemeris in RINEX Version 3 format."));
    328330  _rnxV3CheckBox->setWhatsThis(tr("The default format for RINEX Observation files is RINEX Version 2.11. Select 'Version 3' if you want to save the observations in RINEX Version 3 format."));
     331  _messTypesLineEdit->setWhatsThis(tr("<p>Specify the mountpoint of an RTCM Version 3.x stream to log the numbers of incoming message types.</p><p>An empty option field (default) means that you don't want BNC to print the message type numbers carried in a specific stream.</p>"));
    329332
    330333  // Canvas with Editable Fields
     
    341344  QWidget* cgroup = new QWidget();
    342345  QWidget* ogroup = new QWidget();
     346  QWidget* rgroup = new QWidget();
    343347  aogroup->addTab(pgroup,tr("Proxy"));
    344348  aogroup->addTab(ggroup,tr("General"));
     
    348352  aogroup->addTab(cgroup,tr("Ephemeris Corrections"));
    349353  aogroup->addTab(agroup,tr("Monitor"));
     354  aogroup->addTab(rgroup,tr("RTCM Message Types"));
    350355
    351356  QGridLayout* pLayout = new QGridLayout;
     
    421426  aLayout->addWidget(new QLabel("Network monitoring, outages, handling of corrupted streams, latencies, statistics."),5,0,1,4,Qt::AlignLeft);
    422427  agroup->setLayout(aLayout);
     428
     429  QGridLayout* rLayout = new QGridLayout;
     430  rLayout->setColumnMinimumWidth(0,12*ww);
     431  rLayout->setColumnMinimumWidth(1,30*ww);
     432  rLayout->setColumnMinimumWidth(2,30*ww);
     433  rLayout->addWidget(new QLabel("Mountpoint"),0,0, Qt::AlignLeft);
     434  rLayout->addWidget(_messTypesLineEdit,0,1);
     435  rLayout->addWidget(new QLabel("Log numbers of message types in RTCM Version 3.x stream."),1, 0, 1, 4, Qt::AlignLeft);
     436  rLayout->addWidget(new QLabel("    "),2,0);
     437  rLayout->addWidget(new QLabel("    "),3,0);
     438  rLayout->addWidget(new QLabel("    "),4,0);
     439  rLayout->addWidget(new QLabel("    "),5,0);
     440  rgroup->setLayout(rLayout);
    423441
    424442  QGridLayout* oLayout = new QGridLayout;
     
    613631  settings.setValue("logFile",     _logFileLineEdit->text());
    614632  settings.setValue("adviseScript",_adviseScriptLineEdit->text());
     633  settings.setValue("messTypes",   _messTypesLineEdit->text());
    615634 
    616635QStringList mountPoints;
Note: See TracChangeset for help on using the changeset viewer.