1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgsrubberband.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
%ModuleHeaderCode
// For ConvertToSubClassCode.
#include <qgsrubberband.h>
%End
class QgsRubberBand : QgsMapCanvasItem
{
%Docstring(signature="appended")
A class for drawing transient features (e.g. digitizing lines) on the
map.
The :py:class:`QgsRubberBand` class provides a transparent overlay
widget for tracking the mouse while drawing polylines or polygons.
%End
%TypeHeaderCode
#include "qgsrubberband.h"
%End
%ConvertToSubClassCode
if ( dynamic_cast<QgsRubberBand *>( sipCpp ) )
{
sipType = sipType_QgsRubberBand;
// We need to tweak the pointer as sip believes it is single inheritance
// from QgsMapCanvasItem, but the raw address of QgsRubberBand (sipCpp)
// is actually a QObject
*sipCppRet = dynamic_cast<QgsRubberBand *>( sipCpp );
}
else
sipType = nullptr;
%End
public:
enum IconType /BaseType=IntEnum/
{
ICON_NONE,
ICON_CROSS,
ICON_X,
ICON_BOX,
ICON_CIRCLE,
ICON_FULL_BOX,
ICON_DIAMOND,
ICON_FULL_DIAMOND,
ICON_SVG
};
QgsRubberBand( QgsMapCanvas *mapCanvas /TransferThis/, Qgis::GeometryType geometryType = Qgis::GeometryType::Line );
%Docstring
Creates a new RubberBand.
:param mapCanvas: The map canvas to draw onto. Its CRS will be used to
map points onto screen coordinates. The ownership is
transferred to this canvas.
:param geometryType: Defines how the data should be drawn onto the
screen. :py:class:`Qgis`.GeometryType.Line,
:py:class:`Qgis`.GeometryType.Polygon or
:py:class:`Qgis`.GeometryType.Point
%End
~QgsRubberBand();
void setColor( const QColor &color );
%Docstring
Sets the color for the rubberband. Shorthand method to set fill and
stroke color with a single call.
:param color: The color used to render this rubberband
%End
void setFillColor( const QColor &color );
%Docstring
Sets the fill color for the rubberband
:param color: The color used to render this rubberband
%End
QColor fillColor() const;
%Docstring
Returns the current fill color.
%End
void setStrokeColor( const QColor &color );
%Docstring
Sets the stroke color for the rubberband
:param color: The color used to render this rubberband
%End
QColor strokeColor() const;
%Docstring
Returns the current stroke color.
%End
void setSecondaryStrokeColor( const QColor &color );
%Docstring
Sets a secondary stroke color for the rubberband which will be drawn
under the main stroke color. Set to an invalid color to avoid drawing
the secondary stroke.
:param color: The color used to render a secondary stroke color to this
rubberband
%End
QColor secondaryStrokeColor() const;
%Docstring
Returns the current secondary stroke color.
%End
void setWidth( double width );
%Docstring
Sets the width of the line. Stroke width for polygon.
:param width: The width for any lines painted for this rubberband
%End
int width() const;
%Docstring
Returns the current width of the line or stroke width for polygon.
%End
void setIcon( IconType icon );
%Docstring
Sets the icon type to highlight point geometries.
:param icon: The icon to visualize point geometries
%End
void setSvgIcon( const QString &path, QPoint drawOffset );
%Docstring
Set the path to the svg file to use to draw points. Calling this
function automatically calls setIcon(ICON_SVG)
:param path: The path to the svg
:param drawOffset: The offset where to draw the image origin
.. versionadded:: 3.10
%End
IconType icon() const;
%Docstring
Returns the current icon type to highlight point geometries.
%End
void setIconSize( double iconSize );
%Docstring
Sets the size of the point icons
%End
double iconSize() const;
%Docstring
Returns the current icon size of the point icons.
%End
void setLineStyle( Qt::PenStyle penStyle );
%Docstring
Sets the style of the line
%End
void setBrushStyle( Qt::BrushStyle brushStyle );
%Docstring
Sets the style of the brush
%End
void reset( Qgis::GeometryType geometryType = Qgis::GeometryType::Line );
%Docstring
Clears all the geometries in this rubberband. Sets the representation
type according to geometryType.
:param geometryType: Defines how the data should be drawn onto the
screen. (Use :py:class:`Qgis`.Line,
:py:class:`Qgis`.Polygon or :py:class:`Qgis`.Point)
%End
void addPoint( const QgsPointXY &p, bool doUpdate = true, int geometryIndex = 0, int ringIndex = 0 );
%Docstring
Adds a vertex to the rubberband and update canvas. The rendering of the
vertex depends on the current GeometryType and icon. If adding more
points consider using update=``False`` for better performance
:param p: The vertex/point to add
:param doUpdate: Should the map canvas be updated immediately?
:param geometryIndex: The index of the feature part (in case of
multipart geometries)
:param ringIndex: The index of the polygon ring (in case of polygons
with holes)
%End
void closePoints( bool doUpdate = true, int geometryIndex = 0, int ringIndex = 0 );
%Docstring
Ensures that a polygon geometry is closed and that the last vertex
equals the first vertex.
:param doUpdate: set to ``True`` to update the map canvas immediately
:param geometryIndex: The index of the feature part (in case of
multipart geometries)
:param ringIndex: The index of the polygon ring (in case of polygons
with holes)
%End
void removePoint( int index = 0, bool doUpdate = true, int geometryIndex = 0, int ringIndex = 0 );
%Docstring
Removes a vertex from the rubberband and (optionally) updates canvas.
:param index: The index of the vertex/point to remove, negative indexes
start at end
:param doUpdate: Should the map canvas be updated immediately?
:param geometryIndex: The index of the feature part (in case of
multipart geometries)
:param ringIndex: The index of the polygon ring (in case of polygons
with holes)
%End
void removeLastPoint( int geometryIndex = 0, bool doUpdate = true, int ringIndex = 0 );
%Docstring
Removes the last point. Most useful in connection with undo operations
%End
void movePoint( const QgsPointXY &p, int geometryIndex = 0, int ringIndex = 0 );
%Docstring
Moves the rubber band point specified by index. Note that if the rubber
band is not used to track the last mouse position, the first point of
the rubber band has two vertices
%End
void movePoint( int index, const QgsPointXY &p, int geometryIndex = 0, int ringIndex = 0 );
%Docstring
Moves the rubber band point specified by index. Note that if the rubber
band is not used to track the last mouse position, the first point of
the rubber band has two vertices
%End
int partSize( int geometryIndex ) const;
%Docstring
Returns number of vertices in feature part
:param geometryIndex: The index of the feature part (in case of
multipart geometries)
:return: number of vertices
%End
void setToGeometry( const QgsGeometry &geom, QgsVectorLayer *layer );
%Docstring
Sets this rubber band to ``geom``. This is useful for feature
highlighting. In contrast to :py:func:`~QgsRubberBand.addGeometry`, this
method does also change the geometry type of the rubberband.
:param geom: the geometry object
:param layer: the layer containing the feature, used for coord
transformation to map crs. If ``layer`` is ``None``, the
coordinates are not going to be transformed.
%End
void setToGeometry( const QgsGeometry &geometry, const QgsCoordinateReferenceSystem &crs = QgsCoordinateReferenceSystem() );
%Docstring
Sets this rubber band to ``geometry``. In contrast to
:py:func:`~QgsRubberBand.addGeometry`, this method does also change the
geometry type of the rubberband. The coordinate reference system of the
geometry can be specified with ``crs``. If an invalid ``crs`` is passed,
the geometry will not be reprojected and needs to be in canvas crs
already. By default, no reprojection is done.
.. versionadded:: 3.4
%End
void setToCanvasRectangle( QRect rect );
%Docstring
Sets this rubber band to a map canvas rectangle
:param rect: rectangle in canvas coordinates
%End
void copyPointsFrom( const QgsRubberBand *other );
%Docstring
Copies the points from another rubber band.
.. versionadded:: 3.22
%End
void addGeometry( const QgsGeometry &geometry, QgsMapLayer *layer, bool doUpdate = true );
%Docstring
Adds the geometry of an existing feature to a rubberband This is useful
for multi feature highlighting. As of 2.0, this method does not change
the GeometryType any more. You need to set the GeometryType of the
rubberband explicitly by calling :py:func:`~QgsRubberBand.reset` or
:py:func:`~QgsRubberBand.setToGeometry` with appropriate arguments.
:py:func:`~QgsRubberBand.setToGeometry` is also to be preferred for
backwards-compatibility.
If additional geometries are to be added then set ``doUpdate`` to
``False`` to defer costly repaint and bounding rectangle calculations
for better performance. After adding the final geometry
:py:func:`~QgsRubberBand.updatePosition` should be called.
:param geometry: the geometry object. Will be treated as a collection of
vertices.
:param layer: the layer associated with the geometry. This is used for
transforming the geometry from the layer's CRS to the map
crs. If ``layer`` is ``None`` no coordinate transformation
will occur.
:param doUpdate: set to ``False`` to defer updates of the rubber band.
%End
void addGeometry( const QgsGeometry &geometry, const QgsCoordinateReferenceSystem &crs = QgsCoordinateReferenceSystem(), bool doUpdate = true );
%Docstring
Adds a ``geometry`` to the rubberband.
If ``crs`` is specified, the geometry will be automatically reprojected
from ``crs`` to the canvas CRS.
If additional geometries are to be added then set ``doUpdate`` to
``False`` to defer costly repaint and bounding rectangle calculations
for better performance. After adding the final geometry
:py:func:`~QgsRubberBand.updatePosition` should be called.
%End
void setTranslationOffset( double dx, double dy );
%Docstring
Adds translation to original coordinates (all in map coordinates)
:param dx: x translation
:param dy: y translation
%End
int size() const;
%Docstring
Returns number of geometries
:return: number of geometries
%End
int numberOfVertices() const;
%Docstring
Returns count of vertices in all lists of mPoint
:return: The total number of vertices
%End
const QgsPointXY *getPoint( int i, int j = 0, int ringIndex = 0 ) const;
%Docstring
Returns a vertex
:param i: The geometry index
:param j: The vertex index within ring ringIndex
:param ringIndex: The ring index within geometry i
%End
QgsGeometry asGeometry() const;
%Docstring
Returns the rubberband as a Geometry
:return: A geometry object which reflects the current state of the
rubberband.
%End
virtual void updatePosition();
QgsSymbol *symbol() const;
%Docstring
Returns the symbol used for rendering the rubberband, if set.
.. seealso:: :py:func:`setSymbol`
.. versionadded:: 3.20
%End
void setSymbol( QgsSymbol *symbol /Transfer/ );
%Docstring
Sets the ``symbol`` used for rendering the rubberband.
Ownership of ``symbol`` is transferred to the rubberband.
.. warning::
Only line and fill symbols are currently supported.
.. note::
Setting a symbol for the rubberband overrides any other appearance setting,
such as the :py:func:`~QgsRubberBand.strokeColor` or :py:func:`~QgsRubberBand.width`.
.. seealso:: :py:func:`setSymbol`
.. versionadded:: 3.20
%End
protected:
virtual void paint( QPainter *p );
%Docstring
Paints the rubber band in response to an update event.
:param p: The QPainter object
%End
void drawShape( QPainter *p, const QVector<QPointF> &pts );
%Docstring
Draws shape of the rubber band.
:param p: The QPainter object
:param pts: A list of points used to draw the shape
%End
void drawShape( QPainter *p, const QVector<QPolygonF> &rings );
%Docstring
Draws shape of the rubber band.
:param p: The QPainter object
:param rings: A list of points used to draw the shape
%End
void updateRect();
%Docstring
Recalculates needed rectangle
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgsrubberband.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|