QGIS API Documentation  3.12.1-BucureČ™ti (121cc00ff0)
qgstextformatwidget.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgstextformatwidget.h
3  ---------------------
4  begin : June 2009
5  copyright : (C) Martin Dobias
6  email : wonder dot sk at gmail dot com
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 
17 #ifndef QGSTEXTFORMATWIDGET_H
18 #define QGSTEXTFORMATWIDGET_H
19 
20 #include "ui_qgstextformatwidgetbase.h"
21 #include "qgis_sip.h"
22 #include "qgstextrenderer.h"
23 #include "qgsstringutils.h"
24 #include "qgsguiutils.h"
25 #include "qgssymbolwidgetcontext.h"
26 #include <QFontDatabase>
27 #include "qgis_gui.h"
28 
29 class QgsMapCanvas;
31 
32 
50 class GUI_EXPORT QgsTextFormatWidget : public QWidget, public QgsExpressionContextGenerator, protected Ui::QgsTextFormatWidgetBase
51 {
52  Q_OBJECT
53  Q_PROPERTY( QgsTextFormat format READ format )
54 
55  public:
56 
64  QgsTextFormatWidget( const QgsTextFormat &format = QgsTextFormat(), QgsMapCanvas *mapCanvas = nullptr, QWidget *parent SIP_TRANSFERTHIS = nullptr,
65  QgsVectorLayer *layer = nullptr );
66 
67  ~QgsTextFormatWidget() override;
68 
75  QgsTextFormat format( bool includeDataDefinedProperties = true ) const;
76 
81  void setFormat( const QgsTextFormat &format );
82 
88  virtual void setContext( const QgsSymbolWidgetContext &context );
89 
95  QgsSymbolWidgetContext context() const;
96 
105  void deactivateField( QgsPalLayerSettings::Property key );
106 
107  public slots:
108 
113  void setDockMode( bool enabled );
114 
115  signals:
116 
118  void widgetChanged();
119 
124  void auxiliaryFieldCreated();
125 
126  protected:
127 
129  enum Mode
130  {
131  Text = 0,
133  };
134 
142  QgsTextFormatWidget( QgsMapCanvas *mapCanvas, QWidget *parent SIP_TRANSFERTHIS, Mode mode, QgsVectorLayer *layer = nullptr );
143 
148  void updateWidgetForFormat( const QgsTextFormat &format );
149 
154  void setPreviewBackground( const QColor &color );
155 
160  void enableDataDefinedAlignment( bool enable );
161 
163 
167  QButtonGroup *mQuadrantBtnGrp = nullptr;
169  QButtonGroup *mDirectSymbBtnGrp = nullptr;
171  QButtonGroup *mUpsidedownBtnGrp = nullptr;
173  QButtonGroup *mPlacePointBtnGrp = nullptr;
175  QButtonGroup *mPlaceLineBtnGrp = nullptr;
177  QButtonGroup *mPlacePolygonBtnGrp = nullptr;
179  int mMinPixelLimit = 0;
180 
182  QgsMapCanvas *mMapCanvas = nullptr;
183 
186 
189 
191  QgsVectorLayer *mLayer = nullptr;
192 
194 
195  protected slots:
196 
198  void updateLinePlacementOptions();
199 
201  void updatePlacementWidgets();
202 
207  virtual void setFormatFromStyle( const QString &name, QgsStyle::StyleEntity type );
208 
212  virtual void saveFormat();
213 
218  void updatePreview();
219 
220 #ifndef SIP_RUN
221 
228  void populateDataDefinedButtons();
229 #endif
230 
231  private:
232  Mode mWidgetMode = Text;
233 
234  QgsCharacterSelectorDialog *mCharDlg = nullptr;
235  std::unique_ptr< QgsPaintEffect > mBufferEffect;
236  std::unique_ptr< QgsPaintEffect > mMaskEffect;
237  std::unique_ptr< QgsPaintEffect > mBackgroundEffect;
238  QColor mPreviewBackgroundColor;
239 
240  QFontDatabase mFontDB;
241 
242  // background reference font
243  QFont mRefFont;
244  bool mDockMode = false;
245 
246  bool mLoadSvgParams = false;
247  QgsExpressionContext mPreviewExpressionContext;
248 
249  QMap<QgsPalLayerSettings::Property, QgsPropertyOverrideButton *> mButtons;
250 
251  void initWidget();
252  void setWidgetMode( Mode mode );
253  void toggleDDButtons( bool visible );
254  void blockFontChangeSignals( bool blk );
255  void populateFontCapitalsComboBox();
256  void populateFontStyleComboBox();
257  void updateFont( const QFont &font );
258  void connectValueChanged( const QList<QWidget *> &widgets, const char *slot );
259 
260  void registerDataDefinedButton( QgsPropertyOverrideButton *button, QgsPalLayerSettings::Property key );
261 
262  private slots:
263  void optionsStackedWidget_CurrentChanged( int indx );
264  void showBackgroundRadius( bool show );
265  void showBackgroundPenStyle( bool show );
266  void mShapeSVGPathLineEdit_textChanged( const QString &text );
267  void onSubstitutionsChanged( const QgsStringReplacementCollection &substitutions );
268  void previewScaleChanged( double scale );
269  void mFontSizeSpinBox_valueChanged( double d );
270  void mFontCapitalsComboBox_currentIndexChanged( int index );
271  void mFontFamilyCmbBx_currentFontChanged( const QFont &f );
272  void mFontStyleComboBox_currentIndexChanged( const QString &text );
273  void mFontUnderlineBtn_toggled( bool ckd );
274  void mFontStrikethroughBtn_toggled( bool ckd );
275  void kerningToggled( bool checked );
276  void mFontWordSpacingSpinBox_valueChanged( double spacing );
277  void mFontLetterSpacingSpinBox_valueChanged( double spacing );
278  void mFontSizeUnitWidget_changed();
279  void mFontMinPixelSpinBox_valueChanged( int px );
280  void mFontMaxPixelSpinBox_valueChanged( int px );
281  void mBufferUnitWidget_changed();
282  void mMaskBufferUnitWidget_changed();
283  void mCoordXDDBtn_activated( bool active );
284  void mCoordYDDBtn_activated( bool active );
285  void mShapeTypeCmbBx_currentIndexChanged( int index );
286  void mShapeRotationCmbBx_currentIndexChanged( int index );
287  void mShapeSVGParamsBtn_clicked();
288  void mShapeSVGSelectorBtn_clicked();
289  void mPreviewTextEdit_textChanged( const QString &text );
290  void mPreviewTextBtn_clicked();
291  void mPreviewBackgroundBtn_colorChanged( const QColor &color );
292  void mDirectSymbLeftToolBtn_clicked();
293  void mDirectSymbRightToolBtn_clicked();
294  void chkLineOrientationDependent_toggled( bool active );
295  void mToolButtonConfigureSubstitutes_clicked();
296  void collapseSample( bool collapse );
297  void changeTextColor( const QColor &color );
298  void changeBufferColor( const QColor &color );
299  void scrollPreview();
300  void updateSvgWidgets( const QString &svgPath );
301  void updateAvailableShadowPositions();
302  void updateProperty();
303  void createAuxiliaryField();
304  void updateShapeFrameStatus();
305  void updateBufferFrameStatus();
306  void updateShadowFrameStatus();
307 };
308 
309 
322 class GUI_EXPORT QgsTextFormatDialog : public QDialog
323 {
324  Q_OBJECT
325 
326  public:
327 
336  QgsTextFormatDialog( const QgsTextFormat &format, QgsMapCanvas *mapCanvas = nullptr, QWidget *parent SIP_TRANSFERTHIS = nullptr, Qt::WindowFlags fl = QgsGuiUtils::ModalDialogFlags, QgsVectorLayer *layer = nullptr );
337 
341  QgsTextFormat format() const;
342 
347  void setContext( const QgsSymbolWidgetContext &context );
348 
353  QDialogButtonBox *buttonBox() const;
354 
355  private:
356 
357  QgsTextFormatWidget *mFormatWidget = nullptr;
358  QDialogButtonBox *mButtonBox = nullptr;
359 
360  private slots:
361  void showHelp();
362 
363 };
364 
378 {
379  Q_OBJECT
380 
381  public:
382 
390  QgsTextFormatPanelWidget( const QgsTextFormat &format, QgsMapCanvas *mapCanvas = nullptr, QWidget *parent SIP_TRANSFERTHIS = nullptr, QgsVectorLayer *layer = nullptr );
391 
395  QgsTextFormat format() const;
396 
401  void setContext( const QgsSymbolWidgetContext &context );
402 
403  void setDockMode( bool dockMode ) override;
404 
405  private:
406 
407  QgsTextFormatWidget *mFormatWidget = nullptr;
408 };
409 
410 #endif //QGSTEXTFORMATWIDGET_H
411 
412 
#define SIP_TRANSFERTHIS
Definition: qgis_sip.h:53
QgsSymbolWidgetContext mContext
Context in which widget is shown.
A dialog for selecting a single character from a single font.
A widget for customizing text formatting settings.
Map canvas is a class for displaying all GIS data types on a canvas.
Definition: qgsmapcanvas.h:75
Show labeling settings in addition to text formatting settings.
virtual void setDockMode(bool dockMode)
Set the widget in dock mode which tells the widget to emit panel widgets and not open dialogs...
StyleEntity
Enum for Entities involved in a style.
Definition: qgsstyle.h:177
Property
Data definable properties.
virtual QgsExpressionContext createExpressionContext() const =0
This method needs to be reimplemented in all classes which implement this interface and return an exp...
A button for controlling property overrides which may apply to a widget.
QgsPropertyCollection mDataDefinedProperties
Data defined properties as defined in the widget.
Contains settings which reflect the context in which a symbol (or renderer) widget is shown...
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
QList< QgsSymbolLayerReference > QgsSymbolLayerReferenceList
QgsStringReplacementCollection mSubstitutions
Text substitution list.
Abstract interface for generating an expression context.
QgsSymbolLayerReferenceList mMaskedSymbolLayers
A collection of string replacements (specified using QgsStringReplacement objects).
A panel widget for customizing text formatting settings.
A grouped map of multiple QgsProperty objects, each referenced by a integer key value.
Container for all settings relating to text rendering.
A simple dialog for customizing text formatting settings.
Represents a vector layer which manages a vector based data sets.
Wrapper widget for existing widgets which can&#39;t have the inheritance tree changed, e.g dialogs.