1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgssldexportcontext.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsSldExportContext
{
%Docstring(signature="appended")
The :py:class:`QgsSldExportContext` class holds SLD export options and
other information related to SLD export of a QGIS layer style.
.. versionadded:: 3.30
%End
%TypeHeaderCode
#include "qgssldexportcontext.h"
%End
public:
QgsSldExportContext();
%Docstring
Constructs a default SLD export context
%End
~QgsSldExportContext();
QgsSldExportContext( const QgsSldExportContext &other );
QgsSldExportContext( const Qgis::SldExportOptions &options, const Qgis::SldExportVendorExtension &vendorExtension, const QString &filePath );
%Docstring
/brief Create a new QgsSldExportContext /param options SLD export
options /param vendorExtension SLD export vendor extension /param
filePath SLD export file path
%End
Qgis::SldExportOptions exportOptions() const;
%Docstring
Returns the export options
%End
void setExportOptions( const Qgis::SldExportOptions &exportOptions );
%Docstring
Set export options to ``exportOptions``
%End
Qgis::SldExportVendorExtension vendorExtensions() const;
%Docstring
Returns the vendor extension enabled for the SLD export
%End
void setVendorExtension( const Qgis::SldExportVendorExtension &vendorExtension );
%Docstring
Sets the vendor extensions to ``vendorExtension``
%End
QString exportFilePath() const;
%Docstring
Returns the export file path for the SLD
%End
void setExportFilePath( const QString &exportFilePath );
%Docstring
Sets the export file path for the SLD to ``exportFilePath``
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgssldexportcontext.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|