QGIS/python/gui/symbology-ng/qgsstylegroupselectiondialog.sip

46 lines
1.7 KiB
Plaintext
Raw Normal View History

/***************************************************************************
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. *
* *
***************************************************************************/
2016-08-06 11:01:42 +02:00
class QgsStyleGroupSelectionDialog : public QDialog, private Ui::SymbolsGroupSelectionDialogBase
{
%TypeHeaderCode
#include <qgsstylegroupselectiondialog.h>
%End
public:
2016-08-06 11:01:42 +02:00
QgsStyleGroupSelectionDialog( QgsStyle* style, QWidget *parent = 0 );
~QgsStyleGroupSelectionDialog();
//! Set bold font for item
2016-02-14 03:50:23 +01:00
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
2016-02-14 03:50:23 +01:00
void smartgroupSelected( const QString& groupName );
//! smart group with groupName has been deselected
void smartgroupDeselected( const QString& groupName );
//! all deselected
2016-02-14 03:50:23 +01:00
void allDeselected();
//! all selected
2016-02-14 03:50:23 +01:00
void allSelected();
};