mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-01 00:46:20 -05:00
21 lines
453 B
Plaintext
21 lines
453 B
Plaintext
class QgsSizeScaleWidget : QgsDataDefinedAssistant
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgssizescalewidget.h>
|
|
%End
|
|
public:
|
|
QgsSizeScaleWidget( const QgsVectorLayer * layer, const QgsMarkerSymbolV2 * 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 * );
|
|
};
|
|
|