QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
Public Slots | Signals | Public Member Functions | Protected Types | Protected Slots | Protected Member Functions | Protected Attributes | Properties | List of all members
QgsTextFormatWidget Class Reference

A widget for customizing text formatting settings. More...

#include <qgstextformatwidget.h>

Inheritance diagram for QgsTextFormatWidget:
Inheritance graph
[legend]

Public Slots

void setDockMode (bool enabled)
 Sets whether the widget should be shown in a compact dock mode. More...
 

Signals

void auxiliaryFieldCreated ()
 Emitted when an auxiliary field is creatd in the widget. More...
 
void widgetChanged ()
 Emitted when the text format defined by the widget changes. More...
 

Public Member Functions

 QgsTextFormatWidget (const QgsTextFormat &format=QgsTextFormat(), QgsMapCanvas *mapCanvas=nullptr, QWidget *parent=nullptr, QgsVectorLayer *layer=nullptr)
 Constructor for QgsTextFormatWidget. More...
 
 ~QgsTextFormatWidget () override
 
QgsSymbolWidgetContext context () const
 Returns the context in which the widget is shown, e.g., the associated map canvas and expression contexts. More...
 
void deactivateField (QgsPalLayerSettings::Property key)
 Deactivate a field from data defined properties and update the corresponding button. More...
 
QgsTextFormat format (bool includeDataDefinedProperties=true) const
 Returns the current formatting settings defined by the widget. More...
 
virtual void setContext (const QgsSymbolWidgetContext &context)
 Sets the context in which the widget is shown, e.g., the associated map canvas and expression contexts. More...
 
void setFormat (const QgsTextFormat &format)
 Sets the current formatting settings. More...
 
- Public Member Functions inherited from QgsExpressionContextGenerator
virtual ~QgsExpressionContextGenerator ()=default
 

Protected Types

enum  Mode { Text = 0, Labeling }
 Widget mode. More...
 

Protected Slots

void populateDataDefinedButtons ()
 Sets up connections required for data defined buttons, or updates the existing definition of these buttons. More...
 
virtual void saveFormat ()
 Saves the current text settings to a style entry. More...
 
virtual void setFormatFromStyle (const QString &name, QgsStyle::StyleEntity type)
 Sets the current text settings from a style entry. More...
 
void updateLinePlacementOptions ()
 Updates line placement options to reflect current state of widget. More...
 
void updatePlacementWidgets ()
 Updates label placement options to reflect current state of widget. More...
 
void updatePreview ()
 Updates the text preview. More...
 

Protected Member Functions

 QgsTextFormatWidget (QgsMapCanvas *mapCanvas, QWidget *parent, Mode mode, QgsVectorLayer *layer=nullptr)
 Constructor for QgsTextFormatWidget. More...
 
QgsExpressionContext createExpressionContext () const override
 This method needs to be reimplemented in all classes which implement this interface and return an expression context. More...
 
void enableDataDefinedAlignment (bool enable)
 Controls whether data defined alignment buttons are enabled. More...
 
void setPreviewBackground (const QColor &color)
 Sets the background color for the text preview widget. More...
 
void updateWidgetForFormat (const QgsTextFormat &format)
 Updates the widget's state to reflect the settings in a QgsTextFormat. More...
 

Protected Attributes

QgsSymbolWidgetContext mContext
 Context in which widget is shown. More...
 
QgsPropertyCollection mDataDefinedProperties
 Data defined properties as defined in the widget. More...
 
QButtonGroup * mDirectSymbBtnGrp = nullptr
 Symbol direction button group. More...
 
QgsVectorLayermLayer = nullptr
 Associated vector layer. More...
 
QgsMapCanvasmMapCanvas = nullptr
 Associated map canvas. More...
 
int mMinPixelLimit = 0
 Pixel size font limit. More...
 
QButtonGroup * mPlaceLineBtnGrp = nullptr
 Line placement button group. More...
 
QButtonGroup * mPlacePointBtnGrp = nullptr
 Point placement button group. More...
 
QButtonGroup * mPlacePolygonBtnGrp = nullptr
 Polygon placement button group. More...
 
QButtonGroup * mQuadrantBtnGrp = nullptr
 Quadrant button group. More...
 
QgsStringReplacementCollection mSubstitutions
 Text substitution list. More...
 
QButtonGroup * mUpsidedownBtnGrp = nullptr
 Upside down labels button group. More...
 

Properties

QgsTextFormat format
 

Detailed Description

A widget for customizing text formatting settings.

QgsTextFormatWidget provides a widget for controlling the appearance of text rendered using QgsTextRenderer. The widget includes all settings contained within a QgsTextFormat, including shadow, background and buffer.

Additionally, the widget can handle labeling settings due to the large overlap between the text renderer settings and the labeling settings. This mode is possible by subclassing QgsTextFormatWidget and calling the protected constructor with a mode of Labeling.

Since
QGIS 3.0

Definition at line 50 of file qgstextformatwidget.h.

Member Enumeration Documentation

◆ Mode

enum QgsTextFormatWidget::Mode
protected

Widget mode.

Enumerator
Text 

Default mode, show text formatting settings only.

Labeling 

Show labeling settings in addition to text formatting settings.

Definition at line 129 of file qgstextformatwidget.h.

Constructor & Destructor Documentation

◆ QgsTextFormatWidget() [1/2]

QgsTextFormatWidget::QgsTextFormatWidget ( const QgsTextFormat format = QgsTextFormat(),
QgsMapCanvas mapCanvas = nullptr,
QWidget *  parent = nullptr,
QgsVectorLayer layer = nullptr 
)

Constructor for QgsTextFormatWidget.

Parameters
formatinitial formatting settings to show in widget
mapCanvasassociated map canvas
parentparent widget
layerassociated vector layer

Definition at line 42 of file qgstextformatwidget.cpp.

◆ ~QgsTextFormatWidget()

QgsTextFormatWidget::~QgsTextFormatWidget ( )
override

Definition at line 933 of file qgstextformatwidget.cpp.

◆ QgsTextFormatWidget() [2/2]

QgsTextFormatWidget::QgsTextFormatWidget ( QgsMapCanvas mapCanvas,
QWidget *  parent,
Mode  mode,
QgsVectorLayer layer = nullptr 
)
protected

Constructor for QgsTextFormatWidget.

Parameters
mapCanvasassociated map canvas
parentparent widget
modewidget mode
layerassociated vector layer

Definition at line 53 of file qgstextformatwidget.cpp.

Member Function Documentation

◆ auxiliaryFieldCreated

void QgsTextFormatWidget::auxiliaryFieldCreated ( )
signal

Emitted when an auxiliary field is creatd in the widget.

Since
QGIS 3.10

◆ context()

QgsSymbolWidgetContext QgsTextFormatWidget::context ( ) const

Returns the context in which the widget is shown, e.g., the associated map canvas and expression contexts.

See also
setContext()
Since
QGIS 3.10

Definition at line 1049 of file qgstextformatwidget.cpp.

◆ createExpressionContext()

QgsExpressionContext QgsTextFormatWidget::createExpressionContext ( ) const
overrideprotectedvirtual

This method needs to be reimplemented in all classes which implement this interface and return an expression context.

Since
QGIS 3.0

Implements QgsExpressionContextGenerator.

Definition at line 1868 of file qgstextformatwidget.cpp.

◆ deactivateField()

void QgsTextFormatWidget::deactivateField ( QgsPalLayerSettings::Property  key)

Deactivate a field from data defined properties and update the corresponding button.

Parameters
keyThe property key to deactivate
Since
QGIS 3.0

Definition at line 1054 of file qgstextformatwidget.cpp.

◆ enableDataDefinedAlignment()

void QgsTextFormatWidget::enableDataDefinedAlignment ( bool  enable)
protected

Controls whether data defined alignment buttons are enabled.

Parameters
enableset to true to enable alignment controls

Definition at line 1863 of file qgstextformatwidget.cpp.

◆ format()

QgsTextFormat QgsTextFormatWidget::format ( bool  includeDataDefinedProperties = true) const

Returns the current formatting settings defined by the widget.

If includateDataDefinedProperties is true, then data defined properties specified in the widget will be included in the format definition.

Definition at line 941 of file qgstextformatwidget.cpp.

◆ populateDataDefinedButtons

void QgsTextFormatWidget::populateDataDefinedButtons ( )
protectedslot

Sets up connections required for data defined buttons, or updates the existing definition of these buttons.

Since
QGIS 3.10

Definition at line 634 of file qgstextformatwidget.cpp.

◆ saveFormat

void QgsTextFormatWidget::saveFormat ( )
protectedvirtualslot

Saves the current text settings to a style entry.

Definition at line 1689 of file qgstextformatwidget.cpp.

◆ setContext()

void QgsTextFormatWidget::setContext ( const QgsSymbolWidgetContext context)
virtual

Sets the context in which the widget is shown, e.g., the associated map canvas and expression contexts.

See also
context()
Since
QGIS 3.10

Definition at line 1075 of file qgstextformatwidget.cpp.

◆ setDockMode

void QgsTextFormatWidget::setDockMode ( bool  enabled)
slot

Sets whether the widget should be shown in a compact dock mode.

Parameters
enabledset to true to show in dock mode.

Definition at line 545 of file qgstextformatwidget.cpp.

◆ setFormat()

void QgsTextFormatWidget::setFormat ( const QgsTextFormat format)

Sets the current formatting settings.

Since
QGIS 3.2

Definition at line 1031 of file qgstextformatwidget.cpp.

◆ setFormatFromStyle

void QgsTextFormatWidget::setFormatFromStyle ( const QString &  name,
QgsStyle::StyleEntity  type 
)
protectedvirtualslot

Sets the current text settings from a style entry.

Since
QGIS 3.10

Definition at line 1657 of file qgstextformatwidget.cpp.

◆ setPreviewBackground()

void QgsTextFormatWidget::setPreviewBackground ( const QColor &  color)
protected

Sets the background color for the text preview widget.

Parameters
colorbackground color

Definition at line 1178 of file qgstextformatwidget.cpp.

◆ updateLinePlacementOptions

void QgsTextFormatWidget::updateLinePlacementOptions ( )
protectedslot

Updates line placement options to reflect current state of widget.

Definition at line 1489 of file qgstextformatwidget.cpp.

◆ updatePlacementWidgets

void QgsTextFormatWidget::updatePlacementWidgets ( )
protectedslot

Updates label placement options to reflect current state of widget.

Definition at line 1193 of file qgstextformatwidget.cpp.

◆ updatePreview

void QgsTextFormatWidget::updatePreview ( )
protectedslot

Updates the text preview.

Since
QGIS 3.10

Definition at line 1158 of file qgstextformatwidget.cpp.

◆ updateWidgetForFormat()

void QgsTextFormatWidget::updateWidgetForFormat ( const QgsTextFormat format)
protected

Updates the widget's state to reflect the settings in a QgsTextFormat.

Parameters
formatsource format

Definition at line 792 of file qgstextformatwidget.cpp.

◆ widgetChanged

void QgsTextFormatWidget::widgetChanged ( )
signal

Emitted when the text format defined by the widget changes.

Member Data Documentation

◆ mContext

QgsSymbolWidgetContext QgsTextFormatWidget::mContext
protected

Context in which widget is shown.

Definition at line 185 of file qgstextformatwidget.h.

◆ mDataDefinedProperties

QgsPropertyCollection QgsTextFormatWidget::mDataDefinedProperties
protected

Data defined properties as defined in the widget.

Definition at line 188 of file qgstextformatwidget.h.

◆ mDirectSymbBtnGrp

QButtonGroup* QgsTextFormatWidget::mDirectSymbBtnGrp = nullptr
protected

Symbol direction button group.

Definition at line 169 of file qgstextformatwidget.h.

◆ mLayer

QgsVectorLayer* QgsTextFormatWidget::mLayer = nullptr
protected

Associated vector layer.

Definition at line 191 of file qgstextformatwidget.h.

◆ mMapCanvas

QgsMapCanvas* QgsTextFormatWidget::mMapCanvas = nullptr
protected

Associated map canvas.

Definition at line 182 of file qgstextformatwidget.h.

◆ mMinPixelLimit

int QgsTextFormatWidget::mMinPixelLimit = 0
protected

Pixel size font limit.

Definition at line 179 of file qgstextformatwidget.h.

◆ mPlaceLineBtnGrp

QButtonGroup* QgsTextFormatWidget::mPlaceLineBtnGrp = nullptr
protected

Line placement button group.

Definition at line 175 of file qgstextformatwidget.h.

◆ mPlacePointBtnGrp

QButtonGroup* QgsTextFormatWidget::mPlacePointBtnGrp = nullptr
protected

Point placement button group.

Definition at line 173 of file qgstextformatwidget.h.

◆ mPlacePolygonBtnGrp

QButtonGroup* QgsTextFormatWidget::mPlacePolygonBtnGrp = nullptr
protected

Polygon placement button group.

Definition at line 177 of file qgstextformatwidget.h.

◆ mQuadrantBtnGrp

QButtonGroup* QgsTextFormatWidget::mQuadrantBtnGrp = nullptr
protected

Quadrant button group.

Definition at line 167 of file qgstextformatwidget.h.

◆ mSubstitutions

QgsStringReplacementCollection QgsTextFormatWidget::mSubstitutions
protected

Text substitution list.

Definition at line 165 of file qgstextformatwidget.h.

◆ mUpsidedownBtnGrp

QButtonGroup* QgsTextFormatWidget::mUpsidedownBtnGrp = nullptr
protected

Upside down labels button group.

Definition at line 171 of file qgstextformatwidget.h.

Property Documentation

◆ format

QgsTextFormat QgsTextFormatWidget::format
read

Definition at line 53 of file qgstextformatwidget.h.


The documentation for this class was generated from the following files: