Changeset 5494 in ntrip for trunk/GnssCenter/monitor
- Timestamp:
- Sep 23, 2013, 9:05:26 AM (11 years ago)
- Location:
- trunk/GnssCenter/monitor
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GnssCenter/monitor/monitor.cpp
r5492 r5494 251 251 double latDeg = ell[0] * 180.0 / M_PI; 252 252 double lonDeg = ell[1] * 180.0 / M_PI; 253 QString str = QString().sprintf("%d/%d", result->_nGPS, result->_nGLO); 253 QString str = QString(result->_name.c_str()) + 254 QString().sprintf("\n%d/%d", result->_nGPS, result->_nGLO); 254 255 QColor color = result->_nGPS >= 4 ? Qt::black : Qt::red; 255 256 t_worldPlot::t_point* point = new t_worldPlot::t_point(color, str, latDeg, lonDeg); -
trunk/GnssCenter/monitor/worldplot.cpp
r5491 r5494 89 89 marker->setLabelAlignment(Qt::AlignRight); 90 90 } 91 QwtText text(point->_name .left(4));91 QwtText text(point->_name); 92 92 QFont font = text.font(); 93 93 font.setPointSize(font.pointSize()*0.8);
Note:
See TracChangeset
for help on using the changeset viewer.