QGIS API Documentation  3.12.1-BucureČ™ti (121cc00ff0)
qgssnapindicator.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgssnapindicator.cpp
3  --------------------------------------
4  Date : October 2017
5  Copyright : (C) 2017 by Martin Dobias
6  Email : wonder dot sk at gmail dot com
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 #include "qgssnapindicator.h"
17 
18 #include "qgsguiutils.h"
19 #include "qgsmapcanvas.h"
20 #include "qgssettings.h"
21 #include "qgsvectorlayer.h"
22 #include "qgsvertexmarker.h"
23 
24 #include <QToolTip>
25 
26 
28  : mCanvas( canvas )
29 {
30  // We need to make sure that the internal pointers are invalidated if the canvas is deleted before this
31  // indicator.
32  // The canvas is specified again as the "receiver", just to silence clazy (official clazy recommendation
33  // for false positives).
34  mCanvasDestroyedConnection = QObject::connect( canvas, &QgsMapCanvas::destroyed, canvas, [ = ]()
35  {
36  mCanvas = nullptr;
37  mSnappingMarker = nullptr;
38  } );
39 }
40 
42 {
43  if ( mSnappingMarker && mCanvas )
44  {
45  mCanvas->scene()->removeItem( mSnappingMarker );
46  delete mSnappingMarker;
47  }
48 
49  QObject::disconnect( mCanvasDestroyedConnection );
50 };
51 
53 {
54  mMatch = match;
55 
56  if ( !mMatch.isValid() )
57  {
58  if ( mSnappingMarker )
59  {
60  mCanvas->scene()->removeItem( mSnappingMarker );
61  delete mSnappingMarker; // need to delete since QGraphicsSene::removeItem transfers back ownership
62  }
63  mSnappingMarker = nullptr;
64  QToolTip::hideText();
65  }
66  else
67  {
68  if ( !mSnappingMarker )
69  {
70  mSnappingMarker = new QgsVertexMarker( mCanvas ); // ownership of the marker is transferred to QGraphicsScene
71  mSnappingMarker->setIconSize( QgsGuiUtils::scaleIconSize( 10 ) );
72  mSnappingMarker->setPenWidth( QgsGuiUtils::scaleIconSize( 3 ) );
73  }
74 
75  QgsSettings s;
76 
77  QColor color = s.value( QStringLiteral( "/qgis/digitizing/snap_color" ), QColor( Qt::magenta ) ).value<QColor>();
78  mSnappingMarker->setColor( color );
79 
80  int iconType;
81  if ( match.hasVertex() )
82  {
83  if ( match.layer() )
84  iconType = QgsVertexMarker::ICON_BOX; // vertex snap
85  else
86  iconType = QgsVertexMarker::ICON_X; // intersection snap
87  }
88  else // must be segment snap
89  {
91  }
92 
93  mSnappingMarker->setIconType( iconType );
94 
95  mSnappingMarker->setCenter( match.point() );
96 
97  // tooltip
98  if ( s.value( QStringLiteral( "/qgis/digitizing/snap_tooltip" ), false ).toBool() )
99  {
100  QPoint ptCanvas = mSnappingMarker->toCanvasCoordinates( match.point() ).toPoint();
101  QPoint ptGlobal = mCanvas->mapToGlobal( ptCanvas );
102  QRect rect( ptCanvas.x(), ptCanvas.y(), 1, 1 ); // area where is the tooltip valid
103  QString layerName = match.layer() ? match.layer()->name() : QString();
104  QToolTip::showText( ptGlobal, layerName, mCanvas, rect );
105  }
106  }
107 }
108 
109 void QgsSnapIndicator::setVisible( bool visible )
110 {
111  if ( mSnappingMarker )
112  mSnappingMarker->setVisible( visible );
113 }
114 
116 {
117  if ( mSnappingMarker )
118  return mSnappingMarker->isVisible();
119 
120  return false;
121 }
void setMatch(const QgsPointLocator::Match &match)
Sets snapping match that should be displayed in map canvas. Invalid match hides the indicator...
QgsVectorLayer * layer() const
The vector layer where the snap occurred.
This class is a composition of two QSettings instances:
Definition: qgssettings.h:58
QgsPointLocator::Match match() const
Returns currently displayed snapping match.
QVariant value(const QString &key, const QVariant &defaultValue=QVariant(), Section section=NoSection) const
Returns the value for setting key.
int scaleIconSize(int standardSize)
Scales an icon size to compensate for display pixel density, making the icon size hi-dpi friendly...
void setPenWidth(int width)
Map canvas is a class for displaying all GIS data types on a canvas.
Definition: qgsmapcanvas.h:75
void setCenter(const QgsPointXY &point)
A class for marking vertices of features using e.g.
void setIconSize(int iconSize)
QgsPointXY point() const
for vertex / edge match coords depending on what class returns it (geom.cache: layer coords...
bool isVisible() const
Returns whether the snapping indicator is visible.
QString name
Definition: qgsmaplayer.h:83
QPointF toCanvasCoordinates(const QgsPointXY &point) const
transformation from map coordinates to screen coordinates
void setVisible(bool visible=true)
Sets whether the snapping indicator is visible.
void setColor(const QColor &color)
Sets the stroke color for the marker.
QgsSnapIndicator(QgsMapCanvas *canvas)
Constructs an indicator for the given map canvas.
void setIconType(int iconType)