/*************************************************************************** qgsstylegroupselectiondialog.h --------------------- begin : Oct 2015 copyright : (C) 2015 by Alessandro Pasotti email : elpaso at itopen dot it *************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ class QgsStyleGroupSelectionDialog : public QDialog, private Ui::SymbolsGroupSelectionDialogBase { %TypeHeaderCode #include %End public: QgsStyleGroupSelectionDialog( QgsStyle *style, QWidget *parent = 0 ); ~QgsStyleGroupSelectionDialog(); //! Set bold font for item void setBold( QStandardItem *item ); signals: //! tag with tagName has been selected void tagSelected( const QString &tagName ); //! tag with tagName has been deselected void tagDeselected( const QString &tagName ); //! smartgroup with groupName has been selected void smartgroupSelected( const QString &groupName ); //! smart group with groupName has been deselected void smartgroupDeselected( const QString &groupName ); //! all deselected void allDeselected(); //! all selected void allSelected(); };