-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Travis warnings and missing docs/sip
- Loading branch information
1 parent
3dcc69a
commit ca7b504
Showing
8 changed files
with
70 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
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,33 @@ | ||
/** \class QgsPointClusterRendererWidget | ||
* \ingroup gui | ||
* A widget which allows configuration of the properties for a QgsPointClusterRenderer. | ||
* \note added in QGIS 3.0 | ||
*/ | ||
|
||
class QgsPointClusterRendererWidget: QgsRendererWidget | ||
{ | ||
%TypeHeaderCode | ||
#include <qgspointclusterrendererwidget.h> | ||
%End | ||
public: | ||
|
||
/** Returns a new QgsPointClusterRendererWidget. | ||
* @param layer associated vector layer | ||
* @param style style collection | ||
* @param renderer source QgsPointClusterRenderer renderer | ||
* @returns new QgsRendererWidget | ||
*/ | ||
static QgsRendererWidget* create( QgsVectorLayer* layer, QgsStyle* style, QgsFeatureRenderer* renderer ) /Factory/; | ||
|
||
/** Constructor for QgsPointClusterRendererWidget. | ||
* @param layer associated vector layer | ||
* @param style style collection | ||
* @param renderer source QgsPointClusterRenderer renderer | ||
*/ | ||
QgsPointClusterRendererWidget( QgsVectorLayer* layer, QgsStyle* style, QgsFeatureRenderer* renderer ); | ||
|
||
~QgsPointClusterRendererWidget(); | ||
|
||
QgsFeatureRenderer* renderer(); | ||
void setContext( const QgsSymbolWidgetContext& context ); | ||
}; |
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
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