mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
84 lines
2.3 KiB
Plaintext
84 lines
2.3 KiB
Plaintext
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/core/qgsmaplayerdependency.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
class QgsMapLayerDependency
|
|
{
|
|
%Docstring
|
|
This class models dependencies with or between map layers.
|
|
A dependency is defined by a layer ID, a type and an origin.
|
|
The two combinations of type/origin that are currently supported are:
|
|
- PresenceDependency && FromProvider: virtual layers for instance which may depend on other layers already loaded to work
|
|
- DataDependency && FromUser: dependencies given by the user, mainly to represent database triggers
|
|
|
|
.. versionadded:: 3.0
|
|
%End
|
|
|
|
%TypeHeaderCode
|
|
#include "qgsmaplayerdependency.h"
|
|
%End
|
|
public:
|
|
enum Type
|
|
{
|
|
PresenceDependency,
|
|
DataDependency
|
|
};
|
|
|
|
enum Origin
|
|
{
|
|
FromProvider,
|
|
FromUser
|
|
};
|
|
|
|
QgsMapLayerDependency( const QString &layerId, Type type = DataDependency, Origin origin = FromUser );
|
|
%Docstring
|
|
Standard constructor
|
|
%End
|
|
|
|
Type type() const;
|
|
%Docstring
|
|
Return the dependency type
|
|
:rtype: Type
|
|
%End
|
|
|
|
Origin origin() const;
|
|
%Docstring
|
|
Return the dependency origin
|
|
:rtype: Origin
|
|
%End
|
|
|
|
QString layerId() const;
|
|
%Docstring
|
|
Return the ID of the layer this dependency depends on
|
|
:rtype: str
|
|
%End
|
|
|
|
bool operator==( const QgsMapLayerDependency &other ) const;
|
|
|
|
//! hash operator
|
|
long __hash__() const;
|
|
%Docstring
|
|
:rtype: long
|
|
%End
|
|
%MethodCode
|
|
sipRes = qHash( *sipCpp );
|
|
%End
|
|
};
|
|
|
|
|
|
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/core/qgsmaplayerdependency.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
************************************************************************/
|