17#include "moc_qgslegendpatchshapebutton.cpp"
29 : QToolButton( parent )
30 , mShape(
QgsStyle::defaultStyle()->defaultPatch(
Qgis::SymbolType::Fill, QSizeF( 10, 5 ) ) )
31 , mDialogTitle( dialogTitle.isEmpty() ? tr(
"Legend Patch Shape" ) : dialogTitle )
35 connect(
this, &QAbstractButton::clicked,
this, &QgsLegendPatchShapeButton::showSettingsDialog );
38 mMenu =
new QMenu(
this );
39 connect( mMenu, &QMenu::aboutToShow,
this, &QgsLegendPatchShapeButton::prepareMenu );
41 setPopupMode( QToolButton::MenuButtonPopup );
44 QSize size = QToolButton::minimumSizeHint();
46 mSizeHint = QSize( size.width(), std::max( size.height(), fontHeight ) );
63 if ( mPreviewSymbol->type() != type )
95 mPreviewSymbol.reset( symbol );
99void QgsLegendPatchShapeButton::showSettingsDialog()
151 mIsDefault = mShape.
isNull();
179 if ( e->button() == Qt::RightButton )
181 QToolButton::showMenu();
184 QToolButton::mousePressEvent( e );
187void QgsLegendPatchShapeButton::prepareMenu()
191 QAction *configureAction =
new QAction( tr(
"Configure Patch…" ),
this );
192 mMenu->addAction( configureAction );
193 connect( configureAction, &QAction::triggered,
this, &QgsLegendPatchShapeButton::showSettingsDialog );
195 QAction *defaultAction =
new QAction( tr(
"Reset to Default" ),
this );
196 mMenu->addAction( defaultAction );
197 connect( defaultAction, &QAction::triggered,
this, [ = ] {
setToDefault(); emit
changed(); } );
199 mMenu->addSeparator();
204 for (
const QString &name : std::as_const( patchNames ) )
212 QAction *action =
new QAction( name,
this );
213 action->setIcon( icon );
214 connect( action, &QAction::triggered,
this, [ = ] { loadPatchFromStyle( name ); } );
215 mMenu->addAction( action );
221void QgsLegendPatchShapeButton::loadPatchFromStyle(
const QString &name )
232 if ( e->type() == QEvent::EnabledChange )
236 QToolButton::changeEvent( e );
242 QToolButton::showEvent( e );
247 QToolButton::resizeEvent( event );
253void QgsLegendPatchShapeButton::updatePreview()
255 QSize currentIconSize;
259 if ( !mIconSize.isValid() )
262 QStyleOptionToolButton opt;
263 initStyleOption( &opt );
264 QRect buttonSize = QApplication::style()->subControlRect( QStyle::CC_ToolButton, &opt, QStyle::SC_ToolButton,
268 mIconSize = QSize( buttonSize.width() - 10, height() - 6 );
270 mIconSize = QSize( buttonSize.width() - 10, height() - 12 );
273 currentIconSize = mIconSize;
279 currentIconSize = QSize( width() - 10, height() - 6 );
281 currentIconSize = QSize( width() - 10, height() - 12 );
285 if ( !currentIconSize.isValid() || currentIconSize.width() <= 0 || currentIconSize.height() <= 0 )
292 setIconSize( currentIconSize );
298 int width =
static_cast< int >(
Qgis::UI_SCALE_FACTOR * fontMetrics().horizontalAdvance(
'X' ) * 23 );
299 int height =
static_cast< int >( width / 1.61803398875 );
303 QBuffer buffer( &data );
304 pm.save( &buffer,
"PNG", 100 );
305 setToolTip( QStringLiteral(
"<img src='data:image/png;base64, %3' width=\"%4\">" ).arg( QString( data.toBase64() ) ).arg( width ) );
310 mDialogTitle = title;
The Qgis class provides global constants for use throughout the application.
static const double UI_SCALE_FACTOR
UI scaling factor.
static QgsFillSymbol * createSimple(const QVariantMap &properties)
Create a fill symbol with one symbol layer: SimpleFill with specified properties.
Represents a patch shape for use in map legends.
bool isNull() const
Returns true if the patch shape is a null QgsLegendPatchShape, which indicates that the default legen...
Qgis::SymbolType symbolType() const
Returns the symbol type associated with this patch.
static QgsLineSymbol * createSimple(const QVariantMap &properties)
Create a line symbol with one symbol layer: SimpleLine with specified properties.
static QgsMarkerSymbol * createSimple(const QVariantMap &properties)
Create a marker symbol with one symbol layer: SimpleMarker with specified properties.
A bar for displaying non-blocking messages to the user.
Stores properties relating to a screen.
QgsLegendPatchShape defaultPatch(Qgis::SymbolType type, QSizeF size) const
Returns the default legend patch shape for the given symbol type.
@ LegendPatchShapeEntity
Legend patch shape.
static QgsStyle * defaultStyle(bool initialize=true)
Returns the default application-wide style.
QStringList symbolsOfFavorite(StyleEntity type) const
Returns the symbol names which are flagged as favorite.
QgsLegendPatchShape legendPatchShape(const QString &name) const
Returns the legend patch shape with the specified name.
static QPixmap symbolPreviewPixmap(const QgsSymbol *symbol, QSize size, int padding=0, QgsRenderContext *customContext=nullptr, bool selected=false, const QgsExpressionContext *expressionContext=nullptr, const QgsLegendPatchShape *shape=nullptr, const QgsScreenProperties &screen=QgsScreenProperties())
Returns a pixmap preview for a color ramp.
static QIcon symbolPreviewIcon(const QgsSymbol *symbol, QSize size, int padding=0, QgsLegendPatchShape *shape=nullptr, const QgsScreenProperties &screen=QgsScreenProperties())
Returns an icon preview for a color ramp.
Abstract base class for all rendered symbols.
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,...