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
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/symbology/qgsstyleexportimportdialog.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
class QgsStyleExportImportDialog : QDialog
{
%TypeHeaderCode
#include "qgsstyleexportimportdialog.h"
%End
public:
enum Mode
{
Export,
Import,
};
QgsStyleExportImportDialog( QgsStyle *style, QWidget *parent /TransferThis/ = 0, Mode mode = Export );
%Docstring
Constructor for QgsStyleExportImportDialog, with the specified ``parent`` widget.
Creates a dialog for importing symbols into the given ``style``, or exporting symbols from the ``style``.
The ``mode`` argument dictates whether the dialog is to be used for exporting or importing symbols.
%End
~QgsStyleExportImportDialog();
void setImportFilePath( const QString &path );
%Docstring
Sets the initial ``path`` to use for importing files, when the dialog is in a Import mode.
.. versionadded:: 3.6
%End
void selectSymbols( const QStringList &symbolNames );
%Docstring
selectSymbols select symbols by name
:param symbolNames: list of symbol names
%End
void deselectSymbols( const QStringList &symbolNames );
%Docstring
deselectSymbols deselect symbols by name
:param symbolNames: list of symbol names
%End
public slots:
void doExportImport();
void selectByGroup();
%Docstring
selectByGroup open select by group dialog
%End
void selectAll();
%Docstring
selectAll selects all symbols
%End
void clearSelection();
%Docstring
clearSelection deselects all symbols
%End
void selectFavorites();
%Docstring
Selects favorite symbols
.. versionadded:: 3.14
%End
void deselectFavorites();
%Docstring
Deselects favorite symbols
.. versionadded:: 3.14
%End
void selectTag( const QString &tagName );
%Docstring
Select the symbols belonging to the given tag
:param tagName: the name of the group to be selected
%End
void deselectTag( const QString &tagName );
%Docstring
Deselect the symbols belonging to the given tag
:param tagName: the name of the group to be deselected
%End
void selectSmartgroup( const QString &groupName );
%Docstring
selectSmartgroup selects all symbols from a smart group
:param groupName:
%End
void deselectSmartgroup( const QString &groupName );
%Docstring
deselectSmartgroup deselects all symbols from a smart group
:param groupName:
%End
void importTypeChanged( int );
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/symbology/qgsstyleexportimportdialog.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
|