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
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/analysis/vector/geometry_checker/qgsgeometrycheckregistry.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsGeometryCheckRegistry
{
%Docstring(signature="appended")
This class manages all known geometry check factories.
:py:class:`QgsGeometryCheckRegistry` is not usually directly created,
but rather accessed through
:py:func:`QgsAnalysis.geometryCheckRegistry()`.
.. note::
This class is a technology preview and unstable API.
.. versionadded:: 3.4
%End
%TypeHeaderCode
#include "qgsgeometrycheckregistry.h"
%End
public:
QgsGeometryCheckRegistry();
%Docstring
Constructor for QgsGeometryCheckRegistry. QgsGeometryCheckRegistry is
not usually directly created, but rather accessed through
:py:func:`QgsAnalysis.geometryCheckRegistry()`.
%End
~QgsGeometryCheckRegistry();
QgsGeometryCheck *geometryCheck( const QString &checkId, QgsGeometryCheckContext *context, const QVariantMap &geometryCheckConfig ) /Factory/;
%Docstring
Create a new geometryCheck of type ``checkId`` Pass the ``context`` and
``geometryCheckConfiguration`` to the newly created check. Ownership is
transferred to the caller.
.. versionadded:: 3.4
%End
QList<QgsGeometryCheckFactory *> geometryCheckFactories( QgsVectorLayer *layer, QgsGeometryCheck::CheckType type, QgsGeometryCheck::Flags flags = QgsGeometryCheck::Flags() ) const;
%Docstring
Returns all geometry check factories that are compatible with ``layer``
and have all of the ``flags`` set.
.. versionadded:: 3.4
%End
void registerGeometryCheck( QgsGeometryCheckFactory *checkFactory /Transfer/ );
%Docstring
Registers a new geometry check factory.
.. versionadded:: 3.4
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/analysis/vector/geometry_checker/qgsgeometrycheckregistry.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|