27#include <QDialogButtonBox>
40 mMessageBar->setSizePolicy( QSizePolicy::Minimum, QSizePolicy::Fixed );
41 verticalLayout->insertWidget( 0, mMessageBar );
53 mPlacementVersionComboBox->setCurrentIndex( mPlacementVersionComboBox->findData(
static_cast< int >( mPreviousEngineVersion ) ) );
54 connect( mPlacementVersionComboBox, &QComboBox::currentTextChanged,
this, [ = ]()
58 mMessageBar->pushMessage( QString(), tr(
"Version changes will alter label placement in the project." ), Qgis::MessageLevel::Warning );
62 spinCandLine->setClearValue( 5 );
63 spinCandPolygon->setClearValue( 2.5 );
76 mUnplacedColorButton->setAllowOpacity(
false );
77 mUnplacedColorButton->setDefaultColor( QColor( 255, 0, 0 ) );
78 mUnplacedColorButton->setWindowTitle( tr(
"Unplaced Label Color" ) );
80 mTextRenderFormatComboBox->setCurrentIndex( mTextRenderFormatComboBox->findData( QVariant::fromValue( engineSettings.
defaultTextRenderFormat() ) ) );
93 mWidgetMenu =
new QMenu(
this );
94 QAction *resetAction =
new QAction( tr(
"Restore Defaults" ),
this );
95 mWidgetMenu->addAction( resetAction );
97 QAction *helpAction =
new QAction(
QgsApplication::getThemeIcon( QStringLiteral(
"/mActionHelpContents.svg" ) ), tr(
"Help…" ),
this );
98 mWidgetMenu->addAction( helpAction );
109 return tr(
"Additional Options" );
139 spinCandLine->setValue( 5 );
140 spinCandPolygon->setValue( 10 );
141 chkShowCandidates->setChecked(
false );
142 chkShowMetrics->setChecked(
false );
143 chkShowAllLabels->setChecked(
false );
151 QgsHelp::openHelp( QStringLiteral(
"working_with_vector/vector_properties.html#setting-the-automated-placement-engine" ) );
162 setWindowTitle( mWidget->windowTitle() );
163 QVBoxLayout *vLayout =
new QVBoxLayout();
164 vLayout->addWidget( mWidget );
165 QDialogButtonBox *bbox =
new QDialogButtonBox( QDialogButtonBox::Ok | QDialogButtonBox::Cancel | QDialogButtonBox::Help | QDialogButtonBox::RestoreDefaults, Qt::Horizontal );
166 connect( bbox, &QDialogButtonBox::accepted,
this, &QDialog::accept );
167 connect( bbox, &QDialogButtonBox::rejected,
this, &QDialog::reject );
169 connect( bbox->button( QDialogButtonBox::RestoreDefaults ), &QAbstractButton::clicked,
171 vLayout->addWidget( bbox );
172 setLayout( vLayout );
174 setObjectName( QStringLiteral(
"QgsLabelSettingsWidgetDialog" ) );
@ DrawCandidates
Whether to draw rectangles of generated candidates (good for debugging)
@ DrawLabelMetrics
Whether to render label metric guides (for debugging)
@ DrawUnplacedLabels
Whether to render unplaced labels as an indicator/warning for users.
@ UseAllLabels
Whether to draw all labels even if there would be collisions.
@ UsePartialCandidates
Whether to use also label candidates that are partially outside of the map view.
TextRenderFormat
Options for rendering text.
@ PreferText
Render text as text objects, unless doing so results in rendering artifacts or poor quality rendering...
@ AlwaysOutlines
Always render text using path objects (AKA outlines/curves). This setting guarantees the best quality...
@ AlwaysText
Always render text as text objects. While this mode preserves text objects as text for post-processin...
LabelPlacementEngineVersion
Labeling placement engine version.
@ Version2
Version 2 (default for new projects since QGIS 3.12)
@ Version1
Version 1, matches placement from QGIS <= 3.10.1.
static QIcon getThemeIcon(const QString &name, const QColor &fillColor=QColor(), const QColor &strokeColor=QColor())
Helper to get a theme icon.
static void enableAutoGeometryRestore(QWidget *widget, const QString &key=QString())
Register the widget to allow its position to be automatically saved and restored when open and closed...
static void openHelp(const QString &key)
Opens help topic for the given help key using default system web browser.
QgsLabelEngineConfigDialog(QgsMapCanvas *canvas, QWidget *parent=nullptr)
constructor
Stores global configuration for labeling engine.
Qgis::TextRenderFormat defaultTextRenderFormat() const
Returns the default text rendering format for the labels.
void setDefaultTextRenderFormat(Qgis::TextRenderFormat format)
Sets the default text rendering format for the labels.
void setFlag(Qgis::LabelingFlag f, bool enabled=true)
Sets whether a particual flag is enabled.
void setPlacementVersion(Qgis::LabelPlacementEngineVersion version)
Sets the placement engine version, which dictates how the label placement problem is solved.
void setMaximumPolygonCandidatesPerCmSquared(double candidates)
Sets the maximum number of polygon label candidates per centimeter squared.
QColor unplacedLabelColor() const
Returns the color to use when rendering unplaced labels.
Qgis::LabelPlacementEngineVersion placementVersion() const
Returns the placement engine version, which dictates how the label placement problem is solved.
bool testFlag(Qgis::LabelingFlag f) const
Test whether a particular flag is enabled.
void setUnplacedLabelColor(const QColor &color)
Sets the color to use when rendering unplaced labels.
double maximumPolygonCandidatesPerCmSquared() const
Returns the maximum number of polygon label candidate positions per centimeter squared.
void setMaximumLineCandidatesPerCm(double candidates)
Sets the maximum number of line label candidates per centimeter.
double maximumLineCandidatesPerCm() const
Returns the maximum number of line label candidate positions per centimeter.
Map canvas is a class for displaying all GIS data types on a canvas.
void refreshAllLayers()
Reload all layers (including refreshing layer properties from their data sources),...
A bar for displaying non-blocking messages to the user.
static QgsProject * instance()
Returns the QgsProject singleton instance.
void setLabelingEngineSettings(const QgsLabelingEngineSettings &settings)
Sets project's global labeling engine settings.
const QgsLabelingEngineSettings & labelingEngineSettings() const
Returns project's global labeling engine settings.
bool showPartialLabels() const
Returns whether partial labels should be allowed.