28#include "moc_qgslegendpatchshapebutton.cpp"
31 : QToolButton( parent )
32 , mShape(
QgsStyle::defaultStyle()->defaultPatch(
Qgis::SymbolType::Fill, QSizeF( 10, 5 ) ) )
37 connect(
this, &QAbstractButton::clicked,
this, &QgsLegendPatchShapeButton::showSettingsDialog );
40 mMenu =
new QMenu(
this );
41 connect( mMenu, &QMenu::aboutToShow,
this, &QgsLegendPatchShapeButton::prepareMenu );
43 setPopupMode( QToolButton::MenuButtonPopup );
46 QSize size = QToolButton::minimumSizeHint();
48 mSizeHint = QSize( size.width(), std::max( size.height(), fontHeight ) );
65 if ( mPreviewSymbol->type() != type )
97 mPreviewSymbol.reset( symbol );
101void QgsLegendPatchShapeButton::showSettingsDialog()
152 mIsDefault = mShape.isNull();
180 if ( e->button() == Qt::RightButton )
182 QToolButton::showMenu();
185 QToolButton::mousePressEvent( e );
188void QgsLegendPatchShapeButton::prepareMenu()
192 QAction *configureAction =
new QAction( tr(
"Configure Patch…" ),
this );
193 mMenu->addAction( configureAction );
194 connect( configureAction, &QAction::triggered,
this, &QgsLegendPatchShapeButton::showSettingsDialog );
196 QAction *defaultAction =
new QAction( tr(
"Reset to Default" ),
this );
197 mMenu->addAction( defaultAction );
198 connect( defaultAction, &QAction::triggered,
this, [
this] {
setToDefault(); emit
changed(); } );
200 mMenu->addSeparator();
205 for (
const QString &name : std::as_const( patchNames ) )
208 if (
shape.symbolType() == mType )
213 QAction *action =
new QAction( name,
this );
214 action->setIcon( icon );
215 connect( action, &QAction::triggered,
this, [
this, name] { loadPatchFromStyle( name ); } );
216 mMenu->addAction( action );
222void QgsLegendPatchShapeButton::loadPatchFromStyle(
const QString &name )
233 if ( e->type() == QEvent::EnabledChange )
237 QToolButton::changeEvent( e );
243 QToolButton::showEvent( e );
248 QToolButton::resizeEvent( event );
254void QgsLegendPatchShapeButton::updatePreview()
256 QSize currentIconSize;
260 if ( !mIconSize.isValid() )
263 QStyleOptionToolButton opt;
264 initStyleOption( &opt );
265 QRect buttonSize = QApplication::style()->subControlRect( QStyle::CC_ToolButton, &opt, QStyle::SC_ToolButton,
this );
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 );
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;
Provides global constants and enumerations for use throughout the application.
static const double UI_SCALE_FACTOR
UI scaling factor.
static std::unique_ptr< 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.
static std::unique_ptr< QgsLineSymbol > createSimple(const QVariantMap &properties)
Create a line symbol with one symbol layer: SimpleLine with specified properties.
static std::unique_ptr< 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.
A database of saved style entities, including symbols, color ramps, text formats and others.
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,...