Resolves relative paths into absolute paths and vice versa.
More...
#include <qgspathresolver.h>
|
| QgsPathResolver (const QString &baseFileName=QString(), const QString &attachmentDir=QString()) |
| Initialize path resolver with a base filename. Null filename means no conversion between relative/absolute path. More...
|
|
QString | readPath (const QString &filename) const |
| Turn filename read from the project file to an absolute path. More...
|
|
QString | writePath (const QString &filename) const |
| Prepare a filename to save it to the project file. More...
|
|
|
static bool | removePathPreprocessor (const QString &id) |
| Removes the custom pre-processor function with matching id. More...
|
|
static bool | removePathWriter (const QString &id) |
| Removes the custom writer function with matching id. More...
|
|
static QString | setPathPreprocessor (const std::function< QString(const QString &filename)> &processor) |
| Sets a path pre-processor function, which allows for manipulation of paths and data sources prior to resolving them to file references or layer sources. More...
|
|
static QString | setPathWriter (const std::function< QString(const QString &filename)> &writer) |
| Sets a path writer function, which allows for manipulation of paths and data sources prior to writing them to the project file. More...
|
|
Resolves relative paths into absolute paths and vice versa.
Used for writing
- Since
- QGIS 3.0
Definition at line 31 of file qgspathresolver.h.
◆ QgsPathResolver()
QgsPathResolver::QgsPathResolver |
( |
const QString & |
baseFileName = QString() , |
|
|
const QString & |
attachmentDir = QString() |
|
) |
| |
|
explicit |
Initialize path resolver with a base filename. Null filename means no conversion between relative/absolute path.
Definition at line 31 of file qgspathresolver.cpp.
◆ readPath()
QString QgsPathResolver::readPath |
( |
const QString & |
filename | ) |
const |
Turn filename read from the project file to an absolute path.
Definition at line 37 of file qgspathresolver.cpp.
◆ removePathPreprocessor()
bool QgsPathResolver::removePathPreprocessor |
( |
const QString & |
id | ) |
|
|
static |
◆ removePathWriter()
bool QgsPathResolver::removePathWriter |
( |
const QString & |
id | ) |
|
|
static |
Removes the custom writer function with matching id.
The id must correspond to a writer previously added via a call to setPathWriter().
Returns true
if writer existed and was removed.
- See also
- setPathWriter()
- Since
- QGIS 3.22
Definition at line 215 of file qgspathresolver.cpp.
◆ setPathPreprocessor()
QString QgsPathResolver::setPathPreprocessor |
( |
const std::function< QString(const QString &filename)> & |
processor | ) |
|
|
static |
Sets a path pre-processor function, which allows for manipulation of paths and data sources prior to resolving them to file references or layer sources.
The processor function must accept a single string argument (representing the original file path or data source), and return a processed version of this path.
The path pre-processor function is called before any bad layer handler.
If multiple preprocessors are set, they will be called in sequence based on the order in which they were originally set.
- Returns
- An auto-generated string uniquely identifying the preprocessor, which can later be used to remove the processor (via a call to removePathPreprocessor()).
- See also
- removePathPreprocessor()
- Since
- QGIS 3.10
Definition at line 191 of file qgspathresolver.cpp.
◆ setPathWriter()
QString QgsPathResolver::setPathWriter |
( |
const std::function< QString(const QString &filename)> & |
writer | ) |
|
|
static |
Sets a path writer function, which allows for manipulation of paths and data sources prior to writing them to the project file.
The writer function must accept a single string argument (representing the original file path or data source), and return a processed version of this path.
The path writer function is called before any bad layer handler.
If multiple writers are set, they will be called in sequence based on the order in which they were originally set.
- Returns
- An auto-generated string uniquely identifying the writer, which can later be used to remove the writer (via a call to removePathWriter()).
- See also
- removePathWriter()
- Since
- QGIS 3.22
Definition at line 208 of file qgspathresolver.cpp.
◆ writePath()
QString QgsPathResolver::writePath |
( |
const QString & |
filename | ) |
const |
Prepare a filename to save it to the project file.
Creates an absolute or relative path according to the project settings. Paths written to the project file should be prepared with this method.
Definition at line 225 of file qgspathresolver.cpp.
The documentation for this class was generated from the following files: