QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgsmaplayerdependency.h
Go to the documentation of this file.
1
2/***************************************************************************
3 qgsmaplayerdependency.h - description
4 -------------------
5 begin : September 2016
6 copyright : (C) 2016 by Hugo Mercier
7 email : hugo dot mercier at oslandia dot com
8 ***************************************************************************/
9
10/***************************************************************************
11 * *
12 * This program is free software; you can redistribute it and/or modify *
13 * it under the terms of the GNU General Public License as published by *
14 * the Free Software Foundation; either version 2 of the License, or *
15 * (at your option) any later version. *
16 * *
17 ***************************************************************************/
18
19#ifndef QGSMAPLAYERDEPENDENCY_H
20#define QGSMAPLAYERDEPENDENCY_H
21
22#include "qgis_core.h"
23
24#include <QString>
25
37class CORE_EXPORT QgsMapLayerDependency
38{
39 public:
41 enum Type
42 {
43 PresenceDependency = 1, //< The layer must be already present (in the registry) for this dependency to be resolved
44 DataDependency = 2 //< The layer may be invalidated by data changes on another layer
45 };
46
48 enum Origin
49 {
50 FromProvider = 0, //< Dependency given by the provider, the user cannot change it
51 FromUser = 1 //< Dependency given by the user
52 };
53
56 : mType( type )
57 , mOrigin( origin )
58 , mLayerId( layerId )
59 {}
60
62 Type type() const { return mType; }
63
65 Origin origin() const { return mOrigin; }
66
68 QString layerId() const { return mLayerId; }
69
70 // TODO c++20 - replace with = default
71
72 bool operator==( const QgsMapLayerDependency &other ) const
73 {
74 return layerId() == other.layerId() && origin() == other.origin() && type() == other.type();
75 }
76
77#ifdef SIP_RUN
79 long __hash__() const;
80 % MethodCode
81 sipRes = qHash( *sipCpp );
82 % End
83#endif
84 private:
85 Type mType;
86 Origin mOrigin;
87 QString mLayerId;
88};
89
90#ifndef SIP_RUN
91
95inline uint qHash( const QgsMapLayerDependency &dep )
96{
97 return qHash( dep.layerId() ) + dep.origin() + dep.type();
98}
99#endif
100
101#endif
Models dependencies with or between map layers.
QgsMapLayerDependency(const QString &layerId, Type type=DataDependency, Origin origin=FromUser)
Standard constructor.
Origin
Origin of the dependency.
bool operator==(const QgsMapLayerDependency &other) const
QString layerId() const
Returns the ID of the layer this dependency depends on.
Origin origin() const
Returns the dependency origin.
Type type() const
Returns the dependency type.
uint qHash(const QVariant &variant)
Hash for QVariant.
Definition qgis.cpp:603
uint qHash(const QgsMapLayerDependency &dep)
global qHash function for QgsMapLayerDependency, so that it can be used in a QSet