QGIS API Documentation 3.43.0-Master (3ee7834ace6)
qgsdiagramproperties.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsdiagramproperties.cpp
3 Adjust the properties for diagrams
4 -------------------
5 begin : August 2012
6 copyright : (C) Matthias Kuhn
7 email : matthias at opengis dot ch
8
9 ***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
23
24#include "qgsproject.h"
25#include "qgsapplication.h"
29#include "moc_qgsdiagramproperties.cpp"
30#include "qgsdiagramrenderer.h"
31#include "qgsfeatureiterator.h"
33#include "qgsmapcanvas.h"
35#include "qgslogger.h"
36#include "qgssettings.h"
38#include "qgsauxiliarystorage.h"
42#include "qgspainteffect.h"
43#include "qgslinesymbol.h"
44
45#include <QList>
46#include <QMessageBox>
47#include <QStyledItemDelegate>
48#include <QRandomGenerator>
49
50QgsExpressionContext QgsDiagramProperties::createExpressionContext() const
51{
52 QgsExpressionContext expContext;
53 if ( mMapCanvas )
54 {
55 expContext = mMapCanvas->createExpressionContext();
56 }
57 else
58 {
63 }
64 expContext << QgsExpressionContextUtils::layerScope( mLayer );
65
66 return expContext;
67}
68
70 : QgsPanelWidget( parent )
71 , mLayer( layer )
72 , mMapCanvas( canvas )
73{
74 if ( !layer )
75 {
76 return;
77 }
78
79 setupUi( this );
80 connect( mDiagramTypeComboBox, static_cast<void ( QComboBox::* )( int )>( &QComboBox::currentIndexChanged ), this, &QgsDiagramProperties::mDiagramTypeComboBox_currentIndexChanged );
81 connect( mAddCategoryPushButton, &QPushButton::clicked, this, &QgsDiagramProperties::mAddCategoryPushButton_clicked );
82 connect( mAttributesTreeWidget, &QTreeWidget::itemDoubleClicked, this, &QgsDiagramProperties::mAttributesTreeWidget_itemDoubleClicked );
83 connect( mFindMaximumValueButton, &QPushButton::clicked, this, &QgsDiagramProperties::mFindMaximumValueButton_clicked );
84 connect( mRemoveCategoryPushButton, &QPushButton::clicked, this, &QgsDiagramProperties::mRemoveCategoryPushButton_clicked );
85 connect( mDiagramAttributesTreeWidget, &QTreeWidget::itemDoubleClicked, this, &QgsDiagramProperties::mDiagramAttributesTreeWidget_itemDoubleClicked );
86 connect( mDiagramStackedWidget, &QStackedWidget::currentChanged, this, &QgsDiagramProperties::mDiagramStackedWidget_currentChanged );
87
88 // get rid of annoying outer focus rect on Mac
89 mDiagramOptionsListWidget->setAttribute( Qt::WA_MacShowFocusRect, false );
90
91 const int iconSize = QgsGuiUtils::scaleIconSize( 20 );
92 mOptionsTab->setIconSize( QSize( iconSize, iconSize ) );
93 mDiagramOptionsListWidget->setIconSize( QSize( iconSize, iconSize ) );
94
95 mBarSpacingSpinBox->setClearValue( 0 );
97
98 mDiagramFontButton->setMode( QgsFontButton::ModeQFont );
99
100 mDiagramTypeComboBox->blockSignals( true );
101 QIcon icon = QgsApplication::getThemeIcon( QStringLiteral( "pie-chart.svg" ) );
102 mDiagramTypeComboBox->addItem( icon, tr( "Pie Chart" ), QgsPieDiagram::DIAGRAM_NAME_PIE );
103 icon = QgsApplication::getThemeIcon( QStringLiteral( "text.svg" ) );
104 mDiagramTypeComboBox->addItem( icon, tr( "Text Diagram" ), QgsTextDiagram::DIAGRAM_NAME_TEXT );
105 icon = QgsApplication::getThemeIcon( QStringLiteral( "histogram.svg" ) );
106 mDiagramTypeComboBox->addItem( icon, tr( "Histogram" ), QgsHistogramDiagram::DIAGRAM_NAME_HISTOGRAM );
107 icon = QgsApplication::getThemeIcon( QStringLiteral( "stacked-bar.svg" ) );
108 mDiagramTypeComboBox->addItem( icon, tr( "Stacked Bars" ), QgsStackedBarDiagram::DIAGRAM_NAME_STACKED_BAR );
109 mDiagramTypeComboBox->blockSignals( false );
110
111 mAxisLineStyleButton->setSymbolType( Qgis::SymbolType::Line );
112 mAxisLineStyleButton->setDialogTitle( tr( "Axis Line Symbol" ) );
113
114 mScaleRangeWidget->setMapCanvas( mMapCanvas );
115 mSizeFieldExpressionWidget->registerExpressionContextGenerator( this );
116
117 mBackgroundColorButton->setColorDialogTitle( tr( "Select Background Color" ) );
118 mBackgroundColorButton->setAllowOpacity( true );
119 mBackgroundColorButton->setContext( QStringLiteral( "symbology" ) );
120 mBackgroundColorButton->setShowNoColor( true );
121 mBackgroundColorButton->setNoColorString( tr( "Transparent Background" ) );
122 mDiagramPenColorButton->setColorDialogTitle( tr( "Select Pen Color" ) );
123 mDiagramPenColorButton->setAllowOpacity( true );
124 mDiagramPenColorButton->setContext( QStringLiteral( "symbology" ) );
125 mDiagramPenColorButton->setShowNoColor( true );
126 mDiagramPenColorButton->setNoColorString( tr( "Transparent Stroke" ) );
127
128 mMaxValueSpinBox->setShowClearButton( false );
129 mSizeSpinBox->setClearValue( 5 );
130
131 mDiagramAttributesTreeWidget->setItemDelegateForColumn( ColumnAttributeExpression, new EditBlockerDelegate( this ) );
132 mDiagramAttributesTreeWidget->setItemDelegateForColumn( ColumnColor, new QgsColorSwatchDelegate( this ) );
133
134 mDiagramAttributesTreeWidget->setColumnWidth( ColumnColor, Qgis::UI_SCALE_FACTOR * fontMetrics().horizontalAdvance( 'X' ) * 6.6 );
135
136 connect( mFixedSizeRadio, &QRadioButton::toggled, this, &QgsDiagramProperties::scalingTypeChanged );
137 connect( mAttributeBasedScalingRadio, &QRadioButton::toggled, this, &QgsDiagramProperties::scalingTypeChanged );
138
141
142 const Qgis::GeometryType layerType = layer->geometryType();
143 if ( layerType == Qgis::GeometryType::Unknown || layerType == Qgis::GeometryType::Null )
144 {
145 mDiagramTypeComboBox->setEnabled( false );
146 mOptionsTab->setEnabled( false );
147 mDiagramFrame->setEnabled( false );
148 }
149
150 // set placement methods page based on geometry type
151
152 switch ( layerType )
153 {
155 stackedPlacement->setCurrentWidget( pagePoint );
156 mLinePlacementFrame->setVisible( false );
157 break;
159 stackedPlacement->setCurrentWidget( pageLine );
160 mLinePlacementFrame->setVisible( true );
161 break;
163 stackedPlacement->setCurrentWidget( pagePolygon );
164 mLinePlacementFrame->setVisible( false );
165 break;
168 break;
169 }
170
171 //insert placement options
172 // setup point placement button group
173 mPlacePointBtnGrp = new QButtonGroup( this );
174 mPlacePointBtnGrp->addButton( radAroundPoint );
175 mPlacePointBtnGrp->addButton( radOverPoint );
176 mPlacePointBtnGrp->setExclusive( true );
177 connect( mPlacePointBtnGrp, qOverload<QAbstractButton *>( &QButtonGroup::buttonClicked ), this, &QgsDiagramProperties::updatePlacementWidgets );
178
179 // setup line placement button group
180 mPlaceLineBtnGrp = new QButtonGroup( this );
181 mPlaceLineBtnGrp->addButton( radAroundLine );
182 mPlaceLineBtnGrp->addButton( radOverLine );
183 mPlaceLineBtnGrp->setExclusive( true );
184 connect( mPlaceLineBtnGrp, qOverload<QAbstractButton *>( &QButtonGroup::buttonClicked ), this, &QgsDiagramProperties::updatePlacementWidgets );
185
186 // setup polygon placement button group
187 mPlacePolygonBtnGrp = new QButtonGroup( this );
188 mPlacePolygonBtnGrp->addButton( radAroundCentroid );
189 mPlacePolygonBtnGrp->addButton( radOverCentroid );
190 mPlacePolygonBtnGrp->addButton( radPolygonPerimeter );
191 mPlacePolygonBtnGrp->addButton( radInsidePolygon );
192 mPlacePolygonBtnGrp->setExclusive( true );
193 connect( mPlacePolygonBtnGrp, qOverload<QAbstractButton *>( &QButtonGroup::buttonClicked ), this, &QgsDiagramProperties::updatePlacementWidgets );
194
195 mLabelPlacementComboBox->addItem( tr( "Height" ), QgsDiagramSettings::Height );
196 mLabelPlacementComboBox->addItem( tr( "x-height" ), QgsDiagramSettings::XHeight );
197
198 mScaleDependencyComboBox->addItem( tr( "Area" ), true );
199 mScaleDependencyComboBox->addItem( tr( "Diameter" ), false );
200
201 mAngleOffsetComboBox->addItem( tr( "Top" ), 270 );
202 mAngleOffsetComboBox->addItem( tr( "Right" ), 0 );
203 mAngleOffsetComboBox->addItem( tr( "Bottom" ), 90 );
204 mAngleOffsetComboBox->addItem( tr( "Left" ), 180 );
205
206 mAngleDirectionComboBox->addItem( tr( "Clockwise" ), QgsDiagramSettings::Clockwise );
207 mAngleDirectionComboBox->addItem( tr( "Counter-clockwise" ), QgsDiagramSettings::Counterclockwise );
208
209 const QgsSettings settings;
210
211 // reset horiz stretch of left side of options splitter (set to 1 for previewing in Qt Designer)
212 QSizePolicy policy( mDiagramOptionsListFrame->sizePolicy() );
213 policy.setHorizontalStretch( 0 );
214 mDiagramOptionsListFrame->setSizePolicy( policy );
215 if ( !settings.contains( QStringLiteral( "/Windows/Diagrams/OptionsSplitState" ) ) )
216 {
217 // set left list widget width on initial showing
218 QList<int> splitsizes;
219 splitsizes << 115;
220 mDiagramOptionsSplitter->setSizes( splitsizes );
221 }
222
223 // restore dialog, splitters and current tab
224 mDiagramOptionsSplitter->restoreState( settings.value( QStringLiteral( "Windows/Diagrams/OptionsSplitState" ) ).toByteArray() );
225 mDiagramOptionsListWidget->setCurrentRow( settings.value( QStringLiteral( "Windows/Diagrams/Tab" ), 0 ).toInt() );
226
227 // set correct initial tab to match displayed setting page
228 whileBlocking( mOptionsTab )->setCurrentIndex( mDiagramStackedWidget->currentIndex() );
229 mOptionsTab->tabBar()->setUsesScrollButtons( true );
230
231 // field combo and expression button
232 mSizeFieldExpressionWidget->setLayer( mLayer );
233 QgsDistanceArea myDa;
235 myDa.setEllipsoid( QgsProject::instance()->ellipsoid() );
236 mSizeFieldExpressionWidget->setGeomCalculator( myDa );
237
238 //insert all attributes into the combo boxes
239 const QgsFields &layerFields = layer->fields();
240 for ( int idx = 0; idx < layerFields.count(); ++idx )
241 {
242 QTreeWidgetItem *newItem = new QTreeWidgetItem( mAttributesTreeWidget );
243 const QString name = QStringLiteral( "\"%1\"" ).arg( layerFields.at( idx ).name() );
244 newItem->setText( 0, name );
245 newItem->setData( 0, RoleAttributeExpression, name );
246 newItem->setFlags( newItem->flags() & ~Qt::ItemIsDropEnabled );
247 }
248
249 mPaintEffect.reset( QgsPaintEffectRegistry::defaultStack() );
250 mPaintEffect->setEnabled( false );
251
252 mOrientationLeftButton->setProperty( "direction", QgsDiagramSettings::Left );
253 mOrientationRightButton->setProperty( "direction", QgsDiagramSettings::Right );
254 mOrientationUpButton->setProperty( "direction", QgsDiagramSettings::Up );
255 mOrientationDownButton->setProperty( "direction", QgsDiagramSettings::Down );
256
257 // Labels to let users know some widgets are not present
258 // when editing sub diagrams in a stacked diagram.
259 mDlsLabel_1->hide();
260 mDlsLabel_2->hide();
261
262 insertDefaults();
263 mPaintEffectWidget->setPaintEffect( mPaintEffect.get() );
264
265 connect( mAddAttributeExpression, &QPushButton::clicked, this, &QgsDiagramProperties::showAddAttributeExpressionDialog );
266 registerDataDefinedButton( mBackgroundColorDDBtn, QgsDiagramLayerSettings::Property::BackgroundColor );
267 registerDataDefinedButton( mLineColorDDBtn, QgsDiagramLayerSettings::Property::StrokeColor );
268 registerDataDefinedButton( mLineWidthDDBtn, QgsDiagramLayerSettings::Property::StrokeWidth );
269 registerDataDefinedButton( mCoordXDDBtn, QgsDiagramLayerSettings::Property::PositionX );
270 registerDataDefinedButton( mCoordYDDBtn, QgsDiagramLayerSettings::Property::PositionY );
271 registerDataDefinedButton( mDistanceDDBtn, QgsDiagramLayerSettings::Property::Distance );
272 registerDataDefinedButton( mPriorityDDBtn, QgsDiagramLayerSettings::Property::Priority );
273 registerDataDefinedButton( mZOrderDDBtn, QgsDiagramLayerSettings::Property::ZIndex );
274 registerDataDefinedButton( mShowDiagramDDBtn, QgsDiagramLayerSettings::Property::Show );
275 registerDataDefinedButton( mAlwaysShowDDBtn, QgsDiagramLayerSettings::Property::AlwaysShow );
276 registerDataDefinedButton( mIsObstacleDDBtn, QgsDiagramLayerSettings::Property::IsObstacle );
277 registerDataDefinedButton( mStartAngleDDBtn, QgsDiagramLayerSettings::Property::StartAngle );
278
279 connect( mButtonSizeLegendSettings, &QPushButton::clicked, this, &QgsDiagramProperties::showSizeLegendDialog );
280
281 QList<QWidget *> widgets;
282 widgets << chkLineAbove;
283 widgets << chkLineBelow;
284 widgets << chkLineOn;
285 widgets << chkLineOrientationDependent;
286 widgets << mAngleDirectionComboBox;
287 widgets << mAngleOffsetComboBox;
288 widgets << mAttributeBasedScalingRadio;
289 widgets << mAxisLineStyleButton;
290 widgets << mBackgroundColorButton;
291 widgets << mBarSpacingSpinBox;
292 widgets << mBarSpacingUnitComboBox;
293 widgets << mBarWidthSpinBox;
294 widgets << mCheckBoxAttributeLegend;
295 widgets << mDiagramAttributesTreeWidget;
296 widgets << mDiagramDistanceSpinBox;
297 widgets << mDiagramFontButton;
298 widgets << mDiagramPenColorButton;
299 widgets << mDiagramSizeSpinBox;
300 widgets << mDiagramLineUnitComboBox;
301 widgets << mDiagramTypeComboBox;
302 widgets << mDiagramUnitComboBox;
303 widgets << mEnableDiagramCheckBox;
304 widgets << mFixedSizeRadio;
305 widgets << mIncreaseMinimumSizeSpinBox;
306 widgets << mIncreaseSmallDiagramsGroupBox;
307 widgets << mLabelPlacementComboBox;
308 widgets << mMaxValueSpinBox;
309 widgets << mPaintEffectWidget;
310 widgets << mPenWidthSpinBox;
311 widgets << mPrioritySlider;
312 widgets << mOpacityWidget;
313 widgets << mOrientationDownButton;
314 widgets << mOrientationLeftButton;
315 widgets << mOrientationRightButton;
316 widgets << mOrientationUpButton;
317 widgets << mScaleDependencyComboBox;
318 widgets << mScaleRangeWidget;
319 widgets << mScaleVisibilityGroupBox;
320 widgets << mShowAllCheckBox;
321 widgets << mShowAxisGroupBox;
322 widgets << mSizeFieldExpressionWidget;
323 widgets << mSizeSpinBox;
324 widgets << mZIndexSpinBox;
325 widgets << radAroundCentroid;
326 widgets << radAroundLine;
327 widgets << radAroundPoint;
328 widgets << radInsidePolygon;
329 widgets << radOverCentroid;
330 widgets << radOverLine;
331 widgets << radOverPoint;
332 widgets << radPolygonPerimeter;
333
334 connectValueChanged( widgets );
335}
336
338{
340 mOptionsTab->setVisible( dockMode );
341 mOptionsTab->setTabToolTip( 0, tr( "Attributes" ) );
342 mOptionsTab->setTabToolTip( 1, tr( "Rendering" ) );
343 mOptionsTab->setTabToolTip( 2, tr( "Size" ) );
344 mOptionsTab->setTabToolTip( 3, tr( "Placement" ) );
345 mOptionsTab->setTabToolTip( 4, tr( "Options" ) );
346 mOptionsTab->setTabToolTip( 5, tr( "Legend" ) );
347 mDiagramOptionsListFrame->setVisible( !dockMode );
348}
349
350void QgsDiagramProperties::setDiagramType( const QString diagramType )
351{
352 mDiagramType = diagramType;
353
354 mDiagramTypeComboBox->setVisible( false );
355 mDiagramTypeComboBox->blockSignals( true );
356 mDiagramTypeComboBox->setCurrentIndex( mDiagramTypeComboBox->findData( mDiagramType ) );
357 mDiagramTypeComboBox->blockSignals( false );
358
359 //force a refresh of widget status to match diagram type
360 mDiagramTypeComboBox_currentIndexChanged( mDiagramTypeComboBox->currentIndex() );
361}
362
363void QgsDiagramProperties::insertDefaults()
364{
365 mFixedSizeRadio->setChecked( true );
366 mDiagramUnitComboBox->setUnit( Qgis::RenderUnit::Millimeters );
367 mDiagramLineUnitComboBox->setUnit( Qgis::RenderUnit::Millimeters );
368 mLabelPlacementComboBox->setCurrentIndex( mLabelPlacementComboBox->findText( tr( "x-height" ) ) );
369 mDiagramSizeSpinBox->setEnabled( true );
370 mDiagramSizeSpinBox->setValue( 15 );
371 mLinearScaleFrame->setEnabled( false );
372 mBarWidthSpinBox->setValue( 5 );
373 mScaleVisibilityGroupBox->setChecked( mLayer->hasScaleBasedVisibility() );
374 mScaleRangeWidget->setScaleRange( mLayer->minimumScale(), mLayer->maximumScale() );
375 mShowAllCheckBox->setChecked( true );
376 mCheckBoxAttributeLegend->setChecked( true );
377
378 switch ( mLayer->geometryType() )
379 {
381 radAroundPoint->setChecked( true );
382 break;
383
385 radAroundLine->setChecked( true );
386 chkLineAbove->setChecked( true );
387 chkLineBelow->setChecked( false );
388 chkLineOn->setChecked( false );
389 chkLineOrientationDependent->setChecked( false );
390 break;
391
393 radOverCentroid->setChecked( true );
394 mDiagramDistanceLabel->setEnabled( false );
395 mDiagramDistanceSpinBox->setEnabled( false );
396 mDistanceDDBtn->setEnabled( false );
397 break;
398
401 break;
402 }
403 mBackgroundColorButton->setColor( QColor( 255, 255, 255, 255 ) );
404 mDiagramPenColorButton->setColor( QColor( 0, 0, 0, 255 ) );
405 //force a refresh of widget status to match diagram type
406 mDiagramTypeComboBox_currentIndexChanged( mDiagramTypeComboBox->currentIndex() );
407}
408
410{
411 const QgsDiagramRenderer *renderer = mLayer->diagramRenderer();
413 {
414 const QgsStackedDiagramRenderer *stackedRenderer = static_cast<const QgsStackedDiagramRenderer *>( renderer );
415 if ( stackedRenderer->rendererCount() > 0 )
416 {
417 // If layer has a stacked diagram renderer, take its first sub
418 // renderer as the basis for the new single one being created
419 renderer = stackedRenderer->renderer( 0 );
420 }
421 }
422 syncToRenderer( renderer );
423
424 const QgsDiagramLayerSettings *layerDls = mLayer->diagramLayerSettings();
425 syncToSettings( layerDls );
426}
427
429{
430 mDiagramAttributesTreeWidget->clear();
431
432 if ( !dr ) //no diagram renderer yet, insert reasonable default
433 {
434 insertDefaults();
435 }
436 else // already a diagram renderer present
437 {
438 //single category renderer or interpolated one?
440 {
441 mFixedSizeRadio->setChecked( true );
442 }
443 else
444 {
445 mAttributeBasedScalingRadio->setChecked( true );
446 }
447 mDiagramSizeSpinBox->setEnabled( mFixedSizeRadio->isChecked() );
448 mLinearScaleFrame->setEnabled( mAttributeBasedScalingRadio->isChecked() );
449 mCheckBoxAttributeLegend->setChecked( dr->attributeLegend() );
450
451 // Assume single category or linearly interpolated diagram renderer for now.
452 const QList<QgsDiagramSettings> settingList = dr->diagramSettings();
453 if ( !settingList.isEmpty() )
454 {
455 setDiagramEnabled( settingList.at( 0 ).enabled );
456 mDiagramFontButton->setCurrentFont( settingList.at( 0 ).font );
457 const QSizeF size = settingList.at( 0 ).size;
458 mBackgroundColorButton->setColor( settingList.at( 0 ).backgroundColor );
459 mOpacityWidget->setOpacity( settingList.at( 0 ).opacity );
460 mDiagramPenColorButton->setColor( settingList.at( 0 ).penColor );
461 mPenWidthSpinBox->setValue( settingList.at( 0 ).penWidth );
462 mDiagramSizeSpinBox->setValue( ( size.width() + size.height() ) / 2.0 );
463 mScaleRangeWidget->setScaleRange( ( settingList.at( 0 ).minimumScale > 0 ? settingList.at( 0 ).minimumScale : mLayer->minimumScale() ), ( settingList.at( 0 ).maximumScale > 0 ? settingList.at( 0 ).maximumScale : mLayer->maximumScale() ) );
464 mScaleVisibilityGroupBox->setChecked( settingList.at( 0 ).scaleBasedVisibility );
465 mDiagramUnitComboBox->setUnit( settingList.at( 0 ).sizeType );
466 mDiagramUnitComboBox->setMapUnitScale( settingList.at( 0 ).sizeScale );
467 mDiagramLineUnitComboBox->setUnit( settingList.at( 0 ).lineSizeUnit );
468 mDiagramLineUnitComboBox->setMapUnitScale( settingList.at( 0 ).lineSizeScale );
469
470 if ( settingList.at( 0 ).labelPlacementMethod == QgsDiagramSettings::Height )
471 {
472 mLabelPlacementComboBox->setCurrentIndex( 0 );
473 }
474 else
475 {
476 mLabelPlacementComboBox->setCurrentIndex( 1 );
477 }
478
479 if ( settingList.at( 0 ).paintEffect() )
480 mPaintEffect.reset( settingList.at( 0 ).paintEffect()->clone() );
481
482 mAngleOffsetComboBox->setCurrentIndex( mAngleOffsetComboBox->findData( settingList.at( 0 ).rotationOffset ) );
483 mAngleDirectionComboBox->setCurrentIndex( mAngleDirectionComboBox->findData( settingList.at( 0 ).direction() ) );
484
485 switch ( settingList.at( 0 ).diagramOrientation )
486 {
488 mOrientationLeftButton->setChecked( true );
489 break;
490
492 mOrientationRightButton->setChecked( true );
493 break;
494
496 mOrientationUpButton->setChecked( true );
497 break;
498
500 mOrientationDownButton->setChecked( true );
501 break;
502 }
503
504 mBarWidthSpinBox->setValue( settingList.at( 0 ).barWidth );
505 mBarSpacingSpinBox->setValue( settingList.at( 0 ).spacing() );
506 mBarSpacingUnitComboBox->setUnit( settingList.at( 0 ).spacingUnit() );
507 mBarSpacingUnitComboBox->setMapUnitScale( settingList.at( 0 ).spacingMapUnitScale() );
508
509 mShowAxisGroupBox->setChecked( settingList.at( 0 ).showAxis() );
510 if ( settingList.at( 0 ).axisLineSymbol() )
511 mAxisLineStyleButton->setSymbol( settingList.at( 0 ).axisLineSymbol()->clone() );
512
513 mIncreaseSmallDiagramsGroupBox->setChecked( settingList.at( 0 ).minimumSize != 0 );
514 mIncreaseMinimumSizeSpinBox->setValue( settingList.at( 0 ).minimumSize );
515
516 if ( settingList.at( 0 ).scaleByArea )
517 {
518 mScaleDependencyComboBox->setCurrentIndex( 0 );
519 }
520 else
521 {
522 mScaleDependencyComboBox->setCurrentIndex( 1 );
523 }
524
525 const QList<QColor> categoryColors = settingList.at( 0 ).categoryColors;
526 const QList<QString> categoryAttributes = settingList.at( 0 ).categoryAttributes;
527 const QList<QString> categoryLabels = settingList.at( 0 ).categoryLabels;
528 QList<QString>::const_iterator catIt = categoryAttributes.constBegin();
529 QList<QColor>::const_iterator coIt = categoryColors.constBegin();
530 QList<QString>::const_iterator labIt = categoryLabels.constBegin();
531 for ( ; catIt != categoryAttributes.constEnd(); ++catIt, ++coIt, ++labIt )
532 {
533 QTreeWidgetItem *newItem = new QTreeWidgetItem( mDiagramAttributesTreeWidget );
534 newItem->setText( 0, *catIt );
535 newItem->setData( 0, RoleAttributeExpression, *catIt );
536 newItem->setFlags( newItem->flags() & ~Qt::ItemIsDropEnabled );
537 newItem->setData( ColumnColor, Qt::EditRole, *coIt );
538 newItem->setText( 2, *labIt );
539 newItem->setFlags( newItem->flags() | Qt::ItemIsEditable );
540 }
541 }
542
544 {
546 if ( lidr )
547 {
548 mDiagramSizeSpinBox->setEnabled( false );
549 mLinearScaleFrame->setEnabled( true );
550 mMaxValueSpinBox->setValue( lidr->upperValue() );
551 mSizeSpinBox->setValue( ( lidr->upperSize().width() + lidr->upperSize().height() ) / 2 );
553 {
554 mSizeFieldExpressionWidget->setField( lidr->classificationAttributeExpression() );
555 }
556 else
557 {
558 mSizeFieldExpressionWidget->setField( lidr->classificationField() );
559 }
560
561 mSizeLegend.reset( lidr->dataDefinedSizeLegend() ? new QgsDataDefinedSizeLegend( *lidr->dataDefinedSizeLegend() ) : nullptr );
562 }
563 }
564
565 if ( dr->diagram() )
566 {
567 mDiagramType = dr->diagram()->diagramName();
568
569 mDiagramTypeComboBox->blockSignals( true );
570 mDiagramTypeComboBox->setCurrentIndex( mDiagramTypeComboBox->findData( mDiagramType ) );
571 mDiagramTypeComboBox->blockSignals( false );
572 //force a refresh of widget status to match diagram type
573 mDiagramTypeComboBox_currentIndexChanged( mDiagramTypeComboBox->currentIndex() );
574 }
575 }
576 mPaintEffectWidget->setPaintEffect( mPaintEffect.get() );
577}
578
580{
581 if ( dls )
582 {
583 mDiagramDistanceSpinBox->setValue( dls->distance() );
584 mPrioritySlider->setValue( dls->priority() );
585 mZIndexSpinBox->setValue( dls->zIndex() );
586
587 switch ( dls->placement() )
588 {
590 radAroundPoint->setChecked( true );
591 radAroundCentroid->setChecked( true );
592 break;
593
595 radOverPoint->setChecked( true );
596 radOverCentroid->setChecked( true );
597 break;
598
600 radAroundLine->setChecked( true );
601 radPolygonPerimeter->setChecked( true );
602 break;
603
605 radOverLine->setChecked( true );
606 radInsidePolygon->setChecked( true );
607 break;
608
609 default:
610 break;
611 }
612
613 chkLineAbove->setChecked( dls->linePlacementFlags() & QgsDiagramLayerSettings::AboveLine );
614 chkLineBelow->setChecked( dls->linePlacementFlags() & QgsDiagramLayerSettings::BelowLine );
615 chkLineOn->setChecked( dls->linePlacementFlags() & QgsDiagramLayerSettings::OnLine );
617 chkLineOrientationDependent->setChecked( true );
619
620 mShowAllCheckBox->setChecked( dls->showAllDiagrams() );
621
622 mDataDefinedProperties = dls->dataDefinedProperties();
623 }
624}
625
627{
628 QgsSettings settings;
629 settings.setValue( QStringLiteral( "Windows/Diagrams/OptionsSplitState" ), mDiagramOptionsSplitter->saveState() );
630 settings.setValue( QStringLiteral( "Windows/Diagrams/Tab" ), mDiagramOptionsListWidget->currentRow() );
631}
632
633void QgsDiagramProperties::registerDataDefinedButton( QgsPropertyOverrideButton *button, QgsDiagramLayerSettings::Property key )
634{
635 button->init( static_cast<int>( key ), mDataDefinedProperties, QgsDiagramLayerSettings::propertyDefinitions(), mLayer, true );
636 connect( button, &QgsPropertyOverrideButton::changed, this, &QgsDiagramProperties::updateProperty );
637 connect( button, &QgsPropertyOverrideButton::createAuxiliaryField, this, &QgsDiagramProperties::createAuxiliaryField );
639}
640
641void QgsDiagramProperties::updateProperty()
642{
643 QgsPropertyOverrideButton *button = qobject_cast<QgsPropertyOverrideButton *>( sender() );
645 mDataDefinedProperties.setProperty( key, button->toProperty() );
646 emit widgetChanged();
647}
648
650{
651 mDiagramType = mDiagramTypeComboBox->itemData( index ).toString();
652
653 if ( QgsTextDiagram::DIAGRAM_NAME_TEXT == mDiagramType )
654 {
655 mTextOptionsFrame->show();
656 mBackgroundColorLabel->show();
657 mBackgroundColorButton->show();
658 mBackgroundColorDDBtn->show();
659 mDiagramFontButton->show();
660 }
661 else
662 {
663 mTextOptionsFrame->hide();
664 mBackgroundColorLabel->hide();
665 mBackgroundColorButton->hide();
666 mBackgroundColorDDBtn->hide();
667 mDiagramFontButton->hide();
668 }
669
671 {
672 mBarWidthLabel->show();
673 mBarWidthSpinBox->show();
674 mBarSpacingLabel->show();
675 mBarSpacingSpinBox->show();
676 mBarSpacingUnitComboBox->show();
677 mBarOptionsFrame->show();
678 mShowAxisGroupBox->show();
680 mAttributeBasedScalingRadio->setChecked( true );
681 mFixedSizeRadio->setEnabled( QgsStackedBarDiagram::DIAGRAM_NAME_STACKED_BAR == mDiagramType );
682 mDiagramSizeSpinBox->setEnabled( QgsStackedBarDiagram::DIAGRAM_NAME_STACKED_BAR == mDiagramType );
683 mLinearlyScalingLabel->setText( tr( "Bar length: Scale linearly, so that the following value matches the specified bar length:" ) );
684 mSizeLabel->setText( tr( "Bar length" ) );
685 mFrameIncreaseSize->setVisible( false );
686 }
687 else
688 {
689 mBarWidthLabel->hide();
690 mBarWidthSpinBox->hide();
691 mBarSpacingLabel->hide();
692 mBarSpacingSpinBox->hide();
693 mBarSpacingUnitComboBox->hide();
694 mShowAxisGroupBox->hide();
695 mBarOptionsFrame->hide();
696 mLinearlyScalingLabel->setText( tr( "Scale linearly between 0 and the following attribute value / diagram size:" ) );
697 mSizeLabel->setText( tr( "Size" ) );
698 mAttributeBasedScalingRadio->setEnabled( true );
699 mFixedSizeRadio->setEnabled( true );
700 mDiagramSizeSpinBox->setEnabled( mFixedSizeRadio->isChecked() );
701 mFrameIncreaseSize->setVisible( true );
702 }
703
704 if ( QgsTextDiagram::DIAGRAM_NAME_TEXT == mDiagramType || QgsPieDiagram::DIAGRAM_NAME_PIE == mDiagramType )
705 {
706 mScaleDependencyComboBox->show();
707 mScaleDependencyLabel->show();
708 }
709 else
710 {
711 mScaleDependencyComboBox->hide();
712 mScaleDependencyLabel->hide();
713 }
714
715 if ( QgsPieDiagram::DIAGRAM_NAME_PIE == mDiagramType )
716 {
717 mAngleOffsetComboBox->show();
718 mAngleDirectionComboBox->show();
719 mAngleDirectionLabel->show();
720 mAngleOffsetLabel->show();
721 mStartAngleDDBtn->show();
722 }
723 else
724 {
725 mAngleOffsetComboBox->hide();
726 mAngleDirectionComboBox->hide();
727 mAngleDirectionLabel->hide();
728 mAngleOffsetLabel->hide();
729 mStartAngleDDBtn->hide();
730 }
731}
732
733QString QgsDiagramProperties::guessLegendText( const QString &expression )
734{
735 //trim unwanted characters from expression text for legend
736 QString text = expression.mid( expression.startsWith( '\"' ) ? 1 : 0 );
737 if ( text.endsWith( '\"' ) )
738 text.chop( 1 );
739 return text;
740}
741
742void QgsDiagramProperties::addAttribute( QTreeWidgetItem *item )
743{
744 QTreeWidgetItem *newItem = new QTreeWidgetItem( mDiagramAttributesTreeWidget );
745
746 newItem->setText( 0, item->text( 0 ) );
747 newItem->setText( 2, guessLegendText( item->text( 0 ) ) );
748 newItem->setData( 0, RoleAttributeExpression, item->data( 0, RoleAttributeExpression ) );
749 newItem->setFlags( ( newItem->flags() | Qt::ItemIsEditable ) & ~Qt::ItemIsDropEnabled );
750
751 //set initial color for diagram category
752 const int red = QRandomGenerator::global()->bounded( 1, 256 );
753 const int green = QRandomGenerator::global()->bounded( 1, 256 );
754 const int blue = QRandomGenerator::global()->bounded( 1, 256 );
755 const QColor randomColor( red, green, blue );
756 newItem->setData( ColumnColor, Qt::EditRole, randomColor );
757 mDiagramAttributesTreeWidget->addTopLevelItem( newItem );
758}
759
761{
762 const auto constSelectedItems = mAttributesTreeWidget->selectedItems();
763 for ( QTreeWidgetItem *attributeItem : constSelectedItems )
764 {
765 addAttribute( attributeItem );
766 }
767}
768
770{
771 Q_UNUSED( column )
772 addAttribute( item );
773}
774
776{
777 const auto constSelectedItems = mDiagramAttributesTreeWidget->selectedItems();
778 for ( QTreeWidgetItem *attributeItem : constSelectedItems )
779 {
780 delete attributeItem;
781 }
782}
783
785{
786 if ( !mLayer )
787 return;
788
789 float maxValue = 0.0;
790
791 bool isExpression;
792 const QString sizeFieldNameOrExp = mSizeFieldExpressionWidget->currentField( &isExpression );
793 if ( isExpression )
794 {
795 QgsExpression exp( sizeFieldNameOrExp );
796 QgsExpressionContext context;
801
802 exp.prepare( &context );
803 if ( !exp.hasEvalError() )
804 {
805 QgsFeature feature;
806 QgsFeatureIterator features = mLayer->getFeatures();
807 while ( features.nextFeature( *&feature ) )
808 {
809 context.setFeature( feature );
810 maxValue = std::max( maxValue, exp.evaluate( &context ).toFloat() );
811 }
812 }
813 else
814 {
815 QgsDebugMsgLevel( "Prepare error:" + exp.evalErrorString(), 4 );
816 }
817 }
818 else
819 {
820 const int attributeNumber = mLayer->fields().lookupField( sizeFieldNameOrExp );
821 maxValue = mLayer->maximumValue( attributeNumber ).toFloat();
822 }
823
824 mMaxValueSpinBox->setValue( maxValue );
825}
826
828{
829 switch ( column )
830 {
831 case ColumnAttributeExpression:
832 {
833 const QString currentExpression = item->data( 0, RoleAttributeExpression ).toString();
834
835 const QString newExpression = showExpressionBuilder( currentExpression );
836 if ( !newExpression.isEmpty() )
837 {
838 item->setData( 0, Qt::DisplayRole, newExpression );
839 item->setData( 0, RoleAttributeExpression, newExpression );
840 }
841 break;
842 }
843
844 case ColumnColor:
845 break;
846
847 case ColumnLegendText:
848 break;
849 }
850}
851
852std::unique_ptr<QgsDiagram> QgsDiagramProperties::createDiagramObject()
853{
854 std::unique_ptr<QgsDiagram> diagram;
855
856 if ( mDiagramType == QgsTextDiagram::DIAGRAM_NAME_TEXT )
857 {
858 diagram = std::make_unique<QgsTextDiagram>();
859 }
860 else if ( mDiagramType == QgsPieDiagram::DIAGRAM_NAME_PIE )
861 {
862 diagram = std::make_unique<QgsPieDiagram>();
863 }
864 else if ( mDiagramType == QgsStackedBarDiagram::DIAGRAM_NAME_STACKED_BAR )
865 {
866 diagram = std::make_unique<QgsStackedBarDiagram>();
867 }
868 else // if ( diagramType == QgsHistogramDiagram::DIAGRAM_NAME_HISTOGRAM )
869 {
870 diagram = std::make_unique<QgsHistogramDiagram>();
871 }
872 return diagram;
873}
874
875std::unique_ptr<QgsDiagramSettings> QgsDiagramProperties::createDiagramSettings()
876{
877 auto ds = std::make_unique<QgsDiagramSettings>();
878 ds->enabled = isDiagramEnabled();
879 ds->font = mDiagramFontButton->currentFont();
880 ds->opacity = mOpacityWidget->opacity();
881
882 QList<QColor> categoryColors;
883 QList<QString> categoryAttributes;
884 QList<QString> categoryLabels;
885 categoryColors.reserve( mDiagramAttributesTreeWidget->topLevelItemCount() );
886 categoryAttributes.reserve( mDiagramAttributesTreeWidget->topLevelItemCount() );
887 categoryLabels.reserve( mDiagramAttributesTreeWidget->topLevelItemCount() );
888 for ( int i = 0; i < mDiagramAttributesTreeWidget->topLevelItemCount(); ++i )
889 {
890 QColor color = mDiagramAttributesTreeWidget->topLevelItem( i )->data( ColumnColor, Qt::EditRole ).value<QColor>();
891 categoryColors.append( color );
892 categoryAttributes.append( mDiagramAttributesTreeWidget->topLevelItem( i )->data( 0, RoleAttributeExpression ).toString() );
893 categoryLabels.append( mDiagramAttributesTreeWidget->topLevelItem( i )->text( 2 ) );
894 }
895 ds->categoryColors = categoryColors;
896 ds->categoryAttributes = categoryAttributes;
897 ds->categoryLabels = categoryLabels;
898 ds->size = QSizeF( mDiagramSizeSpinBox->value(), mDiagramSizeSpinBox->value() );
899 ds->sizeType = mDiagramUnitComboBox->unit();
900 ds->sizeScale = mDiagramUnitComboBox->getMapUnitScale();
901 ds->lineSizeUnit = mDiagramLineUnitComboBox->unit();
902 ds->lineSizeScale = mDiagramLineUnitComboBox->getMapUnitScale();
903 ds->labelPlacementMethod = static_cast<QgsDiagramSettings::LabelPlacementMethod>( mLabelPlacementComboBox->currentData().toInt() );
904 ds->scaleByArea = ( mDiagramType == QgsStackedBarDiagram::DIAGRAM_NAME_STACKED_BAR ) ? false : mScaleDependencyComboBox->currentData().toBool();
905
906 if ( mIncreaseSmallDiagramsGroupBox->isChecked() )
907 {
908 ds->minimumSize = mIncreaseMinimumSizeSpinBox->value();
909 }
910 else
911 {
912 ds->minimumSize = 0;
913 }
914
915 ds->backgroundColor = mBackgroundColorButton->color();
916 ds->penColor = mDiagramPenColorButton->color();
917 ds->penWidth = mPenWidthSpinBox->value();
918 ds->minimumScale = mScaleRangeWidget->minimumScale();
919 ds->maximumScale = mScaleRangeWidget->maximumScale();
920 ds->scaleBasedVisibility = mScaleVisibilityGroupBox->isChecked();
921
922 // Diagram angle offset (pie)
923 ds->rotationOffset = mAngleOffsetComboBox->currentData().toInt();
924 ds->setDirection( static_cast<QgsDiagramSettings::Direction>( mAngleDirectionComboBox->currentData().toInt() ) );
925
926 // Diagram orientation (histogram)
927 ds->diagramOrientation = static_cast<QgsDiagramSettings::DiagramOrientation>( mOrientationButtonGroup->checkedButton()->property( "direction" ).toInt() );
928
929 ds->barWidth = mBarWidthSpinBox->value();
931 {
932 if ( ds->diagramOrientation == QgsDiagramSettings::DiagramOrientation::Up || ds->diagramOrientation == QgsDiagramSettings::DiagramOrientation::Down )
933 ds->size.setWidth( ds->barWidth );
934 else
935 ds->size.setHeight( ds->barWidth );
936 }
937
938 ds->setAxisLineSymbol( mAxisLineStyleButton->clonedSymbol<QgsLineSymbol>() );
939 ds->setShowAxis( mShowAxisGroupBox->isChecked() );
940
941 ds->setSpacing( mBarSpacingSpinBox->value() );
942 ds->setSpacingUnit( mBarSpacingUnitComboBox->unit() );
943 ds->setSpacingMapUnitScale( mBarSpacingUnitComboBox->getMapUnitScale() );
944
945 if ( mPaintEffect && ( !QgsPaintEffectRegistry::isDefaultStack( mPaintEffect.get() ) || mPaintEffect->enabled() ) )
946 ds->setPaintEffect( mPaintEffect->clone() );
947 else
948 ds->setPaintEffect( nullptr );
949
950 return ds;
951}
952
953std::unique_ptr<QgsDiagramRenderer> QgsDiagramProperties::createRenderer()
954{
955 std::unique_ptr<QgsDiagramSettings> ds = createDiagramSettings();
956
957 std::unique_ptr<QgsDiagramRenderer> renderer;
958 if ( mFixedSizeRadio->isChecked() )
959 {
960 auto dr = std::make_unique<QgsSingleCategoryDiagramRenderer>();
961 dr->setDiagramSettings( *ds );
962 renderer = std::move( dr );
963 }
964 else
965 {
966 auto dr = std::make_unique<QgsLinearlyInterpolatedDiagramRenderer>();
967 dr->setLowerValue( 0.0 );
968 dr->setLowerSize( QSizeF( 0.0, 0.0 ) );
969 dr->setUpperValue( mMaxValueSpinBox->value() );
970 dr->setUpperSize( QSizeF( mSizeSpinBox->value(), mSizeSpinBox->value() ) );
971
972 bool isExpression;
973 const QString sizeFieldNameOrExp = mSizeFieldExpressionWidget->currentField( &isExpression );
974 dr->setClassificationAttributeIsExpression( isExpression );
975 if ( isExpression )
976 {
977 dr->setClassificationAttributeExpression( sizeFieldNameOrExp );
978 }
979 else
980 {
981 dr->setClassificationField( sizeFieldNameOrExp );
982 }
983 dr->setDiagramSettings( *ds );
984
985 dr->setDataDefinedSizeLegend( mSizeLegend ? new QgsDataDefinedSizeLegend( *mSizeLegend ) : nullptr );
986
987 renderer = std::move( dr );
988 }
989
990 renderer->setAttributeLegend( mCheckBoxAttributeLegend->isChecked() );
991
992 std::unique_ptr<QgsDiagram> diagram = createDiagramObject();
993 renderer->setDiagram( diagram.release() );
994
995 return renderer;
996}
997
998QgsDiagramLayerSettings QgsDiagramProperties::createDiagramLayerSettings()
999{
1001 dls.setDataDefinedProperties( mDataDefinedProperties );
1002 dls.setDistance( mDiagramDistanceSpinBox->value() );
1003 dls.setPriority( mPrioritySlider->value() );
1004 dls.setZIndex( mZIndexSpinBox->value() );
1005 dls.setShowAllDiagrams( mShowAllCheckBox->isChecked() );
1006
1007 QWidget *curWdgt = stackedPlacement->currentWidget();
1008 if ( ( curWdgt == pagePoint && radAroundPoint->isChecked() )
1009 || ( curWdgt == pagePolygon && radAroundCentroid->isChecked() ) )
1010 {
1012 }
1013 else if ( ( curWdgt == pagePoint && radOverPoint->isChecked() )
1014 || ( curWdgt == pagePolygon && radOverCentroid->isChecked() ) )
1015 {
1017 }
1018 else if ( ( curWdgt == pageLine && radAroundLine->isChecked() )
1019 || ( curWdgt == pagePolygon && radPolygonPerimeter->isChecked() ) )
1020 {
1022 }
1023 else if ( ( curWdgt == pageLine && radOverLine->isChecked() )
1024 || ( curWdgt == pagePolygon && radInsidePolygon->isChecked() ) )
1025 {
1027 }
1028 else
1029 {
1030 qFatal( "Invalid settings" );
1031 }
1032
1034 if ( chkLineAbove->isChecked() )
1036 if ( chkLineBelow->isChecked() )
1038 if ( chkLineOn->isChecked() )
1040 if ( !chkLineOrientationDependent->isChecked() )
1042 dls.setLinePlacementFlags( flags );
1043
1044 return dls;
1045}
1046
1048{
1049 // Avoid this messageBox when in both dock and liveUpdate mode
1050 QgsSettings settings;
1051 if ( !dockMode() || !settings.value( QStringLiteral( "UI/autoApplyStyling" ), true ).toBool() )
1052 {
1053 if ( isDiagramEnabled() && 0 == mDiagramAttributesTreeWidget->topLevelItemCount() )
1054 {
1055 QMessageBox::warning( this, tr( "Diagrams: No attributes added." ), tr( "You did not add any attributes to this diagram layer. Please specify the attributes to visualize on the diagrams or disable diagrams." ) );
1056 }
1057 }
1058
1059 std::unique_ptr<QgsDiagramRenderer> renderer = createRenderer();
1060 mLayer->setDiagramRenderer( renderer.release() );
1061
1062 QgsDiagramLayerSettings dls = createDiagramLayerSettings();
1063 mLayer->setDiagramLayerSettings( dls );
1064
1065 // refresh
1066 QgsProject::instance()->setDirty( true );
1067 mLayer->triggerRepaint();
1068}
1069
1070QString QgsDiagramProperties::showExpressionBuilder( const QString &initialExpression )
1071{
1072 QgsExpressionContext context = createExpressionContext();
1073
1074 QgsExpressionBuilderDialog dlg( mLayer, initialExpression, this, QStringLiteral( "generic" ), context );
1075 dlg.setWindowTitle( tr( "Expression Based Attribute" ) );
1076
1077 QgsDistanceArea myDa;
1078 myDa.setSourceCrs( mLayer->crs(), QgsProject::instance()->transformContext() );
1079 myDa.setEllipsoid( QgsProject::instance()->ellipsoid() );
1080 dlg.setGeomCalculator( myDa );
1081
1082 if ( dlg.exec() == QDialog::Accepted )
1083 {
1084 return dlg.expressionText();
1085 }
1086 else
1087 {
1088 return QString();
1089 }
1090}
1091
1093{
1094 QString expression;
1095 QList<QTreeWidgetItem *> selections = mAttributesTreeWidget->selectedItems();
1096 if ( !selections.empty() )
1097 {
1098 expression = selections[0]->text( 0 );
1099 }
1100
1101 const QString newExpression = showExpressionBuilder( expression );
1102
1103 //Only add the expression if the user has entered some text.
1104 if ( !newExpression.isEmpty() )
1105 {
1106 QTreeWidgetItem *newItem = new QTreeWidgetItem( mDiagramAttributesTreeWidget );
1107
1108 newItem->setText( 0, newExpression );
1109 newItem->setText( 2, newExpression );
1110 newItem->setData( 0, RoleAttributeExpression, newExpression );
1111 newItem->setFlags( ( newItem->flags() | Qt::ItemIsEditable ) & ~Qt::ItemIsDropEnabled );
1112
1113 //set initial color for diagram category
1114 QRandomGenerator colorGenerator;
1115 const int red = colorGenerator.bounded( 1, 256 );
1116 const int green = colorGenerator.bounded( 1, 256 );
1117 const int blue = colorGenerator.bounded( 1, 256 );
1118
1119 const QColor randomColor( red, green, blue );
1120 newItem->setData( ColumnColor, Qt::EditRole, randomColor );
1121 mDiagramAttributesTreeWidget->addTopLevelItem( newItem );
1122 }
1123 activateWindow(); // set focus back parent
1124}
1125
1127{
1128 mDiagramOptionsListWidget->blockSignals( true );
1129 mDiagramOptionsListWidget->setCurrentRow( index );
1130 mDiagramOptionsListWidget->blockSignals( false );
1131}
1132
1134{
1135 QWidget *curWdgt = stackedPlacement->currentWidget();
1136
1137 if ( ( curWdgt == pagePoint && radAroundPoint->isChecked() )
1138 || ( curWdgt == pageLine && radAroundLine->isChecked() )
1139 || ( curWdgt == pagePolygon && radAroundCentroid->isChecked() ) )
1140 {
1141 mDiagramDistanceLabel->setEnabled( true );
1142 mDiagramDistanceSpinBox->setEnabled( true );
1143 mDistanceDDBtn->setEnabled( true );
1144 }
1145 else
1146 {
1147 mDiagramDistanceLabel->setEnabled( false );
1148 mDiagramDistanceSpinBox->setEnabled( false );
1149 mDistanceDDBtn->setEnabled( false );
1150 }
1151
1152 const bool linePlacementEnabled = mLayer->geometryType() == Qgis::GeometryType::Line && ( curWdgt == pageLine && radAroundLine->isChecked() );
1153 chkLineAbove->setEnabled( linePlacementEnabled );
1154 chkLineBelow->setEnabled( linePlacementEnabled );
1155 chkLineOn->setEnabled( linePlacementEnabled );
1156 chkLineOrientationDependent->setEnabled( linePlacementEnabled );
1157}
1158
1160{
1161 mButtonSizeLegendSettings->setEnabled( mAttributeBasedScalingRadio->isChecked() );
1162}
1163
1165{
1166 mAllowedToEditDls = allowed;
1167
1168 label_16->setVisible( allowed );
1169 mZIndexSpinBox->setVisible( allowed );
1170 mZOrderDDBtn->setVisible( allowed );
1171 mShowAllCheckBox->setVisible( allowed );
1172 mDlsLabel_1->setVisible( !allowed );
1173
1174 mCoordinatesGrpBox->setVisible( allowed );
1175 mLinePlacementFrame->setVisible( allowed );
1176 mObstaclesGrpBox->setVisible( allowed );
1177 mPlacementFrame->setVisible( allowed );
1178 mPriorityGrpBox->setVisible( allowed );
1179 stackedPlacement->setVisible( allowed );
1180 mDlsLabel_2->setVisible( !allowed );
1181}
1182
1184{
1185 return mAllowedToEditDls;
1186}
1187
1189{
1190 // prepare size transformer
1191 bool isExpression;
1192 const QString sizeFieldNameOrExp = mSizeFieldExpressionWidget->currentField( &isExpression );
1193 QgsProperty ddSize = isExpression ? QgsProperty::fromExpression( sizeFieldNameOrExp ) : QgsProperty::fromField( sizeFieldNameOrExp );
1194 const bool scaleByArea = mScaleDependencyComboBox->currentData().toBool();
1195 ddSize.setTransformer( new QgsSizeScaleTransformer( scaleByArea ? QgsSizeScaleTransformer::Area : QgsSizeScaleTransformer::Linear, 0.0, mMaxValueSpinBox->value(), 0.0, mSizeSpinBox->value() ) );
1196
1197 QgsDataDefinedSizeLegendWidget *panel = new QgsDataDefinedSizeLegendWidget( mSizeLegend.get(), ddSize, nullptr, mMapCanvas );
1198
1199 QDialog dlg;
1200 dlg.setLayout( new QVBoxLayout() );
1201 dlg.setWindowTitle( panel->panelTitle() );
1202 dlg.layout()->addWidget( panel );
1203 QDialogButtonBox *buttonBox = new QDialogButtonBox( QDialogButtonBox::Cancel | QDialogButtonBox::Help | QDialogButtonBox::Ok );
1204 connect( buttonBox, &QDialogButtonBox::accepted, &dlg, &QDialog::accept );
1205 connect( buttonBox, &QDialogButtonBox::helpRequested, this, &QgsDiagramProperties::showHelp );
1206 connect( buttonBox, &QDialogButtonBox::rejected, &dlg, &QDialog::reject );
1207 dlg.layout()->addWidget( buttonBox );
1208 if ( dlg.exec() )
1209 mSizeLegend.reset( panel->dataDefinedSizeLegend() );
1210}
1211
1212void QgsDiagramProperties::showHelp()
1213{
1214 QgsHelp::openHelp( QStringLiteral( "working_with_vector/vector_properties.html#legend" ) );
1215}
1216
1217void QgsDiagramProperties::createAuxiliaryField()
1218{
1219 // try to create an auxiliary layer if not yet created
1220 if ( !mLayer->auxiliaryLayer() )
1221 {
1222 QgsNewAuxiliaryLayerDialog dlg( mLayer, this );
1223 dlg.exec();
1224 }
1225
1226 // return if still not exists
1227 if ( !mLayer->auxiliaryLayer() )
1228 return;
1229
1230 QgsPropertyOverrideButton *button = qobject_cast<QgsPropertyOverrideButton *>( sender() );
1232 const QgsPropertyDefinition def = QgsDiagramLayerSettings::propertyDefinitions()[static_cast<int>( key )];
1233
1234 // create property in auxiliary storage if necessary
1235 if ( !mLayer->auxiliaryLayer()->exists( def ) )
1236 mLayer->auxiliaryLayer()->addAuxiliaryField( def );
1237
1238 // update property with join field name from auxiliary storage
1239 QgsProperty property = button->toProperty();
1240 property.setField( QgsAuxiliaryLayer::nameFromProperty( def, true ) );
1241 property.setActive( true );
1242 button->updateFieldLists();
1243 button->setToProperty( property );
1244 mDataDefinedProperties.setProperty( key, button->toProperty() );
1245
1246 emit auxiliaryFieldCreated();
1247}
1248
1249void QgsDiagramProperties::connectValueChanged( const QList<QWidget *> &widgets )
1250{
1251 const auto constWidgets = widgets;
1252 for ( QWidget *widget : constWidgets )
1253 {
1254 if ( QgsSymbolButton *w = qobject_cast<QgsSymbolButton *>( widget ) )
1255 {
1257 }
1258 else if ( QgsFieldExpressionWidget *w = qobject_cast<QgsFieldExpressionWidget *>( widget ) )
1259 {
1260 connect( w, qOverload<const QString &>( &QgsFieldExpressionWidget::fieldChanged ), this, &QgsDiagramProperties::widgetChanged );
1261 }
1262 else if ( QgsOpacityWidget *w = qobject_cast<QgsOpacityWidget *>( widget ) )
1263 {
1265 }
1266 else if ( QgsUnitSelectionWidget *w = qobject_cast<QgsUnitSelectionWidget *>( widget ) )
1267 {
1269 }
1270 else if ( QComboBox *w = qobject_cast<QComboBox *>( widget ) )
1271 {
1272 connect( w, qOverload<int>( &QComboBox::currentIndexChanged ), this, &QgsDiagramProperties::widgetChanged );
1273 }
1274 else if ( QSpinBox *w = qobject_cast<QSpinBox *>( widget ) )
1275 {
1276 connect( w, qOverload<int>( &QSpinBox::valueChanged ), this, &QgsDiagramProperties::widgetChanged );
1277 }
1278 else if ( QDoubleSpinBox *w = qobject_cast<QDoubleSpinBox *>( widget ) )
1279 {
1280 connect( w, qOverload<double>( &QDoubleSpinBox::valueChanged ), this, &QgsDiagramProperties::widgetChanged );
1281 }
1282 else if ( QgsColorButton *w = qobject_cast<QgsColorButton *>( widget ) )
1283 {
1285 }
1286 else if ( QCheckBox *w = qobject_cast<QCheckBox *>( widget ) )
1287 {
1288 connect( w, &QCheckBox::toggled, this, &QgsDiagramProperties::widgetChanged );
1289 }
1290 else if ( QRadioButton *w = qobject_cast<QRadioButton *>( widget ) )
1291 {
1292 connect( w, &QRadioButton::toggled, this, &QgsDiagramProperties::widgetChanged );
1293 }
1294 else if ( QSlider *w = qobject_cast<QSlider *>( widget ) )
1295 {
1296 connect( w, &QSlider::valueChanged, this, &QgsDiagramProperties::widgetChanged );
1297 }
1298 else if ( QGroupBox *w = qobject_cast<QGroupBox *>( widget ) )
1299 {
1300 connect( w, &QGroupBox::toggled, this, &QgsDiagramProperties::widgetChanged );
1301 }
1302 else if ( QTreeWidget *w = qobject_cast<QTreeWidget *>( widget ) )
1303 {
1304 connect( w, &QTreeWidget::itemChanged, this, &QgsDiagramProperties::widgetChanged );
1305 }
1306 else if ( QgsScaleRangeWidget *w = qobject_cast<QgsScaleRangeWidget *>( widget ) )
1307 {
1309 }
1310 else if ( QgsEffectStackCompactWidget *w = qobject_cast<QgsEffectStackCompactWidget *>( widget ) )
1311 {
1313 }
1314 else if ( QgsFontButton *w = qobject_cast<QgsFontButton *>( widget ) )
1315 {
1317 }
1318 else
1319 {
1320 QgsLogger::warning( QStringLiteral( "Could not create connection for widget %1" ).arg( widget->objectName() ) );
1321 }
1322 }
1323}
1324
1325void QgsDiagramProperties::setDiagramEnabled( bool enabled )
1326{
1327 mEnableDiagramCheckBox->setChecked( enabled );
1328}
1329
1330bool QgsDiagramProperties::isDiagramEnabled() const
1331{
1332 return mEnableDiagramCheckBox->isChecked();
1333}
GeometryType
The geometry types are used to group Qgis::WkbType in a coarse way.
Definition qgis.h:337
@ Polygon
Polygons.
@ Unknown
Unknown types.
@ Null
No geometry.
@ Millimeters
Millimeters.
@ Points
Points (e.g., for font sizes)
@ MapUnits
Map units.
@ MetersInMapUnits
Meters value as Map units.
@ Line
Line symbol.
static const double UI_SCALE_FACTOR
UI scaling factor.
Definition qgis.h:5926
static QIcon getThemeIcon(const QString &name, const QColor &fillColor=QColor(), const QColor &strokeColor=QColor())
Helper to get a theme icon.
static QString nameFromProperty(const QgsPropertyDefinition &def, bool joined=false)
Returns the name of the auxiliary field for a property definition.
bool addAuxiliaryField(const QgsPropertyDefinition &definition)
Adds an auxiliary field for the given property.
bool exists(const QgsPropertyDefinition &definition) const
Returns true if the property is stored in the layer already, false otherwise.
A cross platform button subclass for selecting colors.
void colorChanged(const QColor &color)
Emitted whenever a new color is set for the button.
A delegate for showing a color swatch in a list.
Widget for configuration of appearance of legend for marker symbols with data-defined size.
QgsDataDefinedSizeLegend * dataDefinedSizeLegend() const
Returns configuration as set up in the dialog (may be nullptr). Ownership is passed to the caller.
Object that keeps configuration of appearance of marker symbol's data-defined size in legend.
Stores the settings for rendering of all diagrams for a layer.
void setZIndex(double index)
Sets the diagram z-index.
Placement placement() const
Returns the diagram placement.
QFlags< LinePlacementFlag > LinePlacementFlags
bool showAllDiagrams() const
Returns whether the layer should show all diagrams, including overlapping diagrams.
QgsPropertyCollection & dataDefinedProperties()
Returns a reference to the diagram's property collection, used for data defined overrides.
LinePlacementFlags linePlacementFlags() const
Returns the diagram placement flags.
Property
Data definable properties.
@ PositionX
X-coordinate data defined diagram position.
@ Distance
Distance to diagram from feature.
@ PositionY
Y-coordinate data defined diagram position.
@ Show
Whether to show the diagram.
@ Priority
Diagram priority (between 0 and 10)
@ ZIndex
Z-index for diagram ordering.
@ BackgroundColor
Diagram background color.
@ StartAngle
Angle offset for pie diagram.
@ IsObstacle
Whether diagram features act as obstacles for other diagrams/labels.
@ AlwaysShow
Whether the diagram should always be shown, even if it overlaps other diagrams/labels.
void setShowAllDiagrams(bool showAllDiagrams)
Sets whether the layer should show all diagrams, including overlapping diagrams.
void setDistance(double distance)
Sets the distance between the diagram and the feature.
static const QgsPropertiesDefinition & propertyDefinitions()
Returns the diagram property definitions.
void setPriority(int value)
Sets the diagram priority.
int priority() const
Returns the diagram priority.
void setPlacement(Placement value)
Sets the diagram placement.
void setLinePlacementFlags(LinePlacementFlags flags)
Sets the the diagram placement flags.
void setDataDefinedProperties(const QgsPropertyCollection &collection)
Sets the diagram's property collection, used for data defined overrides.
double zIndex() const
Returns the diagram z-index.
double distance() const
Returns the distance between the diagram and the feature (in mm).
void syncToSettings(const QgsDiagramLayerSettings *dls)
Updates the widget to reflect the diagram layer settings.
void setDockMode(bool dockMode) override
Sets the widget in dock mode.
void mDiagramAttributesTreeWidget_itemDoubleClicked(QTreeWidgetItem *item, int column)
bool isAllowedToEditDiagramLayerSettings() const
Returns whether this widget is allowed to edit diagram layer settings.
void mDiagramTypeComboBox_currentIndexChanged(int index)
void syncToLayer()
Updates the widget to reflect the layer's current diagram settings.
QgsDiagramProperties(QgsVectorLayer *layer, QWidget *parent, QgsMapCanvas *canvas)
void setDiagramType(const QString diagramType)
Defines the widget's diagram type and lets it know it should hide the type comboBox.
void addAttribute(QTreeWidgetItem *item)
Adds an attribute from the list of available attributes to the assigned attributes with a random colo...
void syncToRenderer(const QgsDiagramRenderer *dr)
Updates the widget to reflect the diagram renderer.
void mAttributesTreeWidget_itemDoubleClicked(QTreeWidgetItem *item, int column)
void setAllowedToEditDiagramLayerSettings(bool allowed)
Sets whether the widget should show diagram layer settings.
void mDiagramStackedWidget_currentChanged(int index)
Evaluates and returns the diagram settings relating to a diagram for a specific feature.
virtual QString rendererName() const =0
QgsDiagram * diagram() const
virtual QList< QgsDiagramSettings > diagramSettings() const =0
Returns list with all diagram settings in the renderer.
bool attributeLegend() const
Returns true if renderer will show legend items for diagram attributes.
DiagramOrientation
Orientation of histogram.
Direction
Angular directions.
@ Counterclockwise
Counter-clockwise orientation.
@ Clockwise
Clockwise orientation.
virtual QString diagramName() const =0
Gets a descriptive name for this diagram type.
A general purpose distance and area calculator, capable of performing ellipsoid based calculations.
void setSourceCrs(const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &context)
Sets source spatial reference system crs.
bool setEllipsoid(const QString &ellipsoid)
Sets the ellipsoid by its acronym.
A small widget consisting of a checkbox for enabling/disabling an effect stack and a button for openi...
void changed()
Emitted when the paint effect properties change.
A generic dialog for building expression strings.
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 setFeature(const QgsFeature &feature)
Convenience function for setting a feature for the context.
Class for parsing and evaluation of expressions (formerly called "search strings").
bool prepare(const QgsExpressionContext *context)
Gets the expression ready for evaluation - find out column indexes.
QString evalErrorString() const
Returns evaluation error.
bool hasEvalError() const
Returns true if an error occurred when evaluating last input.
QVariant evaluate()
Evaluate the feature and return the result.
Wrapper for iterator of features from vector data provider or vector layer.
bool nextFeature(QgsFeature &f)
Fetch next feature and stores in f, returns true on success.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:58
The QgsFieldExpressionWidget class creates a widget to choose fields and edit expressions It contains...
void fieldChanged(const QString &fieldName)
Emitted when the currently selected field changes.
QString name
Definition qgsfield.h:62
Container of fields for a vector layer.
Definition qgsfields.h:46
int count
Definition qgsfields.h:50
QgsField at(int i) const
Returns the field at particular index (must be in range 0..N-1).
Q_INVOKABLE int lookupField(const QString &fieldName) const
Looks up field's index from the field name.
A button for customizing QgsTextFormat settings.
@ ModeQFont
Configure font settings for use with QFont objects.
void changed()
Emitted when the widget's text format settings are changed.
static void openHelp(const QString &key)
Opens help topic for the given help key using default system web browser.
Definition qgshelp.cpp:39
static const QString DIAGRAM_NAME_HISTOGRAM
A line symbol type, for rendering LineString and MultiLineString geometries.
Alters the size of rendered diagrams using a linear scaling.
QString classificationField() const
Returns the field name used for interpolating the diagram size.
QgsDataDefinedSizeLegend * dataDefinedSizeLegend() const
Returns configuration of appearance of legend.
static const QString DIAGRAM_RENDERER_NAME_LINEARLY_INTERPOLATED
static void warning(const QString &msg)
Goes to qWarning.
Map canvas is a class for displaying all GIS data types on a canvas.
QgsExpressionContext createExpressionContext() const override
This method needs to be reimplemented in all classes which implement this interface and return an exp...
const QgsMapSettings & mapSettings() const
Gets access to properties used for map rendering.
QgsCoordinateReferenceSystem crs
Definition qgsmaplayer.h:83
void triggerRepaint(bool deferredUpdate=false)
Will advise the map canvas (and any other interested party) that this layer requires to be repainted.
bool hasScaleBasedVisibility() const
Returns whether scale based visibility is enabled for the layer.
double minimumScale() const
Returns the minimum map scale (i.e.
double maximumScale() const
Returns the maximum map scale (i.e.
The QgsMapSettings class contains configuration for rendering of the map.
A dialog to create a new auxiliary layer.
A widget for setting an opacity value.
void opacityChanged(double opacity)
Emitted when the opacity is changed in the widget, where opacity ranges from 0.0 (transparent) to 1....
static QgsPaintEffect * defaultStack()
Returns a new effect stack consisting of a sensible selection of default effects.
static bool isDefaultStack(QgsPaintEffect *effect)
Tests whether a paint effect matches the default effects stack.
Base class for any widget that can be shown as a inline panel.
QString panelTitle()
The title of the panel.
void widgetChanged()
Emitted when the widget state changes.
virtual void setDockMode(bool dockMode)
Set the widget in dock mode which tells the widget to emit panel widgets and not open dialogs.
bool dockMode()
Returns the dock mode state.
static const QString DIAGRAM_NAME_PIE
static QgsProject * instance()
Returns the QgsProject singleton instance.
QgsCoordinateTransformContext transformContext
Definition qgsproject.h:113
void setDirty(bool b=true)
Flag the project as dirty (modified).
void setProperty(int key, const QgsProperty &property)
Adds a property to the collection and takes ownership of it.
Definition for a property.
Definition qgsproperty.h:45
A button for controlling property overrides which may apply to a widget.
QgsProperty toProperty() const
Returns a QgsProperty object encapsulating the current state of the widget.
void updateFieldLists()
Updates list of fields.
void changed()
Emitted when property definition changes.
void init(int propertyKey, const QgsProperty &property, const QgsPropertiesDefinition &definitions, const QgsVectorLayer *layer=nullptr, bool auxiliaryStorageEnabled=false)
Initialize a newly constructed property button (useful if button was included in a UI layout).
void registerExpressionContextGenerator(QgsExpressionContextGenerator *generator)
Register an expression context generator class that will be used to retrieve an expression context fo...
int propertyKey() const
Returns the property key linked to the button.
void setToProperty(const QgsProperty &property)
Sets the widget to reflect the current state of a QgsProperty.
void createAuxiliaryField()
Emitted when creating a new auxiliary field.
A store for object properties.
void setTransformer(QgsPropertyTransformer *transformer)
Sets an optional transformer to use for manipulating the calculated values for the property.
static QgsProperty fromExpression(const QString &expression, bool isActive=true)
Returns a new ExpressionBasedProperty created from the specified expression.
void setField(const QString &field)
Sets the field name the property references.
static QgsProperty fromField(const QString &fieldName, bool isActive=true)
Returns a new FieldBasedProperty created from the specified field name.
A widget allowing entry of a range of map scales, e.g.
void rangeChanged(double min, double max)
Emitted when the scale range set in the widget is changed.
This class is a composition of two QSettings instances:
Definition qgssettings.h:64
QVariant value(const QString &key, const QVariant &defaultValue=QVariant(), Section section=NoSection) const
Returns the value for setting key.
bool contains(const QString &key, QgsSettings::Section section=QgsSettings::NoSection) const
Returns true if there exists a setting called key; returns false otherwise.
void setValue(const QString &key, const QVariant &value, QgsSettings::Section section=QgsSettings::NoSection)
Sets the value of setting key to value.
static const QString DIAGRAM_RENDERER_NAME_SINGLE_CATEGORY
QgsPropertyTransformer subclass for scaling a value into a size according to various scaling methods.
static const QString DIAGRAM_NAME_STACKED_BAR
Renders diagrams using mixed diagram render types.
static const QString DIAGRAM_RENDERER_NAME_STACKED
const QgsDiagramRenderer * renderer(const int index) const
Returns the renderer at the given index.
int rendererCount() const
Returns the number of sub renderers in the stacked diagram renderer.
A button for creating and modifying QgsSymbol settings.
void changed()
Emitted when the symbol's settings are changed.
static const QString DIAGRAM_NAME_TEXT
A widget displaying a combobox allowing the user to choose between various display units,...
void changed()
Emitted when the selected unit is changed, or the definition of the map unit scale is changed.
Represents a vector layer which manages a vector based data sets.
QVariant maximumValue(int index) const FINAL
Returns the maximum value for an attribute column or an invalid variant in case of error.
const QgsDiagramLayerSettings * diagramLayerSettings() const
QgsFeatureIterator getFeatures(const QgsFeatureRequest &request=QgsFeatureRequest()) const FINAL
Queries the layer for features specified in request.
QgsAuxiliaryLayer * auxiliaryLayer()
Returns the current auxiliary layer.
Q_INVOKABLE Qgis::GeometryType geometryType() const
Returns point, line or polygon.
void setDiagramLayerSettings(const QgsDiagramLayerSettings &s)
void setDiagramRenderer(QgsDiagramRenderer *r)
Sets diagram rendering object (takes ownership)
const QgsDiagramRenderer * diagramRenderer() const
int scaleIconSize(int standardSize)
Scales an icon size to compensate for display pixel density, making the icon size hi-dpi friendly,...
QgsSignalBlocker< Object > whileBlocking(Object *object)
Temporarily blocks signals from a QObject while calling a single method from the object.
Definition qgis.h:6123
#define QgsDebugMsgLevel(str, level)
Definition qgslogger.h:41