Changeset 3585 in ntrip


Ignore:
Timestamp:
Jan 16, 2012, 6:29:09 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncwindow.cpp

    r3584 r3585  
    511511  _uploadTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
    512512
     513  connect(_uploadTable, SIGNAL(itemSelectionChanged()),
     514          SLOT(slotBncTextChanged()));
     515
    513516  QPushButton* addUploadRowButton = new QPushButton("Add Row");
    514517  QPushButton* delUploadRowButton = new QPushButton("Del Row");
     
    529532  _uploadSamplSpinBox->setSuffix(" sec");
    530533
    531   connect(_uploadTable, SIGNAL(itemSelectionChanged()),
    532           SLOT(slotBncTextChanged()));
     534  _uploadSamplOrbSpinBox = new QSpinBox;
     535  _uploadSamplOrbSpinBox->setMinimum(0);
     536  _uploadSamplOrbSpinBox->setMaximum(60);
     537  _uploadSamplOrbSpinBox->setSingleStep(5);
     538  _uploadSamplOrbSpinBox->setMaximumWidth(9*ww);
     539  _uploadSamplOrbSpinBox->setValue(settings.value("uploadSamplOrb").toInt());
     540  _uploadSamplOrbSpinBox->setSuffix(" sec");
    533541
    534542  // Upload RTCM3 Ephemeris
     
    10221030  uploadHlpLayout->addWidget(_uploadSamplSpinBox,1,4);
    10231031
     1032  uploadHlpLayout->addWidget(new QLabel("Sampling (Orb)"),1,5, Qt::AlignRight);
     1033  uploadHlpLayout->addWidget(_uploadSamplOrbSpinBox,1,6);
    10241034
    10251035  QBoxLayout* uploadLayout = new QBoxLayout(QBoxLayout::TopToBottom);
  • trunk/BNC/bncwindow.h

    r3469 r3585  
    209209    QComboBox*    _uploadIntrComboBox;
    210210    QSpinBox*     _uploadSamplSpinBox;
     211    QSpinBox*     _uploadSamplOrbSpinBox;
    211212
    212213    QLineEdit*       _uploadEphHostLineEdit;
Note: See TracChangeset for help on using the changeset viewer.