QGIS API Documentation
3.26.3-Buenos Aires (65e4edfdad)
src
core
qgsrendereditemdetails.h
Go to the documentation of this file.
1
/***************************************************************************
2
qgsrendereditemdetails.h
3
----------------
4
copyright : (C) 2021 by Nyall Dawson
5
email : nyall dot dawson at gmail dot com
6
***************************************************************************/
7
8
/***************************************************************************
9
* *
10
* This program is free software; you can redistribute it and/or modify *
11
* it under the terms of the GNU General Public License as published by *
12
* the Free Software Foundation; either version 2 of the License, or *
13
* (at your option) any later version. *
14
* *
15
***************************************************************************/
16
17
#ifndef QGSRENDEREDITEMDETAILS_H
18
#define QGSRENDEREDITEMDETAILS_H
19
20
#include "qgis_core.h"
21
#include "
qgis_sip.h
"
22
#include "
qgsrectangle.h
"
23
24
#ifdef SIP_RUN
25
// this is needed for the "convert to subclass" code below to compile
26
% ModuleHeaderCode
27
#include "
qgsrenderedannotationitemdetails.h
"
28
% End
29
#endif
30
36
class
CORE_EXPORT
QgsRenderedItemDetails
37
{
38
public
:
39
40
#ifdef SIP_RUN
41
SIP_CONVERT_TO_SUBCLASS_CODE
42
if
(
dynamic_cast<
QgsRenderedAnnotationItemDetails
*
>
( sipCpp ) )
43
sipType = sipType_QgsRenderedAnnotationItemDetails;
44
else
45
sipType = 0;
46
SIP_END
47
#endif
48
52
QgsRenderedItemDetails
(
const
QString &layerId );
53
54
virtual
~
QgsRenderedItemDetails
();
55
59
QString layerId()
const
{
return
mLayerId; }
60
66
QgsRectangle
boundingBox()
const
{
return
mBounds; }
67
73
void
setBoundingBox(
const
QgsRectangle
&bounds ) { mBounds = bounds; }
74
75
private
:
76
77
QString mLayerId;
78
QgsRectangle
mBounds;
79
};
80
81
#endif // QGSRENDEREDITEMDETAILS_H
qgsrenderedannotationitemdetails.h
qgsrectangle.h
QgsRectangle
A rectangle specified with double values.
Definition:
qgsrectangle.h:41
SIP_CONVERT_TO_SUBCLASS_CODE
#define SIP_CONVERT_TO_SUBCLASS_CODE(code)
Definition:
qgis_sip.h:186
QgsRenderedItemDetails
Base class for detailed information about a rendered item.
Definition:
qgsrendereditemdetails.h:36
qgis_sip.h
QgsRenderedAnnotationItemDetails
Contains information about a rendered annotation item.
Definition:
qgsrenderedannotationitemdetails.h:29
SIP_END
#define SIP_END
Definition:
qgis_sip.h:203
Generated on Sun Sep 11 2022 00:03:17 for QGIS API Documentation by
1.8.17