QGIS API Documentation  3.26.3-Buenos Aires (65e4edfdad)
qgsprojectutils.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsprojectutils.h
3  -------------------
4  begin : July 2021
5  copyright : (C) 2021 Nyall Dawson
6  email : nyall dot dawson at gmail dot com
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 #ifndef QGSPROJECTUTILS_H
18 #define QGSPROJECTUTILS_H
19 
20 #include "qgis_sip.h"
21 #include "qgis_core.h"
22 #include "qgis.h"
23 
24 #include <QList>
25 
26 class QgsProject;
27 class QgsMapLayer;
28 
34 class CORE_EXPORT QgsProjectUtils
35 {
36 
37  public:
38 
44  static QList< QgsMapLayer * > layersMatchingPath( const QgsProject *project, const QString &path );
45 
52  static bool updateLayerPath( QgsProject *project, const QString &oldPath, const QString &newPath );
53 
59  static bool layerIsContainedInGroupLayer( QgsProject *project, QgsMapLayer *layer );
60 
61 
62 };
63 
64 #endif // QGSPROJECTUTILS_H
65 
66 
qgis.h
QgsProject
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
Definition: qgsproject.h:103
qgis_sip.h
QgsProjectUtils
Contains utility functions for working with QGIS projects.
Definition: qgsprojectutils.h:34
QgsMapLayer
Base class for all map layer types. This is the base class for all map layer types (vector,...
Definition: qgsmaplayer.h:72