QGIS API Documentation
3.16.0-Hannover (43b64b13f3)
|
Go to the documentation of this file.
16 #ifndef QGSPROJECTSTORAGE_H
17 #define QGSPROJECTSTORAGE_H
19 #include "qgis_core.h"
61 virtual QString
type() = 0;
92 virtual bool renameProject(
const QString &uri,
const QString &uriNew ) { Q_UNUSED( uri ) Q_UNUSED( uriNew );
return false; }
106 virtual QString filePath(
const QString &uri );
132 #endif // QGSPROJECTSTORAGE_H
virtual bool readProject(const QString &uri, QIODevice *device, QgsReadWriteContext &context)=0
Reads project file content stored in the backend at the specified URI to the given device (could be e...
virtual ~QgsProjectStorage()=default
The class is used as a container of context for various read/write operations on other objects.
virtual QString type()=0
Unique identifier of the project storage type.
Abstract interface for project storage - to be implemented by various backends and registered in QgsP...
virtual Q_DECL_DEPRECATED QString showSaveGui()
Opens GUI to allow user to select where a project should be saved (GUI specific to this storage type)...
virtual bool writeProject(const QString &uri, QIODevice *device, QgsReadWriteContext &context)=0
Writes project file content stored in given device (could be e.g.
virtual bool readProjectStorageMetadata(const QString &uri, QgsProjectStorage::Metadata &metadata)
Reads project metadata (e.g.
virtual bool removeProject(const QString &uri)=0
Removes an existing project at the given URI.
virtual QStringList listProjects(const QString &uri)=0
Returns list of all projects for given URI (specific to each storage backend)
virtual bool renameProject(const QString &uri, const QString &uriNew)
Rename an existing project at the given URI to a different URI.
virtual Q_DECL_DEPRECATED QString showLoadGui()
Opens GUI to allow user to select a project to be loaded (GUI specific to this storage type).
virtual Q_DECL_DEPRECATED QString visibleName()
Returns human-readable name of the storage.