Changeset 5644 in ntrip for trunk/BNC/src


Ignore:
Timestamp:
Feb 23, 2014, 10:25:13 AM (10 years ago)
Author:
weber
Message:

Raw stream output through TCP/IP port enabled

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncwindow.cpp

    r5574 r5644  
    361361  // ---------------------
    362362  _miscMountLineEdit  = new QLineEdit(settings.value("miscMount").toString());
     363  _miscPortLineEdit   = new QLineEdit(settings.value("miscPort").toString());
    363364  _perfIntrComboBox   = new QComboBox();
    364365  _perfIntrComboBox->setEditable(false);
     
    878879  rLayout->setColumnMinimumWidth(0,14*ww);
    879880  _perfIntrComboBox->setMaximumWidth(9*ww);
     881  _miscPortLineEdit->setMaximumWidth(9*ww);
    880882
    881883  rLayout->addWidget(new QLabel("Log latencies or scan RTCM streams for numbers of message types and antenna information."),0, 0,1,30);
     
    886888  rLayout->addWidget(new QLabel("Scan RTCM"),                     3, 0);
    887889  rLayout->addWidget(_scanRTCMCheckBox,                           3, 1);
    888   rLayout->addWidget(new QLabel(" "),                             4, 0);
     890  rLayout->addWidget(new QLabel("Port"),                          4, 0);
     891  rLayout->addWidget(_miscPortLineEdit,                           4, 1);
    889892  rLayout->addWidget(new QLabel(" "),                             5, 0);
    890893  rLayout->addWidget(new QLabel(" "),                             6, 0);
     
    14381441  _rnxV3CheckBox->setWhatsThis(tr("The default format for RINEX Observation files is RINEX Version 2. Select 'Version 3' if you want to save the observations in RINEX Version 3 format."));
    14391442  _miscMountLineEdit->setWhatsThis(tr("<p>Specify a mountpoint to apply any of the options shown below. Enter 'ALL' if you want to apply these options to all configured streams.</p><p>An empty option field (default) means that you don't want BNC to apply any of these options.</p>"));
     1443  _miscPortLineEdit->setWhatsThis(tr("BNC can output an incoming stream on your local host through an IP port. Specify a port number here to activate this function."));
    14401444  _scanRTCMCheckBox->setWhatsThis(tr("<p>Tick 'Scan RTCM' to log the numbers of incomming message types as well as contained antenna coordinates, antenna heigt, and antenna descriptor.</p><p>In case of RTCM Version 3 MSM streams, BNC will also log contained RINEX Version 3 observation types.</p>."));
    14411445  _serialMountPointLineEdit->setWhatsThis(tr("<p>Enter a 'Mountpoint' to forward the corresponding stream to a serial connected receiver.</p>"));
     
    19141918// Miscellaneous
    19151919  settings.setValue("miscMount",   _miscMountLineEdit->text());
     1920  settings.setValue("miscPort",    _miscPortLineEdit->text());
    19161921  settings.setValue("perfIntr",    _perfIntrComboBox->currentText());
    19171922  settings.setValue("scanRTCM",    _scanRTCMCheckBox->checkState());
     
    24542459    enableWidget(enable, _perfIntrComboBox);
    24552460    enableWidget(enable, _scanRTCMCheckBox);
     2461    enableWidget(enable, _miscPortLineEdit);
    24562462  }
    24572463
Note: See TracChangeset for help on using the changeset viewer.