16#include "moc_qgsheatmaprendererwidget.cpp"
41 expContext = lMapCanvas->createExpressionContext();
77 QLabel *label =
new QLabel( tr(
"The heatmap renderer only applies to point and multipoint layers. \n"
78 "'%1' is not a point layer and cannot be rendered as a heatmap." )
79 .arg( layer->
name() ),
this );
81 setLayout(
new QGridLayout() );
82 layout()->addWidget( label );
88 connect( mRadiusSpinBox,
static_cast < void ( QDoubleSpinBox::* )(
double )
> ( &QDoubleSpinBox::valueChanged ),
this, &QgsHeatmapRendererWidget::mRadiusSpinBox_valueChanged );
89 connect( mMaxSpinBox,
static_cast < void ( QDoubleSpinBox::* )(
double )
> ( &QDoubleSpinBox::valueChanged ),
this, &QgsHeatmapRendererWidget::mMaxSpinBox_valueChanged );
90 connect( mQualitySlider, &QSlider::valueChanged,
this, &QgsHeatmapRendererWidget::mQualitySlider_valueChanged );
91 this->layout()->setContentsMargins( 0, 0, 0, 0 );
99 mWeightExpressionWidget->registerExpressionContextGenerator(
this );
100 mWeightExpressionWidget->setAllowEmptyFieldName(
true );
108 mRenderer = std::make_unique< QgsHeatmapRenderer >();
113 btnColorRamp->setShowGradientOnly(
true );
116 connect( mLegendSettingsButton, &QPushButton::clicked,
this, &QgsHeatmapRendererWidget::showLegendSettings );
118 if ( mRenderer->colorRamp() )
120 btnColorRamp->blockSignals(
true );
121 btnColorRamp->setColorRamp( mRenderer->colorRamp() );
122 btnColorRamp->blockSignals(
false );
124 mRadiusSpinBox->blockSignals(
true );
125 mRadiusSpinBox->setValue( mRenderer->radius() );
126 mRadiusSpinBox->blockSignals(
false );
127 mRadiusUnitWidget->blockSignals(
true );
128 mRadiusUnitWidget->setUnit( mRenderer->radiusUnit() );
129 mRadiusUnitWidget->setMapUnitScale( mRenderer->radiusMapUnitScale() );
130 mRadiusUnitWidget->blockSignals(
false );
131 mMaxSpinBox->blockSignals(
true );
132 mMaxSpinBox->setValue( mRenderer->maximumValue() );
133 mMaxSpinBox->blockSignals(
false );
134 mQualitySlider->blockSignals(
true );
135 mQualitySlider->setValue( mRenderer->renderQuality() );
136 mQualitySlider->blockSignals(
false );
138 mWeightExpressionWidget->setLayer( layer );
139 mWeightExpressionWidget->setField( mRenderer->weightExpression() );
150 return mRenderer.get();
157 mRadiusUnitWidget->setMapCanvas( lMapCanvas );
160void QgsHeatmapRendererWidget::applyColorRamp()
171 mRenderer->setColorRamp( ramp );
175void QgsHeatmapRendererWidget::showLegendSettings()
183 legendPanel->
setSettings( mRenderer->legendSettings() );
186 mRenderer->setLegendSettings( legendPanel->
settings() );
194 dialog.setUseContinuousRampCheckBoxVisibility(
false );
195 dialog.setWindowTitle( tr(
"Legend Settings" ) );
198 mRenderer->setLegendSettings( dialog.settings() );
204void QgsHeatmapRendererWidget::mRadiusUnitWidget_changed()
211 mRenderer->setRadiusUnit( mRadiusUnitWidget->unit() );
212 mRenderer->setRadiusMapUnitScale( mRadiusUnitWidget->getMapUnitScale() );
216void QgsHeatmapRendererWidget::mRadiusSpinBox_valueChanged(
double d )
223 mRenderer->setRadius( d );
227void QgsHeatmapRendererWidget::mMaxSpinBox_valueChanged(
double d )
234 mRenderer->setMaximumValue( d );
238void QgsHeatmapRendererWidget::mQualitySlider_valueChanged(
int v )
245 mRenderer->setRenderQuality( v );
249void QgsHeatmapRendererWidget::weightExpressionChanged(
const QString &expression )
251 mRenderer->setWeightExpression( expression );
@ Millimeters
Millimeters.
@ Points
Points (e.g., for font sizes)
@ MetersInMapUnits
Meters value as Map units.
A dialog for configuring a QgsColorRampLegendNode (QgsColorRampLegendNodeSettings).
Abstract base class for color ramps.
Single scope for storing variables and functions for use within a QgsExpressionContext.
static QgsExpressionContextScope * projectScope(const QgsProject *project)
Creates a new scope which contains variables and functions relating to a QGIS project.
static QgsExpressionContextScope * atlasScope(const QgsLayoutAtlas *atlas)
Creates a new scope which contains variables and functions relating to a QgsLayoutAtlas.
static QgsExpressionContextScope * mapSettingsScope(const QgsMapSettings &mapSettings)
Creates a new scope which contains variables and functions relating to a QgsMapSettings object.
static QgsExpressionContextScope * layerScope(const QgsMapLayer *layer)
Creates a new scope which contains variables and functions relating to a QgsMapLayer.
static QgsExpressionContextScope * globalScope()
Creates a new scope which contains variables and functions relating to the global QGIS context.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
void appendScope(QgsExpressionContextScope *scope)
Appends a scope to the end of the context.
Abstract base class for all 2D vector feature renderers.
@ HeatmapRadius
Heatmap renderer radius.
@ HeatmapMaximum
Heatmap maximum value.
void copyRendererData(QgsFeatureRenderer *destRenderer) const
Clones generic renderer data to another renderer.
static QgsHeatmapRenderer * convertFromRenderer(const QgsFeatureRenderer *renderer)
The QgsMapSettings class contains configuration for rendering of the map.
static QgsProject * instance()
Returns the QgsProject singleton instance.
Contains settings which reflect the context in which a symbol (or renderer) widget is shown,...
QList< QgsExpressionContextScope > additionalExpressionContextScopes() const
Returns the list of additional expression context scopes to show as available within the layer.
QgsMapCanvas * mapCanvas() const
Returns the map canvas associated with the widget.
Represents a vector layer which manages a vector based data sets.
Q_INVOKABLE Qgis::GeometryType geometryType() const
Returns point, line or polygon.