25#include <QGraphicsView>
32 : QGraphicsRectItem( nullptr )
36 setCacheMode( QGraphicsItem::DeviceCoordinateCache );
39void QgsLayoutReportSectionLabel::paint( QPainter *painter,
const QStyleOptionGraphicsItem *option, QWidget *widget )
44 if ( !mLayout || !mLayout->renderContext().isPreviewRender() )
50 if ( mLabel.isEmpty() )
55 const QFontMetrics fm( f );
56 const QSize s = fm.size( 0, mLabel );
57 const double margin = fm.height() / 5.0;
59 const double scaleValue = scale() / painter->transform().m11();
61 painter->setRenderHint( QPainter::Antialiasing,
true );
62 painter->scale( scaleValue, scaleValue );
63 const QRectF r = rect();
64 const QRectF scaledRect( r.left() / scaleValue, r.top() / scaleValue, r.width() / scaleValue, r.height() / scaleValue );
66 if ( scaledRect.width() < s.width() + 2 * margin || scaledRect.height() < s.height() + 2 * margin )
72 const QRectF textRect = QRectF( scaledRect.left() + margin, scaledRect.top() + margin, scaledRect.width() - 2 * margin, scaledRect.height() - 2 * margin );
73 const QRectF boxRect = QRectF( scaledRect.left(), scaledRect.bottom() - ( s.height() + 2 * margin ), s.width() + 2 * margin, s.height() + 2 * margin );
76 p.moveTo( boxRect.bottomRight() );
77 p.lineTo( boxRect.right(), boxRect.top() + margin );
78 p.arcTo( boxRect.right() - 2 * margin, boxRect.top(), 2 * margin, 2 * margin, 0, 90 );
79 p.lineTo( boxRect.left() + margin, boxRect.top() );
80 p.arcTo( boxRect.left(), boxRect.top(), 2 * margin, 2 * margin, 90, 90 );
81 p.lineTo( boxRect.bottomLeft() );
82 p.lineTo( boxRect.bottomRight() );
84 painter->setPen( QColor( 150, 150, 150, 150 ) );
85 QLinearGradient g( 0, boxRect.top(), 0, boxRect.bottom() );
86 g.setColorAt( 0, QColor( 200, 200, 200, 150 ) );
87 g.setColorAt( 1, QColor( 150, 150, 150, 150 ) );
89 painter->setBrush( QBrush( g ) );
90 painter->drawPath( p );
92 painter->setPen( QPen( QColor( 0, 0, 0, 100 ) ) );
93 painter->setFont( f );
94 painter->drawText( textRect, Qt::AlignBottom, mLabel );
97void QgsLayoutReportSectionLabel::setLabel(
const QString &label )
A graphical widget to display and interact with QgsLayouts.
Base class for layouts, which can contain items such as maps, labels, scalebars, etc.
Scoped object for saving and restoring a QPainter object's state.