/usr/include/qt4/Qt/qpaintengine.h is in libqt4-dev 4:4.8.1-0ubuntu4.9.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 | /****************************************************************************
**
** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the QtGui module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this
** file. Please review the following information to ensure the GNU Lesser
** General Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU General
** Public License version 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of this
** file. Please review the following information to ensure the GNU General
** Public License version 3.0 requirements will be met:
** http://www.gnu.org/copyleft/gpl.html.
**
** Other Usage
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef QPAINTENGINE_H
#define QPAINTENGINE_H
#include <QtCore/qnamespace.h>
#include <QtCore/qobjectdefs.h>
#include <QtCore/qscopedpointer.h>
#include <QtGui/qpainter.h>
QT_BEGIN_HEADER
QT_BEGIN_NAMESPACE
QT_MODULE(Gui)
class QFontEngine;
class QLineF;
class QPaintDevice;
class QPaintEnginePrivate;
class QPainterPath;
class QPointF;
class QPolygonF;
class QRectF;
struct QGlyphLayout;
class QTextItemInt;
class QPaintEngineState;
class Q_GUI_EXPORT QTextItem {
public:
enum RenderFlag {
RightToLeft = 0x1,
Overline = 0x10,
Underline = 0x20,
StrikeOut = 0x40,
Dummy = 0xffffffff
};
Q_DECLARE_FLAGS(RenderFlags, RenderFlag)
qreal descent() const;
qreal ascent() const;
qreal width() const;
RenderFlags renderFlags() const;
QString text() const;
QFont font() const;
};
Q_DECLARE_TYPEINFO(QTextItem, Q_PRIMITIVE_TYPE);
class Q_GUI_EXPORT QPaintEngine
{
Q_DECLARE_PRIVATE(QPaintEngine)
public:
enum PaintEngineFeature {
PrimitiveTransform = 0x00000001, // Can transform primitives brushes
PatternTransform = 0x00000002, // Can transform pattern brushes
PixmapTransform = 0x00000004, // Can transform pixmaps
PatternBrush = 0x00000008, // Can fill with pixmaps and standard patterns
LinearGradientFill = 0x00000010, // Can fill gradient areas
RadialGradientFill = 0x00000020, // Can render radial gradients
ConicalGradientFill = 0x00000040, // Can render conical gradients
AlphaBlend = 0x00000080, // Can do source over alpha blend
PorterDuff = 0x00000100, // Can do general porter duff compositions
PainterPaths = 0x00000200, // Can fill, outline and clip paths
Antialiasing = 0x00000400, // Can antialias lines
BrushStroke = 0x00000800, // Can render brush based pens
ConstantOpacity = 0x00001000, // Can render at constant opacity
MaskedBrush = 0x00002000, // Can fill with textures that has an alpha channel or mask
PerspectiveTransform = 0x00004000, // Can do perspective transformations
BlendModes = 0x00008000, // Can do extended Porter&Duff composition
ObjectBoundingModeGradients = 0x00010000, // Can do object bounding mode gradients
RasterOpModes = 0x00020000, // Can do logical raster operations
PaintOutsidePaintEvent = 0x20000000, // Engine is capable of painting outside paint events
/* 0x10000000, // Used for emulating
QGradient::StretchToDevice,
defined in qpainter.cpp
0x40000000, // Used internally for emulating opaque backgrounds
*/
AllFeatures = 0xffffffff // For convenience
};
Q_DECLARE_FLAGS(PaintEngineFeatures, PaintEngineFeature)
enum DirtyFlag {
DirtyPen = 0x0001,
DirtyBrush = 0x0002,
DirtyBrushOrigin = 0x0004,
DirtyFont = 0x0008,
DirtyBackground = 0x0010,
DirtyBackgroundMode = 0x0020,
DirtyTransform = 0x0040,
DirtyClipRegion = 0x0080,
DirtyClipPath = 0x0100,
DirtyHints = 0x0200,
DirtyCompositionMode = 0x0400,
DirtyClipEnabled = 0x0800,
DirtyOpacity = 0x1000,
AllDirty = 0xffff
};
Q_DECLARE_FLAGS(DirtyFlags, DirtyFlag)
enum PolygonDrawMode {
OddEvenMode,
WindingMode,
ConvexMode,
PolylineMode
};
explicit QPaintEngine(PaintEngineFeatures features=0);
virtual ~QPaintEngine();
bool isActive() const { return active; }
void setActive(bool newState) { active = newState; }
virtual bool begin(QPaintDevice *pdev) = 0;
virtual bool end() = 0;
virtual void updateState(const QPaintEngineState &state) = 0;
virtual void drawRects(const QRect *rects, int rectCount);
virtual void drawRects(const QRectF *rects, int rectCount);
virtual void drawLines(const QLine *lines, int lineCount);
virtual void drawLines(const QLineF *lines, int lineCount);
virtual void drawEllipse(const QRectF &r);
virtual void drawEllipse(const QRect &r);
virtual void drawPath(const QPainterPath &path);
virtual void drawPoints(const QPointF *points, int pointCount);
virtual void drawPoints(const QPoint *points, int pointCount);
virtual void drawPolygon(const QPointF *points, int pointCount, PolygonDrawMode mode);
virtual void drawPolygon(const QPoint *points, int pointCount, PolygonDrawMode mode);
virtual void drawPixmap(const QRectF &r, const QPixmap &pm, const QRectF &sr) = 0;
virtual void drawTextItem(const QPointF &p, const QTextItem &textItem);
virtual void drawTiledPixmap(const QRectF &r, const QPixmap &pixmap, const QPointF &s);
virtual void drawImage(const QRectF &r, const QImage &pm, const QRectF &sr,
Qt::ImageConversionFlags flags = Qt::AutoColor);
void setPaintDevice(QPaintDevice *device);
QPaintDevice *paintDevice() const;
void setSystemClip(const QRegion &baseClip);
QRegion systemClip() const;
void setSystemRect(const QRect &rect);
QRect systemRect() const;
#ifdef Q_WS_WIN
virtual HDC getDC() const;
virtual void releaseDC(HDC hdc) const;
#endif
virtual QPoint coordinateOffset() const;
enum Type {
X11,
Windows,
QuickDraw, CoreGraphics, MacPrinter,
QWindowSystem,
PostScript,
OpenGL,
Picture,
SVG,
Raster,
Direct3D,
Pdf,
OpenVG,
OpenGL2,
PaintBuffer,
Blitter,
User = 50, // first user type id
MaxUser = 100 // last user type id
};
virtual Type type() const = 0;
inline void fix_neg_rect(int *x, int *y, int *w, int *h);
inline bool testDirty(DirtyFlags df);
inline void setDirty(DirtyFlags df);
inline void clearDirty(DirtyFlags df);
bool hasFeature(PaintEngineFeatures feature) const { return (gccaps & feature) != 0; }
QPainter *painter() const;
void syncState();
inline bool isExtended() const { return extended; }
protected:
QPaintEngine(QPaintEnginePrivate &data, PaintEngineFeatures devcaps=0);
QPaintEngineState *state;
PaintEngineFeatures gccaps;
uint active : 1;
uint selfDestruct : 1;
uint extended : 1;
QScopedPointer<QPaintEnginePrivate> d_ptr;
private:
void setAutoDestruct(bool autoDestr) { selfDestruct = autoDestr; }
bool autoDestruct() const { return selfDestruct; }
Q_DISABLE_COPY(QPaintEngine)
friend class QPainterReplayer;
friend class QFontEngineBox;
friend class QFontEngineMac;
friend class QFontEngineWin;
#ifndef QT_NO_FREETYPE
friend class QFontEngineFT;
#endif
#ifndef QT_NO_QWS_QPF
friend class QFontEngineQPF1;
#endif
#ifndef QT_NO_QWS_QPF2
friend class QFontEngineQPF;
#endif
friend class QPSPrintEngine;
friend class QMacPrintEngine;
friend class QMacPrintEnginePrivate;
#ifdef Q_WS_QWS
friend class QtopiaPrintEngine;
friend class QtopiaPrintEnginePrivate;
friend class QProxyFontEngine;
#endif
#ifdef Q_WS_QPA
friend class QFontEngineQPA;
#endif
friend class QPainter;
friend class QPainterPrivate;
friend class QWidget;
friend class QWidgetPrivate;
friend class QWin32PaintEngine;
friend class QWin32PaintEnginePrivate;
friend class QMacCGContext;
friend class QPreviewPaintEngine;
friend class QX11GLPixmapData;
};
class Q_GUI_EXPORT QPaintEngineState
{
public:
QPaintEngine::DirtyFlags state() const { return dirtyFlags; }
QPen pen() const;
QBrush brush() const;
QPointF brushOrigin() const;
QBrush backgroundBrush() const;
Qt::BGMode backgroundMode() const;
QFont font() const;
QMatrix matrix() const;
QTransform transform() const;
Qt::ClipOperation clipOperation() const;
QRegion clipRegion() const;
QPainterPath clipPath() const;
bool isClipEnabled() const;
QPainter::RenderHints renderHints() const;
QPainter::CompositionMode compositionMode() const;
qreal opacity() const;
QPainter *painter() const;
bool brushNeedsResolving() const;
bool penNeedsResolving() const;
protected:
friend class QPaintEngine;
friend class QRasterPaintEngine;
friend class QWidget;
friend class QPainter;
friend class QPainterPrivate;
friend class QMacPrintEnginePrivate;
QPaintEngine::DirtyFlags dirtyFlags;
};
//
// inline functions
//
inline void QPaintEngine::fix_neg_rect(int *x, int *y, int *w, int *h)
{
if (*w < 0) {
*w = -*w;
*x -= *w - 1;
}
if (*h < 0) {
*h = -*h;
*y -= *h - 1;
}
}
inline bool QPaintEngine::testDirty(DirtyFlags df) {
Q_ASSERT(state);
return ((state->dirtyFlags & df) != 0);
}
inline void QPaintEngine::setDirty(DirtyFlags df) {
Q_ASSERT(state);
state->dirtyFlags |= df;
}
inline void QPaintEngine::clearDirty(DirtyFlags df)
{
Q_ASSERT(state);
state->dirtyFlags &= ~static_cast<uint>(df);
}
Q_DECLARE_OPERATORS_FOR_FLAGS(QTextItem::RenderFlags)
Q_DECLARE_OPERATORS_FOR_FLAGS(QPaintEngine::PaintEngineFeatures)
Q_DECLARE_OPERATORS_FOR_FLAGS(QPaintEngine::DirtyFlags)
QT_END_NAMESPACE
QT_END_HEADER
#endif // QPAINTENGINE_H
|