QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgslayoutreportsectionlabel.h
Go to the documentation of this file.
1/***************************************************************************
2 qgslayoutreportsectionlabel.h
3 -----------------------
4 begin : January 2018
5 copyright : (C) 2018 by Nyall Dawson
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17#ifndef QGSLAYOUTREPORTSECTIONLABEL_H
18#define QGSLAYOUTREPORTSECTIONLABEL_H
19
20// We don't want to expose this in the public API
21#define SIP_NO_FILE
22
23#include "qgis_gui.h"
24#include "qgslayout.h"
25#include "qgslayoutview.h"
26
27#include <QGraphicsRectItem>
28
30
38class GUI_EXPORT QgsLayoutReportSectionLabel : public QGraphicsRectItem
39{
40 public:
44 QgsLayoutReportSectionLabel( QgsLayout *layout, QgsLayoutView *view );
45
46 void paint( QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = nullptr ) override;
47
49 void setLabel( const QString &label );
50
51 private:
52 QPointer<QgsLayout> mLayout;
53 QPointer<QgsLayoutView> mView;
54 QString mLabel;
55};
56
58
59#endif // QGSLAYOUTREPORTSECTIONLABEL_H
A graphical widget to display and interact with QgsLayouts.
Base class for layouts, which can contain items such as maps, labels, scalebars, etc.
Definition qgslayout.h:50