QGIS/python/gui/symbology-ng/qgsstylesavedialog.sip
2017-05-01 20:00:51 +02:00

23 lines
607 B
Plaintext

class QgsStyleSaveDialog : QDialog
{
%TypeHeaderCode
#include <qgsstylesavedialog.h>
%End
public:
/** Constructor for QgsSymbolSaveDialog
* @param parent parent widget
* @param type the QgsStyle entity type being saved
*/
QgsStyleSaveDialog( QWidget *parent /TransferThis/ = NULL, QgsStyle::StyleEntity type = QgsStyle::SymbolEntity );
//! returns the text value of the name element
QString name() const;
//! returns the text value of the tags element
QString tags() const;
//! returns whether the favorite element is checked
bool isFavorite() const;
};