-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2405 from elpaso/symbol-export-select-by-group
Interactive selection by group of exported symbols
- Loading branch information
Showing
9 changed files
with
537 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
python/gui/symbology-ng/qgsstylev2groupselectiondialog.sip
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/*************************************************************************** | ||
qgsstylev2groupselectiondialog.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 QgsStyleV2GroupSelectionDialog : public QDialog, private Ui::SymbolsV2GroupSelectionDialogBase | ||
{ | ||
%TypeHeaderCode | ||
#include <qgsstylev2groupselectiondialog.h> | ||
%End | ||
|
||
public: | ||
QgsStyleV2GroupSelectionDialog(QgsStyleV2* style, QWidget *parent = 0); | ||
~QgsStyleV2GroupSelectionDialog(); | ||
//! Set bold font for item | ||
void setBold(QStandardItem *item); | ||
|
||
signals: | ||
//! group with groupName has been selected | ||
void groupSelected( const QString groupName ); | ||
//! group with groupName has been deselected | ||
void groupDeselected( const QString groupName ); | ||
//! 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( ); | ||
|
||
}; | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.