Changeset 10091 in ntrip for trunk/BNC/src/bncwindow.cpp


Ignore:
Timestamp:
Jun 16, 2023, 6:51:52 AM (11 months ago)
Author:
stuerze
Message:

same changes for future developments towards station individual navigation files

File:
1 edited

Legend:

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

    r10034 r10091  
    280280    _ephVersComboBox->setCurrentIndex(jk);
    281281  }
     282  //_ephFilePerStation = new QCheckBox();
     283  //_ephFilePerStation->setCheckState(Qt::CheckState(settings.value("ephFilePerStation").toInt()));
    282284
    283285  connect(_ephOutPortLineEdit, SIGNAL(textChanged(const QString &)),
     
    839841  eLayout->addWidget(_ephVersComboBox,                            4, 1);
    840842  eLayout->setRowStretch(5, 999);
     843  //eLayout->addWidget(new QLabel("File per Station"),              5, 0);
     844  //eLayout->addWidget(_ephFilePerStation,                          5, 1);
     845  //eLayout->setRowStretch(6, 999);
    841846
    842847  egroup->setLayout(eLayout);
     
    13991404  _ephOutPortLineEdit->setWhatsThis(tr("<p>BNC can produce ephemeris data in RINEX Navigation ASCII format on your local host through an IP port.</p><p>Specify a port number here to activate this function. <i>[key: ephOutPort]</i></p>"));
    14001405  _ephVersComboBox->setWhatsThis(tr("<p>Select the format for RINEX Navigation files. <i>[key: ephVersion]</i></p>"));
     1406  //_ephFilePerStation->setWhatsThis(tr("<p>By default, all received Broadcast Ephemeris data will be stored within one File. Thick 'File per Stations' to get separate files per station/mountpoint. <i>[key: ephFilePerStation]</i></p>"));
    14011407
    14021408  // WhatsThis, RINEX Editing & QC
     
    16111617  delete _rnxV2Priority;
    16121618  delete _ephPathLineEdit;
     1619  //delete _ephFilePerStation;
    16131620  delete _ephIntrComboBox;
    16141621  delete _ephOutPortLineEdit;
     
    20812088  settings.setValue("ephOutPort",    _ephOutPortLineEdit->text());
    20822089  settings.setValue("ephVersion",    _ephVersComboBox->currentText());
     2090  //settings.setValue("ephFilePerStation", _ephFilePerStation->checkState());
    20832091// Broadcast Corrections
    20842092  settings.setValue("corrPath",    _corrPathLineEdit->text());
     
    25982606    enableWidget(enable, _ephIntrComboBox);
    25992607    enableWidget(enable, _ephVersComboBox);
     2608    //enableWidget(enable, _ephVersComboBox);
     2609    //enableWidget(enable, _ephFilePerStation);
    26002610  }
    26012611
Note: See TracChangeset for help on using the changeset viewer.