- Timestamp:
- Jun 28, 2013, 2:33:08 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncwindow.cpp
r5292 r5294 1065 1065 ppp3LayoutHlp2->addSpacing(5*ww); 1066 1066 1067 _mapWin TraceCheckBox = new QCheckBox;1068 _mapWinTraceCheckBox->setCheckState(Qt::CheckState(settings.value("mapWinTrace").toInt()));1069 ppp3LayoutHlp2->addWidget(new QLabel("Trace"));1070 ppp3LayoutHlp2->addWidget(_mapWin TraceCheckBox);1067 _mapWinDotSizeLineEdit = new QLineEdit(settings.value("mapWinDotSize").toString()); 1068 ppp3LayoutHlp2->addWidget(new QLabel("Dot Size")); 1069 _mapWinDotSizeLineEdit->setMaximumWidth(9*ww); 1070 ppp3LayoutHlp2->addWidget(_mapWinDotSizeLineEdit); 1071 1071 1072 1072 ppp3LayoutHlp2->addSpacing(5*ww); … … 1450 1450 _gmRadioButton->setWhatsThis(tr("<p>Specify Google Maps as the background for your rover positions.")); 1451 1451 _osmRadioButton->setWhatsThis(tr("<p>Specify Open Street Map as the background for your rover positions.")); 1452 _mapWin TraceCheckBox->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>")); 1453 1453 _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.")); 1454 1454 _pppNMEALineEdit->setWhatsThis(tr("<p>Specify the full path to a file where PPP results are saved as NMEA messages.</p>")); … … 1917 1917 settings.setValue("pppPlotCoordinates", _pppPlotCoordinates->checkState()); 1918 1918 settings.setValue("useOsmMap", _osmRadioButton->isChecked()); 1919 settings.setValue("mapWin Trace", _mapWinTraceCheckBox->checkState());1919 settings.setValue("mapWinDotSize", _mapWinDotSizeLineEdit->text()); 1920 1920 settings.setValue("mapSpeed", _mapSpeedSlider->value()); 1921 1921 settings.setValue("postObsFile", _postObsFileChooser->fileName()); … … 2545 2545 enableWidget(enable, _gmRadioButton); 2546 2546 enableWidget(enable, _osmRadioButton); 2547 enableWidget(enable, _mapWinTraceCheckBox);2548 2547 enableWidget(enable, _pppEstTropoCheckBox); 2549 2548 // enableWidget(enable, _pppGLONASSCheckBox); … … 2967 2966 enableWidget(false, _gmRadioButton); 2968 2967 enableWidget(false, _osmRadioButton); 2969 enableWidget(false, _mapWinTraceCheckBox);2970 2968 if (!_mapWin) { 2971 2969 _mapWin = new bncMapWin(this);
Note:
See TracChangeset
for help on using the changeset viewer.