30#include <QColorDialog>
35#include "moc_qgslayoutlabelwidget.cpp"
44 connect( mHtmlCheckBox, &QCheckBox::stateChanged,
this, &QgsLayoutLabelWidget::mHtmlCheckBox_stateChanged );
45 connect( mTextEdit, &QPlainTextEdit::textChanged,
this, &QgsLayoutLabelWidget::mTextEdit_textChanged );
46 connect( mInsertExpressionButton, &QPushButton::clicked,
this, &QgsLayoutLabelWidget::mInsertExpressionButton_clicked );
47 connect( mMarginXDoubleSpinBox,
static_cast<void ( QDoubleSpinBox::* )(
double )
>( &QDoubleSpinBox::valueChanged ),
this, &QgsLayoutLabelWidget::mMarginXDoubleSpinBox_valueChanged );
48 connect( mMarginYDoubleSpinBox,
static_cast<void ( QDoubleSpinBox::* )(
double )
>( &QDoubleSpinBox::valueChanged ),
this, &QgsLayoutLabelWidget::mMarginYDoubleSpinBox_valueChanged );
50 mHAlignmentComboBox->setAvailableAlignments( Qt::AlignLeft | Qt::AlignHCenter | Qt::AlignRight | Qt::AlignJustify );
51 mVAlignmentComboBox->setAvailableAlignments( Qt::AlignTop | Qt::AlignVCenter | Qt::AlignBottom );
59 mFontButton->setDialogTitle( tr(
"Label Font" ) );
60 mFontButton->registerExpressionContextGenerator(
this );
64 mainLayout->addWidget( mItemPropertiesWidget );
66 mMarginXDoubleSpinBox->setClearValue( 0.0 );
67 mMarginYDoubleSpinBox->setClearValue( 0.0 );
69 setGuiElementValues();
74 mDynamicTextMenu =
new QMenu(
this );
75 mDynamicTextButton->setMenu( mDynamicTextMenu );
77 connect( mDynamicTextMenu, &QMenu::aboutToShow,
this, [
this] {
78 mDynamicTextMenu->clear();
79 if ( mLabel->layout() )
83 mLabel->beginCommand( tr(
"Insert dynamic text" ) );
84 mTextEdit->insertPlainText(
"[%" + expression.trimmed() +
"%]" );
90 QMenu *expressionMenu =
new QMenu(
this );
91 QAction *convertToStaticAction =
new QAction( tr(
"Convert to Static Text" ),
this );
92 expressionMenu->addAction( convertToStaticAction );
94 mInsertExpressionButton->setMenu( expressionMenu );
97 if ( mLabel->layout() )
105 if ( mItemPropertiesWidget )
106 mItemPropertiesWidget->setMasterLayout( masterLayout );
111 return mLabel->createExpressionContext();
117 auto addExpression = [&callback]( QMenu *menu,
const QString &name,
const QString &expression ) {
118 QAction *action =
new QAction( name, menu );
119 connect( action, &QAction::triggered, action, [callback, expression] {
120 callback( expression );
122 menu->addAction( action );
125 QMenu *dateMenu =
new QMenu( tr(
"Current Date" ), menu );
126 for (
const std::pair<QString, QString> &expression :
128 std::make_pair( tr(
"ISO Format (%1)" ).arg( QDateTime::currentDateTime().toString( QStringLiteral(
"yyyy-MM-dd" ) ) ), QStringLiteral(
"format_date(now(), 'yyyy-MM-dd')" ) ),
129 std::make_pair( tr(
"Day/Month/Year (%1)" ).arg( QDateTime::currentDateTime().toString( QStringLiteral(
"dd/MM/yyyy" ) ) ), QStringLiteral(
"format_date(now(), 'dd/MM/yyyy')" ) ),
130 std::make_pair( tr(
"Month/Day/Year (%1)" ).arg( QDateTime::currentDateTime().toString( QStringLiteral(
"MM/dd/yyyy" ) ) ), QStringLiteral(
"format_date(now(), 'MM/dd/yyyy')" ) ),
133 addExpression( dateMenu, expression.first, expression.second );
135 menu->addMenu( dateMenu );
137 QMenu *mapsMenu =
new QMenu( tr(
"Map Properties" ), menu );
138 QList<QgsLayoutItemMap *> maps;
143 if ( map->id().isEmpty() )
146 QMenu *mapMenu =
new QMenu( map->displayName(), mapsMenu );
147 for (
const std::pair<QString, QString> &expression :
149 std::make_pair( tr(
"Scale (%1)" ).arg( map->scale() ), QStringLiteral(
"format_number(item_variables('%1')['map_scale'], places:=6, omit_group_separators:=true, trim_trailing_zeroes:=true)" ).arg( map->id() ) ),
150 std::make_pair( tr(
"Rotation (%1)" ).arg( map->rotation() ), QStringLiteral(
"item_variables('%1')['map_rotation']" ).arg( map->id() ) ),
153 addExpression( mapMenu, expression.first, expression.second );
155 mapMenu->addSeparator();
156 for (
const std::pair<QString, QString> &expression :
158 std::make_pair( tr(
"CRS Identifier (%1)" ).arg( map->crs().authid() ), QStringLiteral(
"item_variables('%1')['map_crs']" ).arg( map->id() ) ),
159 std::make_pair( tr(
"CRS Name (%1)" ).arg( map->crs().description() ), QStringLiteral(
"item_variables('%1')['map_crs_description']" ).arg( map->id() ) ),
160 std::make_pair( tr(
"Ellipsoid Name (%1)" ).arg( map->crs().ellipsoidAcronym() ), QStringLiteral(
"item_variables('%1')['map_crs_ellipsoid']" ).arg( map->id() ) ),
161 std::make_pair( tr(
"Units (%1)" ).arg(
QgsUnitTypes::toString( map->crs().mapUnits() ) ), QStringLiteral(
"item_variables('%1')['map_units']" ).arg( map->id() ) ),
162 std::make_pair( tr(
"Projection (%1)" ).arg( map->crs().operation().description() ), QStringLiteral(
"item_variables('%1')['map_crs_projection']" ).arg( map->id() ) ),
165 addExpression( mapMenu, expression.first, expression.second );
167 mapMenu->addSeparator();
171 for (
const std::pair<QString, QString> &expression :
173 std::make_pair( tr(
"Center (X) (%1)" ).arg( center.
x() ), QStringLiteral(
"x(item_variables('%1')['map_extent_center'])" ).arg( map->id() ) ),
174 std::make_pair( tr(
"Center (Y) (%1)" ).arg( center.
y() ), QStringLiteral(
"y(item_variables('%1')['map_extent_center'])" ).arg( map->id() ) ),
175 std::make_pair( tr(
"X Minimum (%1)" ).arg( mapExtent.
xMinimum() ), QStringLiteral(
"x_min(item_variables('%1')['map_extent'])" ).arg( map->id() ) ),
176 std::make_pair( tr(
"Y Minimum (%1)" ).arg( mapExtent.
yMinimum() ), QStringLiteral(
"y_min(item_variables('%1')['map_extent'])" ).arg( map->id() ) ),
177 std::make_pair( tr(
"X Maximum (%1)" ).arg( mapExtent.
xMaximum() ), QStringLiteral(
"x_max(item_variables('%1')['map_extent'])" ).arg( map->id() ) ),
178 std::make_pair( tr(
"Y Maximum (%1)" ).arg( mapExtent.
yMaximum() ), QStringLiteral(
"y_max(item_variables('%1')['map_extent'])" ).arg( map->id() ) ),
181 addExpression( mapMenu, expression.first, expression.second );
183 mapMenu->addSeparator();
184 for (
const std::pair<QString, QString> &expression :
186 std::make_pair( tr(
"Layer Credits" ), QStringLiteral(
"array_to_string(map_credits('%1'))" ).arg( map->id() ) ),
189 addExpression( mapMenu, expression.first, expression.second );
191 mapsMenu->addMenu( mapMenu );
193 menu->addMenu( mapsMenu );
194 menu->addSeparator();
200 QMenu *fieldsMenu =
new QMenu( tr(
"Field" ), menu );
201 for (
const QgsField &field : fields )
203 addExpression( fieldsMenu, field.displayName(), QStringLiteral(
"\"%1\"" ).arg( field.name() ) );
206 menu->addMenu( fieldsMenu );
207 menu->addSeparator();
210 for (
const std::pair<QString, QString> &expression :
212 std::make_pair( tr(
"Layout Name" ), QStringLiteral(
"@layout_name" ) ),
213 std::make_pair( tr(
"Layout Page Number" ), QStringLiteral(
"@layout_page" ) ),
214 std::make_pair( tr(
"Layout Page Count" ), QStringLiteral(
"@layout_numpages" ) ),
215 std::make_pair( tr(
"Layer Credits" ), QStringLiteral(
"array_to_string(map_credits())" ) )
218 addExpression( menu, expression.first, expression.second );
220 menu->addSeparator();
221 for (
const std::pair<QString, QString> &expression :
223 std::make_pair( tr(
"Project Author" ), QStringLiteral(
"@project_author" ) ),
224 std::make_pair( tr(
"Project Title" ), QStringLiteral(
"@project_title" ) ),
225 std::make_pair( tr(
"Project Path" ), QStringLiteral(
"@project_path" ) )
228 addExpression( menu, expression.first, expression.second );
230 menu->addSeparator();
231 for (
const std::pair<QString, QString> &expression :
233 std::make_pair( tr(
"Current User Name" ), QStringLiteral(
"@user_full_name" ) ),
234 std::make_pair( tr(
"Current User Account" ), QStringLiteral(
"@user_account_name" ) )
237 addExpression( menu, expression.first, expression.second );
251 mLabel = qobject_cast<QgsLayoutItemLabel *>( item );
252 mItemPropertiesWidget->setItem( mLabel );
259 setGuiElementValues();
264void QgsLayoutLabelWidget::mHtmlCheckBox_stateChanged(
int state )
268 mVerticalAlignmentLabel->setDisabled( state );
269 mVAlignmentComboBox->setDisabled( state );
271 mLabel->beginCommand( tr(
"Change Label Mode" ) );
272 mLabel->blockSignals(
true );
274 mLabel->setText( mTextEdit->toPlainText() );
276 mLabel->blockSignals(
false );
277 mLabel->endCommand();
281void QgsLayoutLabelWidget::mTextEdit_textChanged()
286 mLabel->blockSignals(
true );
287 mLabel->setText( mTextEdit->toPlainText() );
289 mLabel->blockSignals(
false );
290 mLabel->endCommand();
294void QgsLayoutLabelWidget::fontChanged()
299 mLabel->setTextFormat( mFontButton->textFormat() );
301 mLabel->endCommand();
305void QgsLayoutLabelWidget::mMarginXDoubleSpinBox_valueChanged(
double d )
310 mLabel->setMarginX( d );
312 mLabel->endCommand();
316void QgsLayoutLabelWidget::mMarginYDoubleSpinBox_valueChanged(
double d )
321 mLabel->setMarginY( d );
323 mLabel->endCommand();
327void QgsLayoutLabelWidget::mInsertExpressionButton_clicked()
339 QgsExpressionContext context = mLabel->createExpressionContext();
340 QgsExpressionBuilderDialog exprDlg( layer, expression,
this, QStringLiteral(
"generic" ), context );
342 exprDlg.setWindowTitle( tr(
"Insert Expression" ) );
343 if ( exprDlg.exec() == QDialog::Accepted )
345 expression = exprDlg.expressionText();
346 if ( !expression.isEmpty() )
348 mLabel->beginCommand( tr(
"Insert expression" ) );
349 mTextEdit->insertPlainText(
"[%" + expression.trimmed() +
"%]" );
350 mLabel->endCommand();
355void QgsLayoutLabelWidget::horizontalAlignmentChanged()
359 mLabel->beginCommand( tr(
"Change Label Alignment" ) );
360 mLabel->setHAlign(
static_cast<Qt::AlignmentFlag
>(
static_cast<int>( mHAlignmentComboBox->currentAlignment() ) ) );
362 mLabel->endCommand();
366void QgsLayoutLabelWidget::verticalAlignmentChanged()
370 mLabel->beginCommand( tr(
"Change Label Alignment" ) );
371 mLabel->setVAlign(
static_cast<Qt::AlignmentFlag
>(
static_cast<int>( mVAlignmentComboBox->currentAlignment() ) ) );
373 mLabel->endCommand();
377void QgsLayoutLabelWidget::setGuiElementValues()
379 blockAllSignals(
true );
380 mTextEdit->setPlainText( mLabel->text() );
381 mTextEdit->moveCursor( QTextCursor::End, QTextCursor::MoveAnchor );
382 mMarginXDoubleSpinBox->setValue( mLabel->marginX() );
383 mMarginYDoubleSpinBox->setValue( mLabel->marginY() );
386 mHAlignmentComboBox->setCurrentAlignment( mLabel->hAlign() );
387 mVAlignmentComboBox->setCurrentAlignment( mLabel->vAlign() );
389 mFontButton->setTextFormat( mLabel->textFormat() );
393 blockAllSignals(
false );
396void QgsLayoutLabelWidget::blockAllSignals(
bool block )
398 mTextEdit->blockSignals( block );
399 mHtmlCheckBox->blockSignals( block );
400 mMarginXDoubleSpinBox->blockSignals( block );
401 mMarginYDoubleSpinBox->blockSignals( block );
402 mHAlignmentComboBox->blockSignals( block );
403 mVAlignmentComboBox->blockSignals( block );
404 mFontButton->blockSignals( block );
void changed()
Emitted when the alignment is changed.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
static QString findAndSelectActiveExpression(QgsCodeEditor *editor, const QString &pattern=QString())
Find the expression under the cursor in the given editor and select it.
Encapsulate a field in an attribute table or data source.
Container of fields for a vector layer.
A layout item subclass for text labels.
void convertToStaticText()
Converts the label's text() to a static string, by evaluating any expressions included in the text an...
@ ModeHtml
Label displays rendered HTML content.
@ ModeFont
Label displays text rendered using a single font.
Layout graphical items for displaying a map.
Base class for graphical items within a QgsLayout.
@ UndoLabelMargin
Label margin.
@ UndoLabelFont
Label font.
@ UndoLabelText
Label text.
int type() const override
Returns a unique graphics item type identifier.
void changed()
Emitted when the object's properties change.
void layerChanged(QgsVectorLayer *layer)
Emitted when the context's layer is changed.
QgsVectorLayer * layer() const
Returns the vector layer associated with the layout's context.
Base class for layouts, which can contain items such as maps, labels, scalebars, etc.
void layoutItems(QList< T * > &itemList) const
Returns a list of layout items of a specific type.
QgsLayoutReportContext & reportContext()
Returns a reference to the layout's report context, which stores information relating to the current ...
Interface for master layout type objects, such as print layouts and reports.
A rectangle specified with double values.
static Q_INVOKABLE QString toString(Qgis::DistanceUnit unit)
Returns a translated string representing a distance unit.