QGIS API Documentation 3.41.0-Master (57ec4277f5e)
Loading...
Searching...
No Matches
qgslayoutpropertieswidget.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgslayoutpropertieswidget.cpp
3 -----------------------------
4 begin : July 2017
5 copyright : (C) 2017 by Nyall Dawson
6 email : nyall dot dawson at gmail dot com
7 ***************************************************************************/
8/***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16
18#include "moc_qgslayoutpropertieswidget.cpp"
19#include "qgslayout.h"
20#include "qgslayoutsnapper.h"
22#include "qgslayoutundostack.h"
23#include "qgslayoutitemmap.h"
25#include "qgsprintlayout.h"
26#include "qgslayoutatlas.h"
28#include "qgsmargins.h"
29
31 : QgsPanelWidget( parent )
32 , mLayout( layout )
33{
34 Q_ASSERT( mLayout );
35
36 setupUi( this );
37 setPanelTitle( tr( "Layout Properties" ) );
38 blockSignals( true );
39
40 mVariableEditor->setMinimumHeight( mVariableEditor->fontMetrics().height() * 15 );
41
42 updateSnappingElements();
43
44 mGridSpacingUnitsCombo->linkToWidget( mGridResolutionSpinBox );
45 mGridOffsetUnitsComboBox->linkToWidget( mOffsetXSpinBox );
46 mGridOffsetUnitsComboBox->linkToWidget( mOffsetYSpinBox );
47
48 blockSignals( false );
49
50 connect( mSnapToleranceSpinBox, static_cast<void ( QSpinBox::* )( int )>( &QSpinBox::valueChanged ), this, &QgsLayoutPropertiesWidget::snapToleranceChanged );
51
52 connect( mGridOffsetUnitsComboBox, &QgsLayoutUnitsComboBox::unitChanged, this, &QgsLayoutPropertiesWidget::gridOffsetUnitsChanged );
53 connect( mGridSpacingUnitsCombo, &QgsLayoutUnitsComboBox::unitChanged, this, &QgsLayoutPropertiesWidget::gridResolutionUnitsChanged );
54 connect( mGridResolutionSpinBox, static_cast<void ( QgsDoubleSpinBox::* )( double )>( &QgsDoubleSpinBox::valueChanged ), this, &QgsLayoutPropertiesWidget::gridResolutionChanged );
55 connect( mOffsetXSpinBox, static_cast<void ( QgsDoubleSpinBox::* )( double )>( &QgsDoubleSpinBox::valueChanged ), this, &QgsLayoutPropertiesWidget::gridOffsetXChanged );
56 connect( mOffsetYSpinBox, static_cast<void ( QgsDoubleSpinBox::* )( double )>( &QgsDoubleSpinBox::valueChanged ), this, &QgsLayoutPropertiesWidget::gridOffsetYChanged );
57
58 const double leftMargin = mLayout->customProperty( QStringLiteral( "resizeToContentsLeftMargin" ) ).toDouble();
59 const double topMargin = mLayout->customProperty( QStringLiteral( "resizeToContentsTopMargin" ) ).toDouble();
60 const double bottomMargin = mLayout->customProperty( QStringLiteral( "resizeToContentsBottomMargin" ) ).toDouble();
61 const double rightMargin = mLayout->customProperty( QStringLiteral( "resizeToContentsRightMargin" ) ).toDouble();
62 const Qgis::LayoutUnit marginUnit = static_cast<Qgis::LayoutUnit>(
63 mLayout->customProperty( QStringLiteral( "imageCropMarginUnit" ), static_cast<int>( Qgis::LayoutUnit::Millimeters ) ).toInt()
64 );
65
66 const bool exportWorldFile = mLayout->customProperty( QStringLiteral( "exportWorldFile" ), false ).toBool();
67 mGenerateWorldFileCheckBox->setChecked( exportWorldFile );
68 connect( mGenerateWorldFileCheckBox, &QCheckBox::toggled, this, &QgsLayoutPropertiesWidget::worldFileToggled );
69
70 connect( mRasterizeCheckBox, &QCheckBox::toggled, this, &QgsLayoutPropertiesWidget::rasterizeToggled );
71 connect( mForceVectorCheckBox, &QCheckBox::toggled, this, &QgsLayoutPropertiesWidget::forceVectorToggled );
72
73 mTopMarginSpinBox->setValue( topMargin );
74 mMarginUnitsComboBox->linkToWidget( mTopMarginSpinBox );
75 mRightMarginSpinBox->setValue( rightMargin );
76 mMarginUnitsComboBox->linkToWidget( mRightMarginSpinBox );
77 mBottomMarginSpinBox->setValue( bottomMargin );
78 mMarginUnitsComboBox->linkToWidget( mBottomMarginSpinBox );
79 mLeftMarginSpinBox->setValue( leftMargin );
80 mMarginUnitsComboBox->linkToWidget( mLeftMarginSpinBox );
81 mMarginUnitsComboBox->setUnit( marginUnit );
82 mMarginUnitsComboBox->setConverter( &mLayout->renderContext().measurementConverter() );
83
84 connect( mTopMarginSpinBox, static_cast<void ( QDoubleSpinBox::* )( double )>( &QDoubleSpinBox::valueChanged ), this, &QgsLayoutPropertiesWidget::resizeMarginsChanged );
85 connect( mRightMarginSpinBox, static_cast<void ( QDoubleSpinBox::* )( double )>( &QDoubleSpinBox::valueChanged ), this, &QgsLayoutPropertiesWidget::resizeMarginsChanged );
86 connect( mBottomMarginSpinBox, static_cast<void ( QDoubleSpinBox::* )( double )>( &QDoubleSpinBox::valueChanged ), this, &QgsLayoutPropertiesWidget::resizeMarginsChanged );
87 connect( mLeftMarginSpinBox, static_cast<void ( QDoubleSpinBox::* )( double )>( &QDoubleSpinBox::valueChanged ), this, &QgsLayoutPropertiesWidget::resizeMarginsChanged );
88 connect( mResizePageButton, &QPushButton::clicked, this, &QgsLayoutPropertiesWidget::resizeToContents );
89
90 connect( mResolutionSpinBox, &QSpinBox::editingFinished, this, [this] { dpiChanged( mResolutionSpinBox->value() ); } );
91
92 mReferenceMapComboBox->setCurrentLayout( mLayout );
93 mReferenceMapComboBox->setItemType( QgsLayoutItemRegistry::LayoutMap );
94 connect( mReferenceMapComboBox, &QgsLayoutItemComboBox::itemChanged, this, &QgsLayoutPropertiesWidget::referenceMapChanged );
95
97
98 updateVariables();
99 connect( mVariableEditor, &QgsVariableEditorWidget::scopeChanged, this, &QgsLayoutPropertiesWidget::variablesChanged );
100 // listen out for variable edits
101 connect( QgsApplication::instance(), &QgsApplication::customVariablesChanged, this, &QgsLayoutPropertiesWidget::updateVariables );
102 connect( QgsProject::instance(), &QgsProject::customVariablesChanged, this, &QgsLayoutPropertiesWidget::updateVariables );
103 connect( QgsProject::instance(), &QgsProject::metadataChanged, this, &QgsLayoutPropertiesWidget::updateVariables );
104 connect( &mLayout->renderContext(), &QgsLayoutRenderContext::dpiChanged, this, &QgsLayoutPropertiesWidget::updateVariables );
105 connect( mLayout->pageCollection(), &QgsLayoutPageCollection::changed, this, &QgsLayoutPropertiesWidget::updateVariables );
106 connect( mLayout, &QgsLayout::variablesChanged, this, &QgsLayoutPropertiesWidget::updateVariables );
107
108 updateGui();
109}
110
112{
113 if ( QgsPrintLayout *printLayout = dynamic_cast<QgsPrintLayout *>( masterLayout ) )
114 {
115 connect( printLayout, &QgsPrintLayout::nameChanged, this, &QgsLayoutPropertiesWidget::updateVariables );
116 connect( printLayout->atlas(), &QgsLayoutAtlas::coverageLayerChanged, this, &QgsLayoutPropertiesWidget::updateVariables );
117 }
118}
119
121{
122 whileBlocking( mReferenceMapComboBox )->setItem( mLayout->referenceMap() );
123 whileBlocking( mResolutionSpinBox )->setValue( mLayout->renderContext().dpi() );
124
125 const bool rasterize = mLayout->customProperty( QStringLiteral( "rasterize" ), false ).toBool();
126 whileBlocking( mRasterizeCheckBox )->setChecked( rasterize );
127
128 const bool forceVectors = mLayout->customProperty( QStringLiteral( "forceVector" ), false ).toBool();
129 whileBlocking( mForceVectorCheckBox )->setChecked( forceVectors );
130
131 if ( rasterize )
132 {
133 mForceVectorCheckBox->setChecked( false );
134 mForceVectorCheckBox->setEnabled( false );
135 }
136 else
137 {
138 mForceVectorCheckBox->setEnabled( true );
139 }
140}
141
142void QgsLayoutPropertiesWidget::updateSnappingElements()
143{
144 mSnapToleranceSpinBox->setValue( mLayout->snapper().snapTolerance() );
145
146 mGridSpacingUnitsCombo->setUnit( mLayout->gridSettings().resolution().units() );
147 mGridResolutionSpinBox->setValue( mLayout->gridSettings().resolution().length() );
148
149 mGridOffsetUnitsComboBox->setUnit( mLayout->gridSettings().offset().units() );
150 mOffsetXSpinBox->setValue( mLayout->gridSettings().offset().x() );
151 mOffsetYSpinBox->setValue( mLayout->gridSettings().offset().y() );
152}
153
154void QgsLayoutPropertiesWidget::gridResolutionChanged( double d )
155{
157 m.setLength( d );
158 mLayout->gridSettings().setResolution( m );
159 mLayout->pageCollection()->redraw();
160}
161
162void QgsLayoutPropertiesWidget::gridResolutionUnitsChanged( Qgis::LayoutUnit unit )
163{
165 m.setUnits( unit );
166 mLayout->gridSettings().setResolution( m );
167 mLayout->pageCollection()->redraw();
168}
169
170void QgsLayoutPropertiesWidget::gridOffsetXChanged( double d )
171{
172 QgsLayoutPoint o = mLayout->gridSettings().offset();
173 o.setX( d );
174 mLayout->gridSettings().setOffset( o );
175 mLayout->pageCollection()->redraw();
176}
177
178void QgsLayoutPropertiesWidget::gridOffsetYChanged( double d )
179{
180 QgsLayoutPoint o = mLayout->gridSettings().offset();
181 o.setY( d );
182 mLayout->gridSettings().setOffset( o );
183 mLayout->pageCollection()->redraw();
184}
185
186void QgsLayoutPropertiesWidget::gridOffsetUnitsChanged( Qgis::LayoutUnit unit )
187{
188 QgsLayoutPoint o = mLayout->gridSettings().offset();
189 o.setUnits( unit );
190 mLayout->gridSettings().setOffset( o );
191 mLayout->pageCollection()->redraw();
192}
193
194void QgsLayoutPropertiesWidget::snapToleranceChanged( int tolerance )
195{
196 mLayout->snapper().setSnapTolerance( tolerance );
197}
198
199void QgsLayoutPropertiesWidget::resizeMarginsChanged()
200{
201 mLayout->setCustomProperty( QStringLiteral( "resizeToContentsLeftMargin" ), mLeftMarginSpinBox->value() );
202 mLayout->setCustomProperty( QStringLiteral( "resizeToContentsTopMargin" ), mTopMarginSpinBox->value() );
203 mLayout->setCustomProperty( QStringLiteral( "resizeToContentsBottomMargin" ), mBottomMarginSpinBox->value() );
204 mLayout->setCustomProperty( QStringLiteral( "resizeToContentsRightMargin" ), mRightMarginSpinBox->value() );
205 mLayout->setCustomProperty( QStringLiteral( "imageCropMarginUnit" ), static_cast<int>( mMarginUnitsComboBox->unit() ) );
206}
207
208void QgsLayoutPropertiesWidget::resizeToContents()
209{
210 mLayout->undoStack()->beginMacro( tr( "Resize to Contents" ) );
211
212 mLayout->pageCollection()->resizeToContents( QgsMargins( mLeftMarginSpinBox->value(), mTopMarginSpinBox->value(), mRightMarginSpinBox->value(), mBottomMarginSpinBox->value() ), mMarginUnitsComboBox->unit() );
213
214 mLayout->undoStack()->endMacro();
215}
216
217void QgsLayoutPropertiesWidget::referenceMapChanged( QgsLayoutItem *item )
218{
219 mLayout->undoStack()->beginCommand( mLayout, tr( "Set Reference Map" ) );
220 QgsLayoutItemMap *map = qobject_cast<QgsLayoutItemMap *>( item );
221 mLayout->setReferenceMap( map );
222 mLayout->undoStack()->endCommand();
223}
224
225void QgsLayoutPropertiesWidget::dpiChanged( int value )
226{
227 mLayout->undoStack()->beginCommand( mLayout, tr( "Set Default DPI" ), QgsLayout::UndoLayoutDpi );
228 mLayout->renderContext().setDpi( value );
229 mLayout->undoStack()->endCommand();
230
231 mLayout->refresh();
232}
233
234void QgsLayoutPropertiesWidget::worldFileToggled()
235{
236 mLayout->setCustomProperty( QStringLiteral( "exportWorldFile" ), mGenerateWorldFileCheckBox->isChecked() );
237}
238
239void QgsLayoutPropertiesWidget::rasterizeToggled()
240{
241 mLayout->setCustomProperty( QStringLiteral( "rasterize" ), mRasterizeCheckBox->isChecked() );
242
243 if ( mRasterizeCheckBox->isChecked() )
244 {
245 mForceVectorCheckBox->setChecked( false );
246 mForceVectorCheckBox->setEnabled( false );
247 }
248 else
249 {
250 mForceVectorCheckBox->setEnabled( true );
251 }
252}
253
254void QgsLayoutPropertiesWidget::forceVectorToggled()
255{
256 mLayout->setCustomProperty( QStringLiteral( "forceVector" ), mForceVectorCheckBox->isChecked() );
257}
258
259void QgsLayoutPropertiesWidget::variablesChanged()
260{
261 mBlockVariableUpdates = true;
262 QgsExpressionContextUtils::setLayoutVariables( mLayout, mVariableEditor->variablesInActiveScope() );
263 mBlockVariableUpdates = false;
264}
265
266void QgsLayoutPropertiesWidget::updateVariables()
267{
268 if ( mBlockVariableUpdates )
269 return;
270
271 QgsExpressionContext context;
275 mVariableEditor->setContext( &context );
276 mVariableEditor->setEditableScopeIndex( 2 );
277}
278
279void QgsLayoutPropertiesWidget::blockSignals( bool block )
280{
281 mGridResolutionSpinBox->blockSignals( block );
282 mOffsetXSpinBox->blockSignals( block );
283 mOffsetYSpinBox->blockSignals( block );
284 mSnapToleranceSpinBox->blockSignals( block );
285}
LayoutUnit
Layout measurement units.
Definition qgis.h:4930
@ Millimeters
Millimeters.
void customVariablesChanged()
Emitted whenever a custom global variable changes.
static QgsApplication * instance()
Returns the singleton instance of the QgsApplication.
The QgsSpinBox is a spin box with a clear button that will set the value to the defined clear value.
static QgsExpressionContextScope * layoutScope(const QgsLayout *layout)
Creates a new scope which contains variables and functions relating to a QgsLayout layout.
static QgsExpressionContextScope * projectScope(const QgsProject *project)
Creates a new scope which contains variables and functions relating to a QGIS project.
static void setLayoutVariables(QgsLayout *layout, const QVariantMap &variables)
Sets all layout context variables.
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 coverageLayerChanged(QgsVectorLayer *layer)
Emitted when the coverage layer for the atlas changes.
QgsLayoutMeasurement resolution() const
Returns the page/snap grid resolution.
QgsLayoutPoint offset() const
Returns the offset of the page/snap grid.
void setOffset(const QgsLayoutPoint &offset)
Sets the offset of the page/snap grid.
void setResolution(QgsLayoutMeasurement resolution)
Sets the page/snap grid resolution.
void itemChanged(QgsLayoutItem *item)
Emitted whenever the currently selected item changes.
Layout graphical items for displaying a map.
Base class for graphical items within a QgsLayout.
This class provides a method of storing measurements for use in QGIS layouts using a variety of diffe...
void setLength(const double length)
Sets the length of the measurement.
Qgis::LayoutUnit units() const
Returns the units for the measurement.
void setUnits(const Qgis::LayoutUnit units)
Sets the units for the measurement.
double length() const
Returns the length of the measurement.
void changed()
Emitted when pages are added or removed from the collection.
void resizeToContents(const QgsMargins &margins, Qgis::LayoutUnit marginUnits)
Resizes the layout to a single page which fits the current contents of the layout.
void redraw()
Triggers a redraw for all pages.
This class provides a method of storing points, consisting of an x and y coordinate,...
double x() const
Returns x coordinate of point.
void setX(const double x)
Sets the x coordinate of point.
void setUnits(const Qgis::LayoutUnit units)
Sets the units for the point.
double y() const
Returns y coordinate of point.
Qgis::LayoutUnit units() const
Returns the units for the point.
void setY(const double y)
Sets y coordinate of point.
void setMasterLayout(QgsMasterLayoutInterface *masterLayout)
Sets the master layout.
void updateGui()
Refreshes the gui to reflect the current layout settings.
QgsLayoutPropertiesWidget(QWidget *parent, QgsLayout *layout)
constructor
void setDpi(double dpi)
Sets the dpi for outputting the layout.
void dpiChanged()
Emitted when the context's DPI is changed.
double dpi() const
Returns the dpi for outputting the layout.
const QgsLayoutMeasurementConverter & measurementConverter() const
Returns the layout measurement converter to be used in the layout.
int snapTolerance() const
Returns the snap tolerance (in pixels) to use when snapping.
void setSnapTolerance(int snapTolerance)
Sets the snap tolerance (in pixels) to use when snapping.
void endCommand()
Saves final state of an object and pushes the active command to the undo history.
void beginMacro(const QString &commandText)
Starts a macro command, with the given descriptive commandText.
void beginCommand(QgsLayoutUndoObjectInterface *object, const QString &commandText, int id=0)
Begins a new undo command for the specified object.
void endMacro()
Ends a macro command.
void unitChanged(Qgis::LayoutUnit unit)
Emitted when the unit is changed.
Base class for layouts, which can contain items such as maps, labels, scalebars, etc.
Definition qgslayout.h:49
void setCustomProperty(const QString &key, const QVariant &value)
Set a custom property for the layout.
QgsLayoutSnapper & snapper()
Returns a reference to the layout's snapper, which stores handles layout snap grids and lines and sna...
Definition qgslayout.h:407
QgsLayoutRenderContext & renderContext()
Returns a reference to the layout's render context, which stores information relating to the current ...
QgsLayoutPageCollection * pageCollection()
Returns a pointer to the layout's page collection, which stores and manages page items in the layout.
void variablesChanged()
Emitted whenever the expression variables stored in the layout have been changed.
QgsLayoutItemMap * referenceMap() const
Returns the map item which will be used to generate corresponding world files when the layout is expo...
void changed()
Emitted when properties of the layout change.
QVariant customProperty(const QString &key, const QVariant &defaultValue=QVariant()) const
Read a custom property from the layout.
QgsLayoutGridSettings & gridSettings()
Returns a reference to the layout's grid settings, which stores settings relating to grid appearance,...
Definition qgslayout.h:419
void refresh()
Forces the layout, and all items contained within it, to refresh.
void setReferenceMap(QgsLayoutItemMap *map)
Sets the map item which will be used to generate corresponding world files when the layout is exporte...
QgsLayoutUndoStack * undoStack()
Returns a pointer to the layout's undo stack, which manages undo/redo states for the layout and it's ...
@ UndoLayoutDpi
Change layout default DPI.
Definition qgslayout.h:70
The QgsMargins class defines the four margins of a rectangle.
Definition qgsmargins.h:37
Interface for master layout type objects, such as print layouts and reports.
Base class for any widget that can be shown as a inline panel.
void setPanelTitle(const QString &panelTitle)
Set the title of the panel when shown in the interface.
Print layout, a QgsLayout subclass for static or atlas-based layouts.
void nameChanged(const QString &name)
Emitted when the layout's name is changed.
static QgsProject * instance()
Returns the QgsProject singleton instance.
void metadataChanged()
Emitted when the project's metadata is changed.
void customVariablesChanged()
Emitted whenever the expression variables stored in the project have been changed.
void scopeChanged()
Emitted when the user has modified a scope using the widget.
QgsSignalBlocker< Object > whileBlocking(Object *object)
Temporarily blocks signals from a QObject while calling a single method from the object.
Definition qgis.h:5970