Changeset 5294 in ntrip for trunk


Ignore:
Timestamp:
Jun 28, 2013, 2:33:08 PM (11 years ago)
Author:
weber
Message:

Trace map funkction modified

File:
1 edited

Legend:

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

    r5292 r5294  
    10651065  ppp3LayoutHlp2->addSpacing(5*ww);
    10661066
    1067   _mapWinTraceCheckBox = new QCheckBox;
    1068   _mapWinTraceCheckBox->setCheckState(Qt::CheckState(settings.value("mapWinTrace").toInt()));
    1069   ppp3LayoutHlp2->addWidget(new QLabel("Trace"));
    1070   ppp3LayoutHlp2->addWidget(_mapWinTraceCheckBox);
     1067  _mapWinDotSizeLineEdit  = new QLineEdit(settings.value("mapWinDotSize").toString());
     1068  ppp3LayoutHlp2->addWidget(new QLabel("Dot Size"));
     1069  _mapWinDotSizeLineEdit->setMaximumWidth(9*ww);
     1070  ppp3LayoutHlp2->addWidget(_mapWinDotSizeLineEdit);
    10711071
    10721072  ppp3LayoutHlp2->addSpacing(5*ww);
     
    14501450  _gmRadioButton->setWhatsThis(tr("<p>Specify Google Maps as the background for your rover positions."));
    14511451  _osmRadioButton->setWhatsThis(tr("<p>Specify Open Street Map as the background for your rover positions."));
    1452   _mapWinTraceCheckBox->setWhatsThis(tr("<p>Hit 'Trace' to plot each position as a single dot on the map."));
     1452  _mapWinDotSizeLineEdit->setWhatsThis(tr("<p>Specify the size of dots in pixels showing the rover positions. </p><p>A dot size of '3' may be appropriate. An empty option field or size of '0' would mean that you don't want BNC to show the rover track.</p>"));
    14531453  _mapSpeedSlider->setWhatsThis(tr("<p>With BNC in PPP post-processing mode you can specify the speed of computations as appropriate for visualization. Note that you can adjust 'Speed' on-the-fly while BNC is already processing your observations."));
    14541454  _pppNMEALineEdit->setWhatsThis(tr("<p>Specify the full path to a file where PPP results are saved as NMEA messages.</p>"));
     
    19171917  settings.setValue("pppPlotCoordinates", _pppPlotCoordinates->checkState());
    19181918  settings.setValue("useOsmMap",          _osmRadioButton->isChecked());
    1919   settings.setValue("mapWinTrace",        _mapWinTraceCheckBox->checkState());
     1919  settings.setValue("mapWinDotSize",      _mapWinDotSizeLineEdit->text());
    19201920  settings.setValue("mapSpeed",           _mapSpeedSlider->value());
    19211921  settings.setValue("postObsFile",  _postObsFileChooser->fileName());
     
    25452545    enableWidget(enable, _gmRadioButton);
    25462546    enableWidget(enable, _osmRadioButton);
    2547     enableWidget(enable, _mapWinTraceCheckBox);
    25482547    enableWidget(enable, _pppEstTropoCheckBox);
    25492548//  enableWidget(enable, _pppGLONASSCheckBox);
     
    29672966  enableWidget(false, _gmRadioButton);
    29682967  enableWidget(false, _osmRadioButton);
    2969   enableWidget(false, _mapWinTraceCheckBox);
    29702968  if (!_mapWin) {
    29712969    _mapWin = new bncMapWin(this);
Note: See TracChangeset for help on using the changeset viewer.