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 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgssnappingconfig.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsSnappingConfig
{
%Docstring(signature="appended")
This is a container for configuration of the snapping of the project
%End
%TypeHeaderCode
#include "qgssnappingconfig.h"
%End
public:
static const QMetaObject staticMetaObject;
public:
enum SnappingType /BaseType=IntEnum/
{
Vertex,
VertexAndSegment,
Segment,
};
enum ScaleDependencyMode /BaseType=IntEnum/
{
Disabled,
Global,
PerLayer
};
static QString snappingTypeToString( Qgis::SnappingType type );
%Docstring
Convenient method to returns the translated name of the enum type
:py:class:`Qgis`.SnappingTypes.
.. versionadded:: 3.26
%End
static QString snappingTypeFlagToString( Qgis::SnappingType type ) /Deprecated/;
%Docstring
Convenient method to return the translated name of the enum type
:py:class:`Qgis`.SnappingTypes.
.. versionadded:: 3.12
.. deprecated:: 3.26
Use :py:class:`Qgis`.snappingTypeToString instead.
%End
static QIcon snappingTypeToIcon( Qgis::SnappingType type );
%Docstring
Convenient method to return an icon corresponding to the enum type
:py:class:`Qgis`.SnappingTypes.
.. versionadded:: 3.20
%End
static QIcon snappingTypeFlagToIcon( Qgis::SnappingType type ) /Deprecated/;
%Docstring
Convenient method to return an icon corresponding to the enum type
:py:class:`Qgis`.SnappingTypes.
.. deprecated:: 3.26
Use :py:class:`Qgis`.snappingTypeToString instead.
.. versionadded:: 3.20
%End
class IndividualLayerSettings
{
%Docstring(signature="appended")
This is a container of advanced configuration (per layer) of the
snapping of the project
%End
%TypeHeaderCode
#include "qgssnappingconfig.h"
%End
public:
IndividualLayerSettings( bool enabled, SnappingType type, double tolerance, Qgis::MapToolUnit units ) /Deprecated/;
%Docstring
IndividualLayerSettings
:param enabled:
:param type:
:param tolerance:
:param units:
.. deprecated:: 3.12
Use the method with :py:class:`Qgis`.SnappingTypes instead.
%End
IndividualLayerSettings( bool enabled, Qgis::SnappingTypes type, double tolerance, Qgis::MapToolUnit units, double minScale = 0.0, double maxScale = 0.0 );
%Docstring
IndividualLayerSettings
:param enabled:
:param type:
:param tolerance:
:param units:
:param minScale: 0.0 disable scale limit
:param maxScale: 0.0 disable scale limit
.. versionadded:: 3.12
%End
IndividualLayerSettings();
%Docstring
Constructs an invalid setting
%End
bool valid() const;
%Docstring
Returns if settings are valid
%End
bool enabled() const;
%Docstring
Returns if snapping is enabled
%End
void setEnabled( bool enabled );
%Docstring
enables the snapping
%End
Qgis::SnappingTypes typeFlag() const;
%Docstring
Returns the flags type (vertices | segments | area | centroid | middle)
.. versionadded:: 3.12
%End
QgsSnappingConfig::SnappingType type() const /Deprecated/;
%Docstring
Returns the flags type (vertices | segments | area | centroid | middle)
.. deprecated:: 3.12
Use typeFlag instead.
%End
void setType( SnappingType type ) /Deprecated/;
%Docstring
define the type of snapping
.. deprecated:: 3.12
Use setTypeFlag instead.
%End
void setTypeFlag( Qgis::SnappingTypes type );
%Docstring
define the type of snapping
.. versionadded:: 3.12
%End
double tolerance() const;
%Docstring
Returns the tolerance
%End
void setTolerance( double tolerance );
%Docstring
Sets the tolerance
%End
Qgis::MapToolUnit units() const;
%Docstring
Returns the type of units
%End
void setUnits( Qgis::MapToolUnit units );
%Docstring
Sets the type of units
%End
double minimumScale() const;
%Docstring
Returns minimum scale on which snapping is limited
.. versionadded:: 3.14
%End
void setMinimumScale( double minScale );
%Docstring
Sets the min scale value on which snapping is used, 0.0 disable scale
limit
.. versionadded:: 3.14
%End
double maximumScale() const;
%Docstring
Returns max scale on which snapping is limited
.. versionadded:: 3.14
%End
void setMaximumScale( double maxScale );
%Docstring
Sets the max scale value on which snapping is used, 0.0 disable scale
limit
.. versionadded:: 3.14
%End
bool operator!= ( const QgsSnappingConfig::IndividualLayerSettings &other ) const;
bool operator== ( const QgsSnappingConfig::IndividualLayerSettings &other ) const;
};
explicit QgsSnappingConfig( QgsProject *project = 0 );
%Docstring
Constructor with default parameters defined in global settings
%End
bool operator==( const QgsSnappingConfig &other ) const;
void reset();
%Docstring
reset to default values
%End
bool enabled() const;
%Docstring
Returns if snapping is enabled
%End
void setEnabled( bool enabled );
%Docstring
enables the snapping
%End
Qgis::SnappingMode mode() const;
%Docstring
Returns the mode (all layers, active layer, per layer settings)
%End
void setMode( Qgis::SnappingMode mode );
%Docstring
define the mode of snapping
%End
Qgis::SnappingTypes typeFlag() const;
%Docstring
Returns the flags type (vertices | segments | area | centroid | middle)
.. versionadded:: 3.12
%End
QgsSnappingConfig::SnappingType type() const /Deprecated/;
%Docstring
Returns the flags type (vertices | segments | area | centroid | middle)
.. deprecated:: 3.12
Use typeFlag instead.
%End
void setType( QgsSnappingConfig::SnappingType type );
%Docstring
define the type of snapping
.. deprecated:: 3.12
Use setTypeFlag instead.
%End
void setTypeFlag( Qgis::SnappingTypes type );
%Docstring
define the type of snapping
.. versionadded:: 3.12
%End
double tolerance() const;
%Docstring
Returns the tolerance
%End
void setTolerance( double tolerance );
%Docstring
Sets the tolerance
%End
double minimumScale() const;
%Docstring
Returns the min scale (i.e. most \"zoomed out\" scale)
.. versionadded:: 3.14
%End
void setMinimumScale( double minScale );
%Docstring
Sets the min scale on which snapping is enabled, 0.0 disable scale limit
.. versionadded:: 3.14
%End
double maximumScale() const;
%Docstring
Returns the max scale (i.e. most \"zoomed in\" scale)
.. versionadded:: 3.14
%End
void setMaximumScale( double maxScale );
%Docstring
Set the max scale on which snapping is enabled, 0.0 disable scale limit
.. versionadded:: 3.14
%End
void setScaleDependencyMode( ScaleDependencyMode mode );
%Docstring
Set the scale dependency mode
.. versionadded:: 3.14
%End
ScaleDependencyMode scaleDependencyMode() const;
%Docstring
Returns the scale dependency mode
.. versionadded:: 3.14
%End
Qgis::MapToolUnit units() const;
%Docstring
Returns the type of units
%End
void setUnits( Qgis::MapToolUnit units );
%Docstring
Sets the type of units
%End
bool intersectionSnapping() const;
%Docstring
Returns if the snapping on intersection is enabled
%End
void setIntersectionSnapping( bool enabled );
%Docstring
Sets if the snapping on intersection is enabled
%End
bool selfSnapping() const;
%Docstring
Returns if self snapping (snapping to the currently digitized feature)
is enabled
.. versionadded:: 3.14
%End
void setSelfSnapping( bool enabled );
%Docstring
Sets if self snapping (snapping to the currently digitized feature) is
enabled
.. versionadded:: 3.14
%End
SIP_PYDICT individualLayerSettings() const;
%Docstring
Returns individual snapping settings for all layers
%End
%MethodCode
// Create the dictionary.
PyObject *d = PyDict_New();
if ( !d )
return nullptr;
// Set the dictionary elements.
QHash<QgsVectorLayer *, QgsSnappingConfig::IndividualLayerSettings> container = sipCpp->individualLayerSettings();
QHash<QgsVectorLayer *, QgsSnappingConfig::IndividualLayerSettings>::const_iterator i = container.constBegin();
while ( i != container.constEnd() )
{
QgsVectorLayer *vl = i.key();
QgsSnappingConfig::IndividualLayerSettings *ils = new QgsSnappingConfig::IndividualLayerSettings( i.value() );
PyObject *vlobj = sipConvertFromType( vl, sipType_QgsVectorLayer, nullptr );
PyObject *ilsobj = sipConvertFromType( ils, sipType_QgsSnappingConfig_IndividualLayerSettings, Py_None );
if ( !vlobj || !ilsobj || PyDict_SetItem( d, vlobj, ilsobj ) < 0 )
{
Py_DECREF( d );
if ( vlobj )
{
Py_DECREF( vlobj );
}
if ( ilsobj )
{
Py_DECREF( ilsobj );
}
else
{
delete ils;
}
PyErr_SetString( PyExc_StopIteration, "" );
}
Py_DECREF( vlobj );
Py_DECREF( ilsobj );
++i;
}
sipRes = d;
%End
QgsSnappingConfig::IndividualLayerSettings individualLayerSettings( QgsVectorLayer *vl ) const;
%Docstring
Returns individual layer snappings settings (applied if mode is
AdvancedConfiguration)
%End
void setIndividualLayerSettings( QgsVectorLayer *vl, const QgsSnappingConfig::IndividualLayerSettings &individualLayerSettings );
%Docstring
Sets individual layer snappings settings (applied if mode is
AdvancedConfiguration)
%End
void clearIndividualLayerSettings();
%Docstring
Removes all individual layer snapping settings
.. versionadded:: 3.16
%End
bool operator!= ( const QgsSnappingConfig &other ) const;
void readProject( const QDomDocument &doc );
%Docstring
Reads the configuration from the specified QGIS project document.
%End
void writeProject( QDomDocument &doc );
%Docstring
Writes the configuration to the specified QGIS project document.
%End
bool addLayers( const QList<QgsMapLayer *> &layers );
%Docstring
Adds the specified layers as individual layers to the configuration with
standard configuration. When implementing a long-living
QgsSnappingConfig (like the one in QgsProject) it is best to directly
feed this with information from the layer registry.
:return: ``True`` if changes have been done.
%End
bool removeLayers( const QList<QgsMapLayer *> &layers );
%Docstring
Removes the specified layers from the individual layer configuration.
When implementing a long-living QgsSnappingConfig (like the one in
QgsProject) it is best to directly feed this with information from the
layer registry.
:return: ``True`` if changes have been done.
%End
QgsProject *project() const;
%Docstring
The project from which the snapped layers should be retrieved
%End
void setProject( QgsProject *project );
%Docstring
The project from which the snapped layers should be retrieved
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgssnappingconfig.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|