27#ifndef QWT_PAINTER_COMMAND_H
28#define QWT_PAINTER_COMMAND_H
30#include "qwt_global.h"
32#include <qpaintengine.h>
36#include <qpainterpath.h>
85 Qt::ImageConversionFlags flags;
91 QPaintEngine::DirtyFlags flags;
96 QBrush backgroundBrush;
97 Qt::BGMode backgroundMode;
101 Qt::ClipOperation clipOperation;
103 QPainterPath clipPath;
106 QPainter::RenderHints renderHints;
107 QPainter::CompositionMode compositionMode;
117 const QPixmap&,
const QRectF& subRect );
120 const QImage&,
const QRectF& subRect,
121 Qt::ImageConversionFlags );
131 QPainterPath* path();
132 const QPainterPath* path()
const;
151 QPainterPath* m_path;
QwtPainterCommand represents the attributes of a paint operation how it is used between QPainter and ...
Definition qwt_painter_command.h:50
QPainterPath * path()
Definition qwt_painter_command.cpp:233
Type
Type of the paint command.
Definition qwt_painter_command.h:54
@ Pixmap
Draw a QPixmap.
Definition qwt_painter_command.h:62
@ Path
Draw a QPainterPath.
Definition qwt_painter_command.h:59
@ Image
Draw a QImage.
Definition qwt_painter_command.h:65
Type type() const
Definition qwt_painter_command.h:159
PixmapData * pixmapData()
Definition qwt_painter_command.cpp:239
ImageData * imageData()
Definition qwt_painter_command.cpp:245
StateData * stateData()
Definition qwt_painter_command.cpp:251
Attributes how to paint a QImage.
Definition qwt_painter_command.h:81
Attributes how to paint a QPixmap.
Definition qwt_painter_command.h:73
Attributes of a state change.
Definition qwt_painter_command.h:90