Home
last modified time | relevance | path

Searched refs:gps_display (Results 1 – 10 of 10) sorted by relevance

/dports/graphics/openorienteering-mapper/mapper-0.9.2/src/sensors/
H A Dgps_temporary_markers.cpp42 GPSTemporaryMarkers::GPSTemporaryMarkers(MapWidget* widget, GPSDisplay* gps_display): QObject() in GPSTemporaryMarkers() argument
45 this->gps_display = gps_display; in GPSTemporaryMarkers()
48 connect(gps_display, &GPSDisplay::mapPositionUpdated, this, &GPSTemporaryMarkers::newGPSPosition); in GPSTemporaryMarkers()
60 if (!gps_display->hasValidPosition()) in addPoint()
63 points.push_back(gps_display->getLatestGPSCoord()); in addPoint()
72 if (gps_display->hasValidPosition()) in startPath()
73 newGPSPosition(gps_display->getLatestGPSCoord(), gps_display->getLatestGPSCoordAccuracy()); in startPath()
H A Dgps_track_recorder.cpp37 GPSTrackRecorder::GPSTrackRecorder(GPSDisplay* gps_display, TemplateTrack* target_template, int dra… in GPSTrackRecorder() argument
40 this->gps_display = gps_display; in GPSTrackRecorder()
50 connect(gps_display, &GPSDisplay::latLonUpdated, this, &GPSTrackRecorder::newPosition); in GPSTrackRecorder()
51 …connect(gps_display, &GPSDisplay::positionUpdatesInterrupted, this, &GPSTrackRecorder::positionUpd… in GPSTrackRecorder()
90 gps_display->disconnect(this); in templateDeleted()
H A Dgps_track_recorder.h41 …GPSTrackRecorder(GPSDisplay* gps_display, TemplateTrack* target_template, int draw_update_interval…
50 GPSDisplay* gps_display;
H A Dgps_temporary_markers.h45 GPSTemporaryMarkers(MapWidget* widget, GPSDisplay* gps_display);
69 GPSDisplay* gps_display; variable
/dports/graphics/openorienteering-mapper/mapper-0.9.2/src/tools/
H A Ddraw_point_gps_tool.cpp51 DrawPointGPSTool::DrawPointGPSTool(GPSDisplay* gps_display, MapEditorController* editor, QAction* t… in DrawPointGPSTool() argument
58 if (gps_display->hasValidPosition()) in DrawPointGPSTool()
59 newGPSPosition(gps_display->getLatestGPSCoord(), gps_display->getLatestGPSCoordAccuracy()); in DrawPointGPSTool()
61 connect(gps_display, &GPSDisplay::mapPositionUpdated, this, &DrawPointGPSTool::newGPSPosition); in DrawPointGPSTool()
H A Ddraw_point_gps_tool.h55 DrawPointGPSTool(GPSDisplay* gps_display, MapEditorController* editor, QAction* tool_action);
/dports/graphics/openorienteering-mapper/mapper-0.9.2/src/gui/map/
H A Dmap_widget.h314 void setGPSDisplay(GPSDisplay* gps_display);
542 GPSDisplay* gps_display; variable
H A Dmap_widget.cpp100 , gps_display(nullptr) in MapWidget()
677 void MapWidget::setGPSDisplay(GPSDisplay* gps_display) in setGPSDisplay() argument
679 this->gps_display = gps_display; in setGPSDisplay()
886 if (gps_display) in paintEvent()
887 gps_display->paint(&painter); in paintEvent()
H A Dmap_editor.cpp296 gps_display = nullptr; in MapEditorController()
335 delete gps_display; in ~MapEditorController()
1603 delete gps_display; in detach()
1604 gps_display = nullptr; in detach()
1932 if (!gps_display->hasValidPosition()) in moveToGpsPos()
1936 gps_display->startBlinking(3); in moveToGpsPos()
2257 if (gps_display) in georeferencingDialogFinished()
3449 gps_display->startUpdates(); in enableGPSDisplay()
3516 gps_display->stopUpdates(); in enableGPSDisplay()
3521 gps_display->setVisible(enable); in enableGPSDisplay()
[all …]
H A Dmap_editor.h805 GPSDisplay* gps_display; variable