2016-11-07 08:41:33 +07:00
|
|
|
class QgsStyleSaveDialog : QDialog
|
|
|
|
{
|
|
|
|
%TypeHeaderCode
|
|
|
|
#include <qgsstylesavedialog.h>
|
|
|
|
%End
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Constructor for QgsSymbolSaveDialog
|
|
|
|
* @param parent parent widget
|
|
|
|
* @param type the QgsStyle entity type being saved
|
|
|
|
*/
|
2017-05-01 18:13:15 +02:00
|
|
|
QgsStyleSaveDialog( QWidget *parent /TransferThis/ = NULL, QgsStyle::StyleEntity type = QgsStyle::SymbolEntity );
|
2016-11-07 08:41:33 +07:00
|
|
|
|
|
|
|
//! 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;
|
|
|
|
};
|