mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-27 00:33:48 -05:00
21 lines
451 B
Plaintext
21 lines
451 B
Plaintext
class QgsSizeScaleWidget : QgsDataDefinedAssistant
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgssizescalewidget.h>
|
|
%End
|
|
public:
|
|
QgsSizeScaleWidget( const QgsVectorLayer * layer, const QgsMarkerSymbol * symbol );
|
|
|
|
QgsDataDefined dataDefined() const;
|
|
|
|
/** Returns the vector layer associated with the widget.
|
|
* @note added in QGIS 2.12
|
|
*/
|
|
const QgsVectorLayer* layer() const;
|
|
|
|
protected:
|
|
|
|
virtual void showEvent( QShowEvent * );
|
|
};
|
|
|