QGIS API Documentation  3.20.0-Odense (decaadbb31)
qgsfontbutton.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsfontbutton.h
3  ---------------
4  Date : May 2017
5  Copyright : (C) 2017 by Nyall Dawson
6  Email : nyall dot dawson 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 #include "qgsfontbutton.h"
17 #include "qgstextformatwidget.h"
18 #include "qgssymbollayerutils.h"
19 #include "qgscolorscheme.h"
20 #include "qgsmapcanvas.h"
21 #include "qgscolorwidgets.h"
22 #include "qgscolorschemeregistry.h"
23 #include "qgscolorswatchgrid.h"
24 #include "qgsdoublespinbox.h"
25 #include "qgsunittypes.h"
26 #include "qgsmenuheader.h"
27 #include "qgsfontutils.h"
28 #include "qgsapplication.h"
30 #include "qgsvectorlayer.h"
31 #include "qgstextrenderer.h"
32 #include <QMenu>
33 #include <QClipboard>
34 #include <QDrag>
35 #include <QDesktopWidget>
36 #include <QToolTip>
37 
38 QgsFontButton::QgsFontButton( QWidget *parent, const QString &dialogTitle )
39  : QToolButton( parent )
40  , mDialogTitle( dialogTitle.isEmpty() ? tr( "Text Format" ) : dialogTitle )
41  , mNullFormatString( tr( "No Format" ) )
42 {
43  setText( tr( "Font" ) );
44 
45  setAcceptDrops( true );
46  connect( this, &QAbstractButton::clicked, this, &QgsFontButton::showSettingsDialog );
47 
48  //setup dropdown menu
49  mMenu = new QMenu( this );
50  connect( mMenu, &QMenu::aboutToShow, this, &QgsFontButton::prepareMenu );
51  setMenu( mMenu );
52  setPopupMode( QToolButton::MenuButtonPopup );
53 
54  //make sure height of button looks good under different platforms
55  QSize size = QToolButton::minimumSizeHint();
56  int fontHeight = Qgis::UI_SCALE_FACTOR * fontMetrics().height() * 1.4;
57  int minWidth = Qgis::UI_SCALE_FACTOR * fontMetrics().horizontalAdvance( 'X' ) * 20;
58  mSizeHint = QSize( std::max( minWidth, size.width() ), std::max( size.height(), fontHeight ) );
59 }
60 
62 {
63  return mSizeHint;
64 }
65 
67 {
68  return mSizeHint;
69 }
70 
71 void QgsFontButton::showSettingsDialog()
72 {
73  switch ( mMode )
74  {
75  case ModeTextRenderer:
76  {
77  QgsExpressionContext context;
78  if ( mExpressionContextGenerator )
79  context = mExpressionContextGenerator->createExpressionContext();
80  else
81  {
83  }
84 
85  QgsSymbolWidgetContext symbolContext;
86  symbolContext.setExpressionContext( &context );
87  symbolContext.setMapCanvas( mMapCanvas );
88  symbolContext.setMessageBar( mMessageBar );
89 
91  if ( panel && panel->dockMode() )
92  {
93  mActivePanel = new QgsTextFormatPanelWidget( mFormat, mMapCanvas, this, mLayer.data() );
94  mActivePanel->setPanelTitle( mDialogTitle );
95  mActivePanel->setContext( symbolContext );
96 
97  connect( mActivePanel, &QgsTextFormatPanelWidget::widgetChanged, this, [ this ] { setTextFormat( mActivePanel->format() ); } );
98  panel->openPanel( mActivePanel );
99  return;
100  }
101 
102  QgsTextFormatDialog dialog( mFormat, mMapCanvas, this, QgsGuiUtils::ModalDialogFlags, mLayer.data() );
103  dialog.setWindowTitle( mDialogTitle );
104  dialog.setContext( symbolContext );
105  if ( dialog.exec() )
106  {
107  setTextFormat( dialog.format() );
108  QgsFontUtils::addRecentFontFamily( mFormat.font().family() );
109  }
110  break;
111  }
112 
113  case ModeQFont:
114  {
115  bool ok;
116  QFont newFont = QgsGuiUtils::getFont( ok, mFont, mDialogTitle );
117  if ( ok )
118  {
119  QgsFontUtils::addRecentFontFamily( newFont.family() );
120  setCurrentFont( newFont );
121  }
122  break;
123  }
124  }
125 
126  // reactivate button's window
127  activateWindow();
128  raise();
129 }
130 
132 {
133  return mMapCanvas;
134 }
135 
137 {
138  mMapCanvas = mapCanvas;
139 }
140 
142 {
143  mMessageBar = bar;
144 }
145 
147 {
148  return mMessageBar;
149 }
150 
152 {
153  if ( mActivePanel && !format.isValid() )
154  mActivePanel->acceptPanel();
155 
156  mFormat = format;
157  updatePreview();
158 
159  if ( mActivePanel && format.isValid() )
160  mActivePanel->setFormat( format );
161  emit changed();
162 }
163 
165 {
166  mFormat = QgsTextFormat();
167  updatePreview();
168  emit changed();
169 }
170 
171 void QgsFontButton::setColor( const QColor &color )
172 {
173  QColor opaque = color;
174  opaque.setAlphaF( 1.0 );
175 
176  if ( mNullFormatAction )
177  mNullFormatAction->setChecked( false );
178 
179  if ( mFormat.color() != opaque )
180  {
181  mFormat.setColor( opaque );
182  updatePreview();
183  emit changed();
184  }
185 }
186 
188 {
189  switch ( mMode )
190  {
191  case ModeTextRenderer:
192  QApplication::clipboard()->setMimeData( mFormat.toMimeData() );
193  break;
194 
195  case ModeQFont:
196  QApplication::clipboard()->setMimeData( QgsFontUtils::toMimeData( mFont ) );
197  break;
198  }
199 }
200 
202 {
203  QgsTextFormat tempFormat;
204  QFont font;
205  if ( mMode == ModeTextRenderer && formatFromMimeData( QApplication::clipboard()->mimeData(), tempFormat ) )
206  {
207  setTextFormat( tempFormat );
208  QgsFontUtils::addRecentFontFamily( mFormat.font().family() );
209  }
210  else if ( mMode == ModeQFont && fontFromMimeData( QApplication::clipboard()->mimeData(), font ) )
211  {
212  QgsFontUtils::addRecentFontFamily( font.family() );
213  setCurrentFont( font );
214  }
215 }
216 
217 bool QgsFontButton::event( QEvent *e )
218 {
219  if ( e->type() == QEvent::ToolTip )
220  {
221  QHelpEvent *helpEvent = static_cast< QHelpEvent *>( e );
222  QString toolTip;
223  double fontSize = 0.0;
224  switch ( mMode )
225  {
226  case ModeTextRenderer:
227  fontSize = mFormat.size();
228  break;
229 
230  case ModeQFont:
231  fontSize = mFont.pointSizeF();
232  break;
233  }
234  toolTip = QStringLiteral( "<b>%1</b><br>%2<br>Size: %3" ).arg( text(), mMode == ModeTextRenderer ? mFormat.font().family() : mFont.family() ).arg( fontSize );
235  QToolTip::showText( helpEvent->globalPos(), toolTip );
236  }
237  return QToolButton::event( e );
238 }
239 
240 void QgsFontButton::mousePressEvent( QMouseEvent *e )
241 {
242  if ( e->button() == Qt::RightButton )
243  {
244  QToolButton::showMenu();
245  return;
246  }
247  else if ( e->button() == Qt::LeftButton )
248  {
249  mDragStartPosition = e->pos();
250  }
251  QToolButton::mousePressEvent( e );
252 }
253 
254 void QgsFontButton::mouseMoveEvent( QMouseEvent *e )
255 {
256  //handle dragging fonts from button
257 
258  if ( !( e->buttons() & Qt::LeftButton ) )
259  {
260  //left button not depressed, so not a drag
261  QToolButton::mouseMoveEvent( e );
262  return;
263  }
264 
265  if ( ( e->pos() - mDragStartPosition ).manhattanLength() < QApplication::startDragDistance() )
266  {
267  //mouse not moved, so not a drag
268  QToolButton::mouseMoveEvent( e );
269  return;
270  }
271 
272  //user is dragging font
273  QDrag *drag = new QDrag( this );
274  switch ( mMode )
275  {
276  case ModeTextRenderer:
277  drag->setMimeData( mFormat.toMimeData() );
278  break;
279 
280  case ModeQFont:
281  drag->setMimeData( QgsFontUtils::toMimeData( mFont ) );
282  break;
283  }
284  const int iconSize = QgsGuiUtils::scaleIconSize( 50 );
285  drag->setPixmap( createDragIcon( QSize( iconSize, iconSize ) ) );
286  drag->exec( Qt::CopyAction );
287  setDown( false );
288 }
289 
290 bool QgsFontButton::colorFromMimeData( const QMimeData *mimeData, QColor &resultColor, bool &hasAlpha )
291 {
292  hasAlpha = false;
293  QColor mimeColor = QgsSymbolLayerUtils::colorFromMimeData( mimeData, hasAlpha );
294 
295  if ( mimeColor.isValid() )
296  {
297  resultColor = mimeColor;
298  return true;
299  }
300 
301  //could not get color from mime data
302  return false;
303 }
304 
305 void QgsFontButton::dragEnterEvent( QDragEnterEvent *e )
306 {
307  //is dragged data valid font data?
308  QColor mimeColor;
309  QgsTextFormat format;
310  QFont font;
311  bool hasAlpha = false;
312 
313  if ( mMode == ModeTextRenderer && formatFromMimeData( e->mimeData(), format ) )
314  {
315  e->acceptProposedAction();
316  updatePreview( QColor(), &format );
317  }
318  else if ( mMode == ModeQFont && fontFromMimeData( e->mimeData(), font ) )
319  {
320  e->acceptProposedAction();
321  updatePreview( QColor(), nullptr, &font );
322  }
323  else if ( mMode == ModeTextRenderer && colorFromMimeData( e->mimeData(), mimeColor, hasAlpha ) )
324  {
325  //if so, we accept the drag, and temporarily change the button's color
326  //to match the dragged color. This gives immediate feedback to the user
327  //that colors can be dropped here
328  e->acceptProposedAction();
329  updatePreview( mimeColor );
330  }
331 }
332 
333 void QgsFontButton::dragLeaveEvent( QDragLeaveEvent *e )
334 {
335  Q_UNUSED( e )
336  //reset button color
337  updatePreview();
338 }
339 
340 void QgsFontButton::dropEvent( QDropEvent *e )
341 {
342  //is dropped data valid format data?
343  QColor mimeColor;
344  QgsTextFormat format;
345  QFont font;
346  bool hasAlpha = false;
347  if ( mMode == ModeTextRenderer && formatFromMimeData( e->mimeData(), format ) )
348  {
349  setTextFormat( format );
350  QgsFontUtils::addRecentFontFamily( mFormat.font().family() );
351  return;
352  }
353  else if ( mMode == ModeQFont && fontFromMimeData( e->mimeData(), font ) )
354  {
355  QgsFontUtils::addRecentFontFamily( font.family() );
356  setCurrentFont( font );
357  return;
358  }
359  else if ( mMode == ModeTextRenderer && colorFromMimeData( e->mimeData(), mimeColor, hasAlpha ) )
360  {
361  //accept drop and set new color
362  e->acceptProposedAction();
363 
364  if ( hasAlpha )
365  {
366  mFormat.setOpacity( mimeColor.alphaF() );
367  }
368  mimeColor.setAlphaF( 1.0 );
369  mFormat.setColor( mimeColor );
371  updatePreview();
372  emit changed();
373  }
374  updatePreview();
375 }
376 
377 void QgsFontButton::wheelEvent( QWheelEvent *event )
378 {
379  double size = 0;
380  switch ( mMode )
381  {
382  case ModeTextRenderer:
383  size = mFormat.size();
384  break;
385 
386  case ModeQFont:
387  size = mFont.pointSizeF();
388  break;
389  }
390 
391  double increment = ( event->modifiers() & Qt::ControlModifier ) ? 0.1 : 1;
392  if ( event->delta() > 0 )
393  {
394  size += increment;
395  }
396  else
397  {
398  size -= increment;
399  }
400  size = std::max( size, 1.0 );
401 
402  switch ( mMode )
403  {
404  case ModeTextRenderer:
405  {
406  QgsTextFormat newFormat = mFormat;
407  newFormat.setSize( size );
408  setTextFormat( newFormat );
409  break;
410  }
411 
412  case ModeQFont:
413  {
414  QFont newFont = mFont;
415  newFont.setPointSizeF( size );
416  setCurrentFont( newFont );
417  break;
418  }
419  }
420 
421  event->accept();
422 }
423 
424 QPixmap QgsFontButton::createColorIcon( const QColor &color ) const
425 {
426  //create an icon pixmap
427  const int iconSize = QgsGuiUtils::scaleIconSize( 16 );
428  QPixmap pixmap( iconSize, iconSize );
429  pixmap.fill( Qt::transparent );
430 
431  QPainter p;
432  p.begin( &pixmap );
433 
434  //draw color over pattern
435  p.setBrush( QBrush( color ) );
436 
437  //draw border
438  p.setPen( QColor( 197, 197, 197 ) );
439  p.drawRect( 0, 0, iconSize - 1, iconSize - 1 );
440  p.end();
441  return pixmap;
442 }
443 
444 QPixmap QgsFontButton::createDragIcon( QSize size, const QgsTextFormat *tempFormat, const QFont *tempFont ) const
445 {
446  if ( !tempFormat )
447  tempFormat = &mFormat;
448  if ( !tempFont )
449  tempFont = &mFont;
450 
451  //create an icon pixmap
452  QPixmap pixmap( size.width(), size.height() );
453  pixmap.fill( Qt::transparent );
454  QPainter p;
455  p.begin( &pixmap );
456  p.setRenderHint( QPainter::Antialiasing );
457  QRect rect( 0, 0, size.width(), size.height() );
458 
459  if ( mMode == ModeQFont || tempFormat->color().lightnessF() < 0.7 )
460  {
461  p.setBrush( QBrush( QColor( 255, 255, 255 ) ) );
462  p.setPen( QPen( QColor( 150, 150, 150 ), 0 ) );
463  }
464  else
465  {
466  p.setBrush( QBrush( QColor( 0, 0, 0 ) ) );
467  p.setPen( QPen( QColor( 100, 100, 100 ), 0 ) );
468  }
469  p.drawRect( rect );
470  p.setBrush( Qt::NoBrush );
471  p.setPen( Qt::NoPen );
472 
473  switch ( mMode )
474  {
475  case ModeTextRenderer:
476  {
477  QgsRenderContext context;
478  QgsMapToPixel newCoordXForm;
479  newCoordXForm.setParameters( 1, 0, 0, 0, 0, 0 );
480  context.setMapToPixel( newCoordXForm );
481 
482  context.setScaleFactor( QgsApplication::desktop()->logicalDpiX() / 25.4 );
483  context.setUseAdvancedEffects( true );
484  context.setPainter( &p );
485 
486  // slightly inset text to account for buffer/background
487  double xtrans = 0;
488  if ( tempFormat->buffer().enabled() )
489  xtrans = context.convertToPainterUnits( tempFormat->buffer().size(), tempFormat->buffer().sizeUnit(), tempFormat->buffer().sizeMapUnitScale() );
490  if ( tempFormat->background().enabled() && tempFormat->background().sizeType() != QgsTextBackgroundSettings::SizeFixed )
491  xtrans = std::max( xtrans, context.convertToPainterUnits( tempFormat->background().size().width(), tempFormat->background().sizeUnit(), tempFormat->background().sizeMapUnitScale() ) );
492 
493  double ytrans = 0.0;
494  if ( tempFormat->buffer().enabled() )
495  ytrans = std::max( ytrans, context.convertToPainterUnits( tempFormat->buffer().size(), tempFormat->buffer().sizeUnit(), tempFormat->buffer().sizeMapUnitScale() ) );
496  if ( tempFormat->background().enabled() )
497  ytrans = std::max( ytrans, context.convertToPainterUnits( tempFormat->background().size().height(), tempFormat->background().sizeUnit(), tempFormat->background().sizeMapUnitScale() ) );
498 
499  QRectF textRect = rect;
500  textRect.setLeft( xtrans );
501  textRect.setWidth( textRect.width() - xtrans );
502  textRect.setTop( ytrans );
503  if ( textRect.height() > 300 )
504  textRect.setHeight( 300 );
505  if ( textRect.width() > 2000 )
506  textRect.setWidth( 2000 );
507 
508  QgsTextRenderer::drawText( textRect, 0, QgsTextRenderer::AlignCenter, QStringList() << tr( "Aa" ),
509  context, *tempFormat );
510  break;
511  }
512  case ModeQFont:
513  {
514  p.setBrush( Qt::NoBrush );
515  p.setPen( QColor( 0, 0, 0 ) );
516  p.setFont( *tempFont );
517  QRectF textRect = rect;
518  textRect.setLeft( 2 );
519  p.drawText( textRect, Qt::AlignVCenter, tr( "Aa" ) );
520  break;
521  }
522  }
523 
524  p.end();
525  return pixmap;
526 }
527 
528 void QgsFontButton::prepareMenu()
529 {
530  //we need to tear down and rebuild this menu every time it is shown. Otherwise the space allocated to any
531  //QgsColorSwatchGridAction is not recalculated by Qt and the swatch grid may not be the correct size
532  //for the number of colors shown in the grid. Note that we MUST refresh color swatch grids every time this
533  //menu is opened, otherwise color schemes like the recent color scheme grid are meaningless
534  mMenu->clear();
535 
536  if ( mMode == ModeTextRenderer && mShowNoFormat )
537  {
538  mNullFormatAction = new QAction( mNullFormatString, this );
539  mMenu->addAction( mNullFormatAction );
540  connect( mNullFormatAction, &QAction::triggered, this, &QgsFontButton::setToNullFormat );
541  if ( !mFormat.isValid() )
542  {
543  mNullFormatAction->setCheckable( true );
544  mNullFormatAction->setChecked( true );
545  }
546  }
547 
548  QWidgetAction *sizeAction = new QWidgetAction( mMenu );
549  QWidget *sizeWidget = new QWidget();
550  QVBoxLayout *sizeLayout = new QVBoxLayout();
551  sizeLayout->setContentsMargins( 0, 0, 0, 3 );
552  sizeLayout->setSpacing( 2 );
553 
554  QString fontHeaderLabel;
555  switch ( mMode )
556  {
557  case ModeTextRenderer:
558  fontHeaderLabel = tr( "Font size (%1)" ).arg( QgsUnitTypes::toString( mFormat.sizeUnit() ) );
559  break;
560 
561  case ModeQFont:
562  fontHeaderLabel = tr( "Font size (pt)" );
563  break;
564  }
565 
566  QgsMenuHeader *sizeLabel = new QgsMenuHeader( fontHeaderLabel );
567  sizeLayout->addWidget( sizeLabel );
568 
569  QgsDoubleSpinBox *sizeSpin = new QgsDoubleSpinBox( nullptr );
570  sizeSpin->setDecimals( 4 );
571  sizeSpin->setMaximum( 1e+9 );
572  sizeSpin->setShowClearButton( false );
573  sizeSpin->setValue( mMode == ModeTextRenderer ? mFormat.size() : mFont.pointSizeF() );
574  connect( sizeSpin, static_cast < void ( QgsDoubleSpinBox::* )( double ) > ( &QgsDoubleSpinBox::valueChanged ),
575  this, [ = ]( double value )
576  {
577  switch ( mMode )
578  {
579  case ModeTextRenderer:
580  if ( mNullFormatAction )
581  mNullFormatAction->setChecked( false );
582  mFormat.setSize( value );
583  break;
584  case ModeQFont:
585  mFont.setPointSizeF( value );
586  break;
587  }
588  updatePreview();
589  emit changed();
590  } );
591  QHBoxLayout *spinLayout = new QHBoxLayout();
592  spinLayout->setContentsMargins( 4, 0, 4, 0 );
593  spinLayout->addWidget( sizeSpin );
594  sizeLayout->addLayout( spinLayout );
595  sizeWidget->setLayout( sizeLayout );
596  sizeAction->setDefaultWidget( sizeWidget );
597  sizeWidget->setFocusProxy( sizeSpin );
598  sizeWidget->setFocusPolicy( Qt::StrongFocus );
599  mMenu->addAction( sizeAction );
600 
601  QMenu *recentFontMenu = new QMenu( tr( "Recent Fonts" ), mMenu );
602  const auto recentFontFamilies { QgsFontUtils::recentFontFamilies() };
603  for ( const QString &family : recentFontFamilies )
604  {
605  QAction *fontAction = new QAction( family, recentFontMenu );
606  QFont f = fontAction->font();
607  f.setFamily( family );
608  fontAction->setFont( f );
609  fontAction->setToolTip( family );
610  recentFontMenu->addAction( fontAction );
611  if ( ( mMode == ModeTextRenderer && family == mFormat.font().family() )
612  || ( mMode == ModeQFont && family == mFont.family() ) )
613  {
614  fontAction->setCheckable( true );
615  fontAction->setChecked( true );
616  }
617  auto setFont = [this, family]
618  {
619  switch ( mMode )
620  {
621  case ModeTextRenderer:
622  {
623  QgsTextFormat newFormat = mFormat;
624  QFont f = newFormat.font();
625  f.setFamily( family );
626  newFormat.setFont( f );
627  setTextFormat( newFormat );
628  QgsFontUtils::addRecentFontFamily( mFormat.font().family() );
629  break;
630  }
631  case ModeQFont:
632  {
633  QFont font = mFont;
634  font.setFamily( family );
635  setCurrentFont( font );
637  break;
638  }
639  }
640  };
641  connect( fontAction, &QAction::triggered, this, setFont );
642  }
643  mMenu->addMenu( recentFontMenu );
644 
645  QAction *configureAction = new QAction( tr( "Configure Format…" ), this );
646  mMenu->addAction( configureAction );
647  connect( configureAction, &QAction::triggered, this, &QgsFontButton::showSettingsDialog );
648 
649  QAction *copyFormatAction = new QAction( tr( "Copy Format" ), this );
650  mMenu->addAction( copyFormatAction );
651  connect( copyFormatAction, &QAction::triggered, this, &QgsFontButton::copyFormat );
652  QAction *pasteFormatAction = new QAction( tr( "Paste Format" ), this );
653  //enable or disable paste action based on current clipboard contents. We always show the paste
654  //action, even if it's disabled, to give hint to the user that pasting colors is possible
655  QgsTextFormat tempFormat;
656  QFont tempFont;
657  const int iconSize = QgsGuiUtils::scaleIconSize( 16 );
658  if ( mMode == ModeTextRenderer && formatFromMimeData( QApplication::clipboard()->mimeData(), tempFormat ) )
659  {
661  tempFormat.setSize( 14 );
662  pasteFormatAction->setIcon( createDragIcon( QSize( iconSize, iconSize ), &tempFormat ) );
663  }
664  else if ( mMode == ModeQFont && fontFromMimeData( QApplication::clipboard()->mimeData(), tempFont ) )
665  {
666  tempFont.setPointSize( 8 );
667  pasteFormatAction->setIcon( createDragIcon( QSize( iconSize, iconSize ), nullptr, &tempFont ) );
668  }
669  else
670  {
671  pasteFormatAction->setEnabled( false );
672  }
673  mMenu->addAction( pasteFormatAction );
674  connect( pasteFormatAction, &QAction::triggered, this, &QgsFontButton::pasteFormat );
675 
676  if ( mMode == ModeTextRenderer )
677  {
678  mMenu->addSeparator();
679 
680  QgsColorWheel *colorWheel = new QgsColorWheel( mMenu );
681  colorWheel->setColor( mFormat.color() );
682  QgsColorWidgetAction *colorAction = new QgsColorWidgetAction( colorWheel, mMenu, mMenu );
683  colorAction->setDismissOnColorSelection( false );
684  connect( colorAction, &QgsColorWidgetAction::colorChanged, this, &QgsFontButton::setColor );
685  mMenu->addAction( colorAction );
686 
688  QColor alphaColor = mFormat.color();
689  alphaColor.setAlphaF( mFormat.opacity() );
690  alphaRamp->setColor( alphaColor );
691  QgsColorWidgetAction *alphaAction = new QgsColorWidgetAction( alphaRamp, mMenu, mMenu );
692  alphaAction->setDismissOnColorSelection( false );
693  connect( alphaAction, &QgsColorWidgetAction::colorChanged, this, [ = ]( const QColor & color )
694  {
695  double opacity = color.alphaF();
696  mFormat.setOpacity( opacity );
697  updatePreview();
698  if ( mNullFormatAction )
699  mNullFormatAction->setChecked( false );
700  emit changed();
701  } );
702  connect( colorAction, &QgsColorWidgetAction::colorChanged, alphaRamp, [alphaRamp]( const QColor & color ) { alphaRamp->setColor( color, false ); }
703  );
704  mMenu->addAction( alphaAction );
705 
706  //get schemes with ShowInColorButtonMenu flag set
707  QList< QgsColorScheme * > schemeList = QgsApplication::colorSchemeRegistry()->schemes( QgsColorScheme::ShowInColorButtonMenu );
708  QList< QgsColorScheme * >::iterator it = schemeList.begin();
709  for ( ; it != schemeList.end(); ++it )
710  {
711  QgsColorSwatchGridAction *colorAction = new QgsColorSwatchGridAction( *it, mMenu, QStringLiteral( "labeling" ), this );
712  colorAction->setBaseColor( mFormat.color() );
713  mMenu->addAction( colorAction );
714  connect( colorAction, &QgsColorSwatchGridAction::colorChanged, this, &QgsFontButton::setColor );
715  connect( colorAction, &QgsColorSwatchGridAction::colorChanged, this, &QgsFontButton::addRecentColor );
716  }
717 
718  mMenu->addSeparator();
719 
720  QAction *copyColorAction = new QAction( tr( "Copy Color" ), this );
721  mMenu->addAction( copyColorAction );
722  connect( copyColorAction, &QAction::triggered, this, &QgsFontButton::copyColor );
723 
724  QAction *pasteColorAction = new QAction( tr( "Paste Color" ), this );
725  //enable or disable paste action based on current clipboard contents. We always show the paste
726  //action, even if it's disabled, to give hint to the user that pasting colors is possible
727  QColor clipColor;
728  bool hasAlpha = false;
729  if ( colorFromMimeData( QApplication::clipboard()->mimeData(), clipColor, hasAlpha ) )
730  {
731  pasteColorAction->setIcon( createColorIcon( clipColor ) );
732  }
733  else
734  {
735  pasteColorAction->setEnabled( false );
736  }
737  mMenu->addAction( pasteColorAction );
738  connect( pasteColorAction, &QAction::triggered, this, &QgsFontButton::pasteColor );
739  }
740 }
741 
742 void QgsFontButton::addRecentColor( const QColor &color )
743 {
745 }
746 
748 {
749  return mFont;
750 }
751 
753 {
754  return mLayer;
755 }
756 
758 {
759  mLayer = layer;
760 }
761 
763 {
764  mExpressionContextGenerator = generator;
765 }
766 
767 void QgsFontButton::setCurrentFont( const QFont &font )
768 {
769  mFont = font;
770  updatePreview();
771  emit changed();
772 }
773 
775 {
776  return mMode;
777 }
778 
780 {
781  mMode = mode;
782  updatePreview();
783 }
784 
785 bool QgsFontButton::formatFromMimeData( const QMimeData *mimeData, QgsTextFormat &resultFormat ) const
786 {
787  bool ok = false;
788  resultFormat = QgsTextFormat::fromMimeData( mimeData, &ok );
789  return ok;
790 }
791 
792 bool QgsFontButton::fontFromMimeData( const QMimeData *mimeData, QFont &resultFont ) const
793 {
794  bool ok = false;
795  resultFont = QgsFontUtils::fromMimeData( mimeData, &ok );
796  return ok;
797 }
798 
799 void QgsFontButton::changeEvent( QEvent *e )
800 {
801  if ( e->type() == QEvent::EnabledChange )
802  {
803  updatePreview();
804  }
805  QToolButton::changeEvent( e );
806 }
807 
808 void QgsFontButton::showEvent( QShowEvent *e )
809 {
810  updatePreview();
811  QToolButton::showEvent( e );
812 }
813 
814 void QgsFontButton::resizeEvent( QResizeEvent *event )
815 {
816  QToolButton::resizeEvent( event );
817  //recalculate icon size and redraw icon
818  mIconSize = QSize();
819  updatePreview();
820 }
821 
822 void QgsFontButton::updatePreview( const QColor &color, QgsTextFormat *format, QFont *font )
823 {
824  if ( mShowNoFormat && !mFormat.isValid() )
825  {
826  setIcon( QPixmap() );
827  return;
828  }
829 
830  QgsTextFormat tempFormat;
831  QFont tempFont;
832 
833  if ( format )
834  tempFormat = *format;
835  else
836  tempFormat = mFormat;
837  if ( font )
838  tempFont = *font;
839  else
840  tempFont = mFont;
841 
842  if ( color.isValid() )
843  tempFormat.setColor( color );
844 
845  QSize currentIconSize;
846  //icon size is button size with a small margin
847  if ( menu() )
848  {
849  if ( !mIconSize.isValid() )
850  {
851  //calculate size of push button part of widget (ie, without the menu dropdown button part)
852  QStyleOptionToolButton opt;
853  initStyleOption( &opt );
854  QRect buttonSize = QApplication::style()->subControlRect( QStyle::CC_ToolButton, &opt, QStyle::SC_ToolButton,
855  this );
856  //make sure height of icon looks good under different platforms
857 #ifdef Q_OS_WIN
858  mIconSize = QSize( buttonSize.width() - 10, height() - 6 );
859 #elif defined(Q_OS_MAC)
860  mIconSize = QSize( buttonSize.width() - 10, height() - 2 );
861 #else
862  mIconSize = QSize( buttonSize.width() - 10, height() - 12 );
863 #endif
864  }
865  currentIconSize = mIconSize;
866  }
867  else
868  {
869  //no menu
870 #ifdef Q_OS_WIN
871  currentIconSize = QSize( width() - 10, height() - 6 );
872 #else
873  currentIconSize = QSize( width() - 10, height() - 12 );
874 #endif
875  }
876 
877  if ( !currentIconSize.isValid() || currentIconSize.width() <= 0 || currentIconSize.height() <= 0 )
878  {
879  return;
880  }
881 
882  //create an icon pixmap
883  QPixmap pixmap( currentIconSize );
884  pixmap.fill( Qt::transparent );
885  QPainter p;
886  p.begin( &pixmap );
887  p.setRenderHint( QPainter::Antialiasing );
888  QRect rect( 0, 0, currentIconSize.width(), currentIconSize.height() );
889 
890  switch ( mMode )
891  {
892  case ModeTextRenderer:
893  {
894  QgsRenderContext context;
895  QgsMapToPixel newCoordXForm;
896  newCoordXForm.setParameters( 1, 0, 0, 0, 0, 0 );
897  context.setMapToPixel( newCoordXForm );
898 
899  context.setScaleFactor( QgsApplication::desktop()->logicalDpiX() / 25.4 );
900  context.setUseAdvancedEffects( true );
901  context.setFlag( QgsRenderContext::Antialiasing, true );
902  context.setPainter( &p );
903 
904  // slightly inset text to account for buffer/background
905  double xtrans = 0;
906  if ( tempFormat.buffer().enabled() )
907  xtrans = context.convertToPainterUnits( tempFormat.buffer().size(), tempFormat.buffer().sizeUnit(), tempFormat.buffer().sizeMapUnitScale() );
908  if ( tempFormat.background().enabled() && tempFormat.background().sizeType() != QgsTextBackgroundSettings::SizeFixed )
909  xtrans = std::max( xtrans, context.convertToPainterUnits( tempFormat.background().size().width(), tempFormat.background().sizeUnit(), tempFormat.background().sizeMapUnitScale() ) );
910 
911  double ytrans = 0.0;
912  if ( tempFormat.buffer().enabled() )
913  ytrans = std::max( ytrans, context.convertToPainterUnits( tempFormat.buffer().size(), tempFormat.buffer().sizeUnit(), tempFormat.buffer().sizeMapUnitScale() ) );
914  if ( tempFormat.background().enabled() )
915  ytrans = std::max( ytrans, context.convertToPainterUnits( tempFormat.background().size().height(), tempFormat.background().sizeUnit(), tempFormat.background().sizeMapUnitScale() ) );
916 
917  QRectF textRect = rect;
918  textRect.setLeft( xtrans );
919  textRect.setWidth( textRect.width() - xtrans );
920  textRect.setTop( ytrans );
921  if ( textRect.height() > 300 )
922  textRect.setHeight( 300 );
923  if ( textRect.width() > 2000 )
924  textRect.setWidth( 2000 );
925 
926  QgsTextRenderer::drawText( textRect, 0, QgsTextRenderer::AlignLeft, QStringList() << text(),
927  context, tempFormat );
928  break;
929  }
930  case ModeQFont:
931  {
932  p.setBrush( Qt::NoBrush );
933  p.setPen( QColor( 0, 0, 0 ) );
934  p.setFont( tempFont );
935  QRectF textRect = rect;
936  textRect.setLeft( 2 );
937  p.drawText( textRect, Qt::AlignVCenter, text() );
938  break;
939  }
940 
941  }
942  p.end();
943  setIconSize( currentIconSize );
944  setIcon( pixmap );
945 }
946 
948 {
949  //copy color
950  QApplication::clipboard()->setMimeData( QgsSymbolLayerUtils::colorToMimeData( mFormat.color() ) );
951 }
952 
954 {
955  QColor clipColor;
956  bool hasAlpha = false;
957  if ( colorFromMimeData( QApplication::clipboard()->mimeData(), clipColor, hasAlpha ) )
958  {
959  //paste color
960  setColor( clipColor );
962  }
963 }
964 
965 void QgsFontButton::setDialogTitle( const QString &title )
966 {
967  mDialogTitle = title;
968 }
969 
971 {
972  return mDialogTitle;
973 }
static const double UI_SCALE_FACTOR
UI scaling factor.
Definition: qgis.h:416
static QgsColorSchemeRegistry * colorSchemeRegistry()
Returns the application's color scheme registry, used for managing color schemes.
A color ramp widget.
@ Horizontal
Horizontal ramp.
QList< QgsColorScheme * > schemes() const
Returns all color schemes in the registry.
@ ShowInColorButtonMenu
Show scheme in color button drop-down menu.
A color swatch grid which can be embedded into a menu.
void setBaseColor(const QColor &baseColor)
Sets the base color for the color grid.
void colorChanged(const QColor &color)
Emitted when a color has been selected from the widget.
A color wheel widget.
void setColor(const QColor &color, bool emitSignals=false) override
An action containing a color widget, which can be embedded into a menu.
void setDismissOnColorSelection(bool dismiss)
Sets whether the parent menu should be dismissed and closed when a color is selected from the action'...
void colorChanged(const QColor &color)
Emitted when a color has been selected from the widget.
virtual void setColor(const QColor &color, bool emitSignals=false)
Sets the color for the widget.
@ Alpha
Alpha component (opacity) of color.
The QgsSpinBox is a spin box with a clear button that will set the value to the defined clear value.
void setShowClearButton(bool showClearButton)
Sets whether the widget will show a clear button.
Abstract interface for generating an expression context.
virtual QgsExpressionContext createExpressionContext() const =0
This method needs to be reimplemented in all classes which implement this interface and return an exp...
static QList< QgsExpressionContextScope * > globalProjectLayerScopes(const QgsMapLayer *layer)
Creates a list of three scopes: global, layer's project and layer.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
void appendScopes(const QList< QgsExpressionContextScope * > &scopes)
Appends a list of scopes to the end of the context.
void copyColor()
Copies the current text color to the clipboard.
QgsMapCanvas * mapCanvas() const
Returns the map canvas associated with the widget.
void pasteColor()
Pastes a color from the clipboard to the text format.
QSize sizeHint() const override
void setToNullFormat()
Sets the text format to a null (invalid) QgsTextFormat.
void setMapCanvas(QgsMapCanvas *canvas)
Sets a map canvas to associate with the widget.
void setMessageBar(QgsMessageBar *bar)
Sets the message bar associated with the widget.
QgsMessageBar * messageBar() const
Returns the message bar associated with the widget.
Mode
Available button modes.
Definition: qgsfontbutton.h:60
@ ModeQFont
Configure font settings for use with QFont objects.
Definition: qgsfontbutton.h:62
@ ModeTextRenderer
Configure font settings for use with QgsTextRenderer.
Definition: qgsfontbutton.h:61
QString dialogTitle
Definition: qgsfontbutton.h:52
void setCurrentFont(const QFont &font)
Sets the current text font to show in the widget.
void mousePressEvent(QMouseEvent *e) override
QgsVectorLayer * layer() const
Returns the layer associated with the widget.
void setLayer(QgsVectorLayer *layer)
Sets a layer to associate with the widget.
QSize minimumSizeHint() const override
void mouseMoveEvent(QMouseEvent *e) override
QgsFontButton(QWidget *parent=nullptr, const QString &dialogTitle=QString())
Construct a new font button.
void changeEvent(QEvent *e) override
void changed()
Emitted when the widget's text format settings are changed.
void resizeEvent(QResizeEvent *event) override
void registerExpressionContextGenerator(QgsExpressionContextGenerator *generator)
Register an expression context generator class that will be used to retrieve an expression context fo...
void dragEnterEvent(QDragEnterEvent *e) override
void dragLeaveEvent(QDragLeaveEvent *e) override
void setColor(const QColor &color)
Sets the current color for the text.
void pasteFormat()
Pastes a format from the clipboard.
void showEvent(QShowEvent *e) override
void setDialogTitle(const QString &title)
Sets the title for the text settings dialog window.
void wheelEvent(QWheelEvent *event) override
bool event(QEvent *e) override
void dropEvent(QDropEvent *e) override
void setTextFormat(const QgsTextFormat &format)
Sets the current text format to show in the widget.
void copyFormat()
Copies the current text format to the clipboard.
void setMode(Mode mode)
Sets the current button mode.
static QMimeData * toMimeData(const QFont &font)
Returns new mime data representing the specified font settings.
static void addRecentFontFamily(const QString &family)
Adds a font family to the list of recently used font families.
static QFont fromMimeData(const QMimeData *data, bool *ok=nullptr)
Attempts to parse the provided mime data as a QFont.
static QStringList recentFontFamilies()
Returns a list of recently used font families.
Map canvas is a class for displaying all GIS data types on a canvas.
Definition: qgsmapcanvas.h:86
Perform transforms between map coordinates and device coordinates.
Definition: qgsmaptopixel.h:39
void setParameters(double mapUnitsPerPixel, double centerX, double centerY, int widthPixels, int heightPixels, double rotation)
Set parameters for use in transforming coordinates.
Custom widget for displaying subheaders within a QMenu in a standard style.
Definition: qgsmenuheader.h:33
A bar for displaying non-blocking messages to the user.
Definition: qgsmessagebar.h:61
Base class for any widget that can be shown as a inline panel.
void openPanel(QgsPanelWidget *panel)
Open a panel or dialog depending on dock mode setting If dock mode is true this method will emit the ...
void widgetChanged()
Emitted when the widget state changes.
static QgsPanelWidget * findParentPanel(QWidget *widget)
Traces through the parents of a widget to find if it is contained within a QgsPanelWidget widget.
bool dockMode()
Returns the dock mode state.
static void addRecentColor(const QColor &color)
Adds a color to the list of recent colors.
Contains information about the context of a rendering operation.
void setScaleFactor(double factor)
Sets the scaling factor for the render to convert painter units to physical sizes.
void setUseAdvancedEffects(bool enabled)
Used to enable or disable advanced effects such as blend modes.
void setFlag(Flag flag, bool on=true)
Enable or disable a particular flag (other flags are not affected)
void setMapToPixel(const QgsMapToPixel &mtp)
Sets the context's map to pixel transform, which transforms between map coordinates and device coordi...
@ Antialiasing
Use antialiasing while drawing.
void setPainter(QPainter *p)
Sets the destination QPainter for the render operation.
double convertToPainterUnits(double size, QgsUnitTypes::RenderUnit unit, const QgsMapUnitScale &scale=QgsMapUnitScale()) const
Converts a size from the specified units to painter units (pixels).
static QColor colorFromMimeData(const QMimeData *data, bool &hasAlpha)
Attempts to parse mime data as a color.
static QMimeData * colorToMimeData(const QColor &color)
Creates mime data from a color.
Contains settings which reflect the context in which a symbol (or renderer) widget is shown,...
void setMapCanvas(QgsMapCanvas *canvas)
Sets the map canvas associated with the widget.
void setMessageBar(QgsMessageBar *bar)
Sets the message bar associated with the widget.
void setExpressionContext(QgsExpressionContext *context)
Sets the optional expression context used for the widget.
QSizeF size() const
Returns the size of the background shape.
bool enabled() const
Returns whether the background is enabled.
SizeType sizeType() const
Returns the method used to determine the size of the background shape (e.g., fixed size or buffer aro...
QgsMapUnitScale sizeMapUnitScale() const
Returns the map unit scale object for the shape size.
QgsUnitTypes::RenderUnit sizeUnit() const
Returns the units used for the shape's size.
double size() const
Returns the size of the buffer.
QgsMapUnitScale sizeMapUnitScale() const
Returns the map unit scale object for the buffer size.
bool enabled() const
Returns whether the buffer is enabled.
QgsUnitTypes::RenderUnit sizeUnit() const
Returns the units for the buffer size.
A simple dialog for customizing text formatting settings.
A panel widget for customizing text formatting settings.
Container for all settings relating to text rendering.
Definition: qgstextformat.h:41
void setColor(const QColor &color)
Sets the color that text will be rendered in.
void setSize(double size)
Sets the size for rendered text.
void setFont(const QFont &font)
Sets the font used for rendering text.
static QgsTextFormat fromMimeData(const QMimeData *data, bool *ok=nullptr)
Attempts to parse the provided mime data as a QgsTextFormat.
QgsUnitTypes::RenderUnit sizeUnit() const
Returns the units for the size of rendered text.
void setOpacity(double opacity)
Sets the text's opacity.
bool isValid() const
Returns true if the format is valid.
QgsTextBackgroundSettings & background()
Returns a reference to the text background settings.
void setSizeUnit(QgsUnitTypes::RenderUnit unit)
Sets the units for the size of rendered text.
double opacity() const
Returns the text's opacity.
double size() const
Returns the size for rendered text.
QMimeData * toMimeData() const
Returns new mime data representing the text format settings.
QColor color() const
Returns the color that text will be rendered in.
QFont font() const
Returns the font used for rendering text.
QgsTextBufferSettings & buffer()
Returns a reference to the text buffer settings.
@ AlignLeft
Left align.
@ AlignCenter
Center align.
static void drawText(const QRectF &rect, double rotation, HAlignment alignment, const QStringList &textLines, QgsRenderContext &context, const QgsTextFormat &format, bool drawAsOutlines=true, VAlignment vAlignment=AlignTop)
Draws text within a rectangle using the specified settings.
static Q_INVOKABLE QString toString(QgsUnitTypes::DistanceUnit unit)
Returns a translated string representing a distance unit.
@ RenderPixels
Pixels.
Definition: qgsunittypes.h:171
Represents a vector layer which manages a vector based data sets.
QSize iconSize(bool dockableToolbar)
Returns the user-preferred size of a window's toolbar icons.
int scaleIconSize(int standardSize)
Scales an icon size to compensate for display pixel density, making the icon size hi-dpi friendly,...
QFont getFont(bool &ok, const QFont &initial, const QString &title)
Show font selection dialog.