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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/symbology/qgssvgselectorwidget.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
class QgsSvgSelectorFilterModel : QSortFilterProxyModel
{
%Docstring(signature="appended")
A model for displaying SVG files with a preview icon which can be filtered by file name.
Population of the model is performed in a background thread to ensure that
initial creation of the model is responsive and does not block the GUI.
.. versionadded:: 3.20
%End
%TypeHeaderCode
#include "qgssvgselectorwidget.h"
%End
public:
QgsSvgSelectorFilterModel( QObject *parent /TransferThis/, const QString &path = QString(), int iconSize = 30 );
%Docstring
Constructor for creating a model for SVG files in a specific path.
:param parent: parent object
:param path: initial path, which is recursively searched
:param iconSize: desired size of SVG icons to create
%End
};
class QgsSvgSelectorListModel : QAbstractListModel
{
%Docstring(signature="appended")
A model for displaying SVG files with a preview icon. Population of the model is performed in
a background thread to ensure that initial creation of the model is responsive and does
not block the GUI.
%End
%TypeHeaderCode
#include "qgssvgselectorwidget.h"
%End
public:
QgsSvgSelectorListModel( QObject *parent /TransferThis/, int iconSize = 30 );
%Docstring
Constructor for QgsSvgSelectorListModel. All SVGs in folders from the application SVG
search paths will be shown.
:param parent: parent object
:param iconSize: desired size of SVG icons to create
%End
QgsSvgSelectorListModel( QObject *parent /TransferThis/, const QString &path, int iconSize = 30 );
%Docstring
Constructor for creating a model for SVG files in a specific path.
:param parent: parent object
:param path: initial path, which is recursively searched
:param iconSize: desired size of SVG icons to create
%End
virtual int rowCount( const QModelIndex &parent = QModelIndex() ) const;
virtual QVariant data( const QModelIndex &index, int role = Qt::DisplayRole ) const;
protected:
};
class QgsSvgSelectorGroupsModel : QStandardItemModel
{
%Docstring(signature="appended")
A model for displaying SVG search paths. Population of the model is performed in
a background thread to ensure that initial creation of the model is responsive and does
not block the GUI.
%End
%TypeHeaderCode
#include "qgssvgselectorwidget.h"
%End
public:
QgsSvgSelectorGroupsModel( QObject *parent /TransferThis/ );
~QgsSvgSelectorGroupsModel();
};
class QgsSvgSelectorWidget : QWidget
{
%TypeHeaderCode
#include "qgssvgselectorwidget.h"
%End
public:
QgsSvgSelectorWidget( QWidget *parent /TransferThis/ = 0 );
%Docstring
Constructor for QgsSvgSelectorWidget
%End
void initParametersModel( const QgsExpressionContextGenerator *generator, QgsVectorLayer *layer = 0 );
%Docstring
Initialize the parameters model so the context and the layer are referenced.
.. versionadded:: 3.18
%End
QString currentSvgPath() const;
QgsPictureSourceLineEditBase *sourceLineEdit() const;
%Docstring
Returns the source line edit
.. versionadded:: 3.16
%End
void setAllowParameters( bool allow );
%Docstring
Defines if the group box to fill parameters is visible
.. versionadded:: 3.18
%End
bool allowParamerters() const;
%Docstring
Returns if the group box to fill parameters is visible
.. versionadded:: 3.18
%End
void setBrowserVisible( bool visible );
%Docstring
Defines if the SVG browser should be visible
.. versionadded:: 3.20
%End
bool browserVisible() const;
%Docstring
Returns if the SVG browser should be visible
.. versionadded:: 3.20
%End
QgsPropertyOverrideButton *propertyOverrideToolButton() const;
%Docstring
Returns the property override tool button of the file line edit
.. versionadded:: 3.20
%End
public slots:
void setSvgPath( const QString &svgPath );
%Docstring
Accepts absolute paths
%End
void setSvgParameters( const QMap<QString, QgsProperty> ¶meters );
%Docstring
Sets the dynamic parameters
.. versionadded:: 3.18
%End
signals:
void svgSelected( const QString &path );
void svgParametersChanged( const QMap<QString, QgsProperty> ¶meters );
%Docstring
Emitted when the parameters have changed
.. versionadded:: 3.18
%End
protected:
void populateList();
};
class QgsSvgSelectorDialog : QDialog
{
%TypeHeaderCode
#include "qgssvgselectorwidget.h"
%End
public:
QgsSvgSelectorDialog( QWidget *parent /TransferThis/ = 0,
Qt::WindowFlags fl = QgsGuiUtils::ModalDialogFlags,
QDialogButtonBox::StandardButtons buttons = QDialogButtonBox::Close | QDialogButtonBox::Ok,
Qt::Orientation orientation = Qt::Horizontal );
%Docstring
Constructor for QgsSvgSelectorDialog.
%End
QgsSvgSelectorWidget *svgSelector();
%Docstring
Returns pointer to the embedded SVG selector widget
%End
protected:
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/symbology/qgssvgselectorwidget.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
|