mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-27 00:33:48 -05:00
Run clang-tidy modernize-use-override to remove all the redundant virtual keywords from overridden methods, and add some missing overrides. Another benefit is that this has also added the overrides on destructors, which will cause a build failure if a base class is missing a virtual destructor.
66 lines
1.8 KiB
Plaintext
66 lines
1.8 KiB
Plaintext
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/core/layout/qgslayouteffect.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
class QgsLayoutEffect : QGraphicsEffect
|
|
{
|
|
%Docstring
|
|
|
|
A QGraphicsEffect subclass used for rendering layout items
|
|
onto a scene with custom composition modes.
|
|
|
|
.. versionadded:: 3.0
|
|
%End
|
|
|
|
%TypeHeaderCode
|
|
#include "qgslayouteffect.h"
|
|
%End
|
|
public:
|
|
|
|
QgsLayoutEffect();
|
|
%Docstring
|
|
Constructor for QgsLayoutEffect.
|
|
%End
|
|
|
|
void setCompositionMode( QPainter::CompositionMode mode );
|
|
%Docstring
|
|
Sets the composition (blending) ``mode`` used for rendering
|
|
the item.
|
|
|
|
.. seealso:: :py:func:`compositionMode()`
|
|
%End
|
|
|
|
QPainter::CompositionMode compositionMode() const;
|
|
%Docstring
|
|
Returns the composition (blending) mode used for rendering
|
|
the item.
|
|
|
|
:rtype: QPainter.CompositionMode
|
|
|
|
.. seealso:: :py:func:`setCompositionMode()`
|
|
%End
|
|
|
|
protected:
|
|
|
|
virtual void draw( QPainter *painter );
|
|
|
|
|
|
};
|
|
|
|
|
|
/************************************************************************
|
|
* This file has been generated automatically from *
|
|
* *
|
|
* src/core/layout/qgslayouteffect.h *
|
|
* *
|
|
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
|
|
************************************************************************/
|