QGIS API Documentation  3.12.1-BucureČ™ti (121cc00ff0)
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
6  email : [email protected]
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 <QGraphicsRectItem>
24 #include "qgis_gui.h"
25 #include "qgslayoutview.h"
26 #include "qgslayout.h"
27 
29 
38 class GUI_EXPORT QgsLayoutReportSectionLabel: public QGraphicsRectItem
39 {
40 
41  public:
42 
46  QgsLayoutReportSectionLabel( QgsLayout *layout, QgsLayoutView *view );
47 
48  void paint( QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = nullptr ) override;
49 
51  void setLabel( const QString &label );
52 
53  private:
54 
55  QPointer< QgsLayout > mLayout;
56  QPointer< QgsLayoutView > mView;
57  QString mLabel;
58 
59 };
60 
62 
63 #endif // QGSLAYOUTREPORTSECTIONLABEL_H
A graphical widget to display and interact with QgsLayouts.
Definition: qgslayoutview.h:49
Base class for layouts, which can contain items such as maps, labels, scalebars, etc.
Definition: qgslayout.h:49