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 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614
|
// qpainter.sip generated by MetaSIP on Fri Apr 16 11:32:08 2010
//
// This file is part of the QtGui Python extension module.
//
// Copyright (c) 2010 Riverbank Computing Limited <info@riverbankcomputing.com>
//
// This file is part of PyQt.
//
// This file may be used under the terms of the GNU General Public
// License versions 2.0 or 3.0 as published by the Free Software
// Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3
// included in the packaging of this file. Alternatively you may (at
// your option) use any later version of the GNU General Public
// License if such license has been publicly approved by Riverbank
// Computing Limited (or its successors, if any) and the KDE Free Qt
// Foundation. In addition, as a special exception, Riverbank gives you
// certain additional rights. These rights are described in the Riverbank
// GPL Exception version 1.1, which can be found in the file
// GPL_EXCEPTION.txt in this package.
//
// Please review the following information to ensure GNU General
// Public Licensing requirements will be met:
// http://trolltech.com/products/qt/licenses/licensing/opensource/. If
// you are unsure which license is appropriate for your use, please
// review the following information:
// http://trolltech.com/products/qt/licenses/licensing/licensingoverview
// or contact the sales department at sales@riverbankcomputing.com.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
%ModuleCode
#include <qpainter.h>
%End
class QPainter
{
%TypeHeaderCode
#include <qpainter.h>
%End
%TypeCode
// Return an array on the heap of class instances extracted from a set of
// Python arguments.
template<class TYPE>
static TYPE *qtgui_inst_array(const TYPE *first, PyObject *t, sipTypeDef *td)
{
TYPE *arr = new TYPE[1 + PyTuple_GET_SIZE(t)];
arr[0] = *first;
for (SIP_SSIZE_T i = 0; i < PyTuple_GET_SIZE(t); ++i)
{
int iserr = 0, state;
TYPE *itm;
itm = reinterpret_cast<TYPE *>(sipForceConvertToType(PyTuple_GET_ITEM(t, i), td, 0, SIP_NOT_NONE, &state, &iserr));
if (iserr)
{
sipReleaseType(itm, td, state);
PyErr_Format(PyExc_TypeError, "each argument must be an instance of %s", sipTypeAsPyTypeObject(td)->tp_name);
delete[] arr;
return 0;
}
arr[1 + i] = *itm;
sipReleaseType(itm, td, state);
}
return arr;
}
%End
public:
enum RenderHint
{
Antialiasing,
TextAntialiasing,
SmoothPixmapTransform,
%If (Qt_4_3_0 -)
HighQualityAntialiasing,
%End
%If (Qt_4_4_0 -)
NonCosmeticDefaultPen,
%End
};
typedef QFlags<QPainter::RenderHint> RenderHints;
QPainter();
explicit QPainter(QPaintDevice *);
~QPainter();
QPaintDevice *device() const;
bool begin(QPaintDevice *);
bool end();
bool isActive() const;
void initFrom(const QWidget *);
enum CompositionMode
{
CompositionMode_SourceOver,
CompositionMode_DestinationOver,
CompositionMode_Clear,
CompositionMode_Source,
CompositionMode_Destination,
CompositionMode_SourceIn,
CompositionMode_DestinationIn,
CompositionMode_SourceOut,
CompositionMode_DestinationOut,
CompositionMode_SourceAtop,
CompositionMode_DestinationAtop,
CompositionMode_Xor,
%If (Qt_4_3_0 -)
CompositionMode_Plus,
%End
%If (Qt_4_3_0 -)
CompositionMode_Multiply,
%End
%If (Qt_4_3_0 -)
CompositionMode_Screen,
%End
%If (Qt_4_3_0 -)
CompositionMode_Overlay,
%End
%If (Qt_4_3_0 -)
CompositionMode_Darken,
%End
%If (Qt_4_3_0 -)
CompositionMode_Lighten,
%End
%If (Qt_4_3_0 -)
CompositionMode_ColorDodge,
%End
%If (Qt_4_3_0 -)
CompositionMode_ColorBurn,
%End
%If (Qt_4_3_0 -)
CompositionMode_HardLight,
%End
%If (Qt_4_3_0 -)
CompositionMode_SoftLight,
%End
%If (Qt_4_3_0 -)
CompositionMode_Difference,
%End
%If (Qt_4_3_0 -)
CompositionMode_Exclusion,
%End
%If (Qt_4_5_0 -)
RasterOp_SourceOrDestination,
%End
%If (Qt_4_5_0 -)
RasterOp_SourceAndDestination,
%End
%If (Qt_4_5_0 -)
RasterOp_SourceXorDestination,
%End
%If (Qt_4_5_0 -)
RasterOp_NotSourceAndNotDestination,
%End
%If (Qt_4_5_0 -)
RasterOp_NotSourceOrNotDestination,
%End
%If (Qt_4_5_0 -)
RasterOp_NotSourceXorDestination,
%End
%If (Qt_4_5_0 -)
RasterOp_NotSource,
%End
%If (Qt_4_5_0 -)
RasterOp_NotSourceAndDestination,
%End
%If (Qt_4_5_0 -)
RasterOp_SourceAndNotDestination,
%End
};
void setCompositionMode(QPainter::CompositionMode);
QPainter::CompositionMode compositionMode() const;
const QFont &font() const;
void setFont(const QFont &);
QFontMetrics fontMetrics() const;
QFontInfo fontInfo() const;
void setPen(const QColor &);
void setPen(const QPen &);
void setPen(Qt::PenStyle);
const QPen &pen() const;
void setBrush(const QBrush &);
void setBrush(Qt::BrushStyle);
const QBrush &brush() const;
void setBackgroundMode(Qt::BGMode);
Qt::BGMode backgroundMode() const;
QPoint brushOrigin() const;
void setBrushOrigin(const QPointF &);
void setBackground(const QBrush &);
const QBrush &background() const;
QRegion clipRegion() const;
QPainterPath clipPath() const;
void setClipRect(const QRectF &, Qt::ClipOperation operation = Qt::ReplaceClip);
void setClipRegion(const QRegion &, Qt::ClipOperation operation = Qt::ReplaceClip);
void setClipPath(const QPainterPath &, Qt::ClipOperation operation = Qt::ReplaceClip);
void setClipping(bool);
bool hasClipping() const;
void save();
void restore();
void setMatrix(const QMatrix &, bool combine = false);
const QMatrix &matrix() const;
const QMatrix &deviceMatrix() const;
void resetMatrix();
void setMatrixEnabled(bool);
bool matrixEnabled() const;
void scale(qreal, qreal);
void shear(qreal, qreal);
void rotate(qreal);
void translate(const QPointF &);
QRect window() const;
void setWindow(const QRect &);
QRect viewport() const;
void setViewport(const QRect &);
void setViewTransformEnabled(bool);
bool viewTransformEnabled() const;
void strokePath(const QPainterPath &, const QPen &);
void fillPath(const QPainterPath &, const QBrush &);
void drawPath(const QPainterPath &);
void drawPoints(const QPointF *point, ...);
%MethodCode
QPointF *points = qtgui_inst_array<QPointF>(a0, a1, sipType_QPointF);
if (points)
{
sipCpp->drawPoints(points, 1 + PyTuple_GET_SIZE(a1));
delete[] points;
}
else
sipIsErr = 1;
%End
void drawPoints(const QPolygonF &);
void drawPoints(const QPoint *point, ...);
%MethodCode
QPoint *points = qtgui_inst_array<QPoint>(a0, a1, sipType_QPoint);
if (points)
{
sipCpp->drawPoints(points, 1 + PyTuple_GET_SIZE(a1));
delete[] points;
}
else
sipIsErr = 1;
%End
void drawPoints(const QPolygon &);
void drawLines(const QLineF *line, ...);
%MethodCode
QLineF *lines = qtgui_inst_array<QLineF>(a0, a1, sipType_QLineF);
if (lines)
{
sipCpp->drawLines(lines, 1 + PyTuple_GET_SIZE(a1));
delete[] lines;
}
else
sipIsErr = 1;
%End
void drawLines(const QVector<QLineF> &);
void drawLines(const QPointF *pointPair, ...);
%MethodCode
QPointF *pairs = qtgui_inst_array<QPointF>(a0, a1, sipType_QPointF);
if (pairs)
{
sipCpp->drawLines(pairs, (1 + PyTuple_GET_SIZE(a1)) / 2);
delete[] pairs;
}
else
sipIsErr = 1;
%End
void drawLines(const QVector<QPointF> &);
void drawLines(const QLine *line, ...);
%MethodCode
QLine *lines = qtgui_inst_array<QLine>(a0, a1, sipType_QLine);
if (lines)
{
sipCpp->drawLines(lines, 1 + PyTuple_GET_SIZE(a1));
delete[] lines;
}
else
sipIsErr = 1;
%End
void drawLines(const QVector<QLine> &);
void drawLines(const QPoint *pointPair, ...);
%MethodCode
QPoint *pairs = qtgui_inst_array<QPoint>(a0, a1, sipType_QPoint);
if (pairs)
{
sipCpp->drawLines(pairs, (1 + PyTuple_GET_SIZE(a1)) / 2);
delete[] pairs;
}
else
sipIsErr = 1;
%End
void drawLines(const QVector<QPoint> &);
void drawRects(const QRectF *rect, ...);
%MethodCode
QRectF *rects = qtgui_inst_array<QRectF>(a0, a1, sipType_QRectF);
if (rects)
{
sipCpp->drawRects(rects, 1 + PyTuple_GET_SIZE(a1));
delete[] rects;
}
else
sipIsErr = 1;
%End
void drawRects(const QVector<QRectF> &);
void drawRects(const QRect *rect, ...);
%MethodCode
QRect *rects = qtgui_inst_array<QRect>(a0, a1, sipType_QRect);
if (rects)
{
sipCpp->drawRects(rects, 1 + PyTuple_GET_SIZE(a1));
delete[] rects;
}
else
sipIsErr = 1;
%End
void drawRects(const QVector<QRect> &);
void drawEllipse(const QRectF &);
void drawEllipse(const QRect &);
void drawPolyline(const QPointF *point, ...);
%MethodCode
QPointF *points = qtgui_inst_array<QPointF>(a0, a1, sipType_QPointF);
if (points)
{
sipCpp->drawPolyline(points, 1 + PyTuple_GET_SIZE(a1));
delete[] points;
}
else
sipIsErr = 1;
%End
void drawPolyline(const QPolygonF &);
void drawPolyline(const QPoint *point, ...);
%MethodCode
QPoint *points = qtgui_inst_array<QPoint>(a0, a1, sipType_QPoint);
if (points)
{
sipCpp->drawPolyline(points, 1 + PyTuple_GET_SIZE(a1));
delete[] points;
}
else
sipIsErr = 1;
%End
void drawPolyline(const QPolygon &);
void drawPolygon(const QPointF *point, ...);
%MethodCode
QPointF *points = qtgui_inst_array<QPointF>(a0, a1, sipType_QPointF);
if (points)
{
sipCpp->drawPolygon(points, 1 + PyTuple_GET_SIZE(a1));
delete[] points;
}
else
sipIsErr = 1;
%End
void drawPolygon(const QPolygonF &, Qt::FillRule fillRule = Qt::OddEvenFill);
void drawPolygon(const QPoint *point, ...);
%MethodCode
QPoint *points = qtgui_inst_array<QPoint>(a0, a1, sipType_QPoint);
if (points)
{
sipCpp->drawPolygon(points, 1 + PyTuple_GET_SIZE(a1));
delete[] points;
}
else
sipIsErr = 1;
%End
void drawPolygon(const QPolygon &, Qt::FillRule fillRule = Qt::OddEvenFill);
void drawConvexPolygon(const QPointF *point, ...);
%MethodCode
QPointF *points = qtgui_inst_array<QPointF>(a0, a1, sipType_QPointF);
if (points)
{
sipCpp->drawConvexPolygon(points, 1 + PyTuple_GET_SIZE(a1));
delete[] points;
}
else
sipIsErr = 1;
%End
void drawConvexPolygon(const QPolygonF &);
void drawConvexPolygon(const QPoint *point, ...);
%MethodCode
QPoint *points = qtgui_inst_array<QPoint>(a0, a1, sipType_QPoint);
if (points)
{
sipCpp->drawConvexPolygon(points, 1 + PyTuple_GET_SIZE(a1));
delete[] points;
}
else
sipIsErr = 1;
%End
void drawConvexPolygon(const QPolygon &);
void drawArc(const QRectF &, int, int);
void drawPie(const QRectF &, int, int);
void drawChord(const QRectF &, int, int);
void drawRoundRect(const QRectF &, int xRound = 25, int yRound = 25);
void drawTiledPixmap(const QRectF &, const QPixmap &, const QPointF &pos = QPointF());
void drawPicture(const QPointF &, const QPicture &);
void drawPixmap(const QRectF &, const QPixmap &, const QRectF &);
void setLayoutDirection(Qt::LayoutDirection);
Qt::LayoutDirection layoutDirection() const;
void drawText(const QPointF &, const QString &);
void drawText(const QRectF &, int, const QString &, QRectF *boundingRect /Out/ = 0);
void drawText(const QRect &, int, const QString &, QRect *boundingRect /Out/ = 0);
void drawText(const QRectF &, const QString &, const QTextOption &option = QTextOption());
QRectF boundingRect(const QRectF &, int, const QString &);
QRect boundingRect(const QRect &, int, const QString &);
QRectF boundingRect(const QRectF &, const QString &, const QTextOption &option = QTextOption());
void fillRect(const QRectF &, const QBrush &);
void fillRect(const QRect &, const QBrush &);
void eraseRect(const QRectF &);
void setRenderHint(QPainter::RenderHint, bool on = true);
QFlags<QPainter::RenderHint> renderHints() const;
%If (Qt_4_2_0 -)
void setRenderHints(QFlags<QPainter::RenderHint>, bool on = true);
%End
QPaintEngine *paintEngine() const;
static void setRedirected(const QPaintDevice *, QPaintDevice *, const QPoint &offset = QPoint());
static QPaintDevice *redirected(const QPaintDevice *, QPoint *offset = 0);
static void restoreRedirected(const QPaintDevice *);
void drawLine(const QLineF &);
void drawLine(const QLine &);
void drawLine(int, int, int, int);
void drawLine(const QPoint &, const QPoint &);
void drawLine(const QPointF &, const QPointF &);
void drawRect(const QRectF &);
void drawRect(int, int, int, int);
void drawRect(const QRect &);
void drawPoint(const QPointF &);
void drawPoint(int, int);
void drawPoint(const QPoint &);
void drawRoundRect(int, int, int, int, int xRound = 25, int yRound = 25);
void drawRoundRect(const QRect &, int xRound = 25, int yRound = 25);
void drawEllipse(int, int, int, int);
void drawArc(const QRect &, int, int);
void drawArc(int, int, int, int, int, int);
void drawPie(const QRect &, int, int);
void drawPie(int, int, int, int, int, int);
void drawChord(const QRect &, int, int);
void drawChord(int, int, int, int, int, int);
void setClipRect(int, int, int, int, Qt::ClipOperation operation = Qt::ReplaceClip);
void setClipRect(const QRect &, Qt::ClipOperation operation = Qt::ReplaceClip);
void eraseRect(const QRect &);
void eraseRect(int, int, int, int);
void fillRect(int, int, int, int, const QBrush &);
void setBrushOrigin(int, int);
void setBrushOrigin(const QPoint &);
void drawTiledPixmap(const QRect &, const QPixmap &, const QPoint &pos = QPoint());
void drawTiledPixmap(int, int, int, int, const QPixmap &, int sx = 0, int sy = 0);
void drawPixmap(const QRect &, const QPixmap &, const QRect &);
void drawPixmap(const QPointF &, const QPixmap &);
void drawPixmap(const QPoint &, const QPixmap &);
void drawPixmap(const QRect &, const QPixmap &);
void drawPixmap(int, int, const QPixmap &);
void drawPixmap(int, int, int, int, const QPixmap &);
void drawPixmap(int, int, int, int, const QPixmap &, int, int, int, int);
void drawPixmap(int, int, const QPixmap &, int, int, int, int);
void drawPixmap(const QPointF &, const QPixmap &, const QRectF &);
void drawPixmap(const QPoint &, const QPixmap &, const QRect &);
void drawImage(const QRectF &, const QImage &, const QRectF &, Qt::ImageConversionFlags flags = Qt::AutoColor);
void drawImage(const QRect &, const QImage &, const QRect &, Qt::ImageConversionFlags flags = Qt::AutoColor);
void drawImage(const QPointF &, const QImage &, const QRectF &, Qt::ImageConversionFlags flags = Qt::AutoColor);
void drawImage(const QPoint &, const QImage &, const QRect &, Qt::ImageConversionFlags flags = Qt::AutoColor);
void drawImage(const QRectF &, const QImage &);
void drawImage(const QRect &, const QImage &);
void drawImage(const QPointF &, const QImage &);
void drawImage(const QPoint &, const QImage &);
void drawImage(int, int, const QImage &, int sx = 0, int sy = 0, int sw = -1, int sh = -1, Qt::ImageConversionFlags flags = Qt::AutoColor);
void drawText(const QPoint &, const QString &);
void drawText(int, int, int, int, int, const QString &, QRect *boundingRect /Out/ = 0);
void drawText(int, int, const QString &);
QRect boundingRect(int, int, int, int, int, const QString &);
%If (Qt_4_2_0 -)
QMatrix combinedMatrix() const;
%End
%If (Qt_4_2_0 -)
qreal opacity() const;
%End
%If (Qt_4_2_0 -)
void setOpacity(qreal);
%End
void translate(qreal, qreal);
void translate(const QPoint &);
void setViewport(int, int, int, int);
void setWindow(int, int, int, int);
%If (Qt_4_2_0 -)
const QMatrix &worldMatrix() const;
%End
%If (Qt_4_2_0 -)
void setWorldMatrix(const QMatrix &, bool combine = false);
%End
%If (Qt_4_2_0 -)
bool worldMatrixEnabled() const;
%End
%If (Qt_4_2_0 -)
void setWorldMatrixEnabled(bool);
%End
void drawPicture(int, int, const QPicture &);
void drawPicture(const QPoint &, const QPicture &);
%If (Qt_4_3_0 -)
void setTransform(const QTransform &, bool combine = false);
%End
%If (Qt_4_3_0 -)
const QTransform &transform() const;
%End
%If (Qt_4_3_0 -)
const QTransform &deviceTransform() const;
%End
%If (Qt_4_3_0 -)
void resetTransform();
%End
%If (Qt_4_3_0 -)
void setWorldTransform(const QTransform &, bool combine = false);
%End
%If (Qt_4_3_0 -)
const QTransform &worldTransform() const;
%End
%If (Qt_4_3_0 -)
QTransform combinedTransform() const;
%End
%If (Qt_4_3_0 -)
bool testRenderHint(QPainter::RenderHint) const;
%End
%If (Qt_4_4_0 -)
void drawRoundedRect(const QRectF &, qreal, qreal, Qt::SizeMode mode = Qt::AbsoluteSize);
%End
%If (Qt_4_4_0 -)
void drawRoundedRect(int, int, int, int, qreal, qreal, Qt::SizeMode mode = Qt::AbsoluteSize);
%End
%If (Qt_4_4_0 -)
void drawRoundedRect(const QRect &, qreal, qreal, Qt::SizeMode mode = Qt::AbsoluteSize);
%End
%If (Qt_4_4_0 -)
void drawEllipse(const QPointF &, qreal, qreal);
%End
%If (Qt_4_4_0 -)
void drawEllipse(const QPoint &, int, int);
%End
%If (Qt_4_5_0 -)
void fillRect(const QRectF &, const QColor &);
%End
%If (Qt_4_5_0 -)
void fillRect(const QRect &, const QColor &);
%End
%If (Qt_4_5_0 -)
void fillRect(int, int, int, int, const QColor &);
%End
%If (Qt_4_5_0 -)
void fillRect(int, int, int, int, Qt::GlobalColor);
%End
%If (Qt_4_5_0 -)
void fillRect(const QRect &, Qt::GlobalColor);
%End
%If (Qt_4_5_0 -)
void fillRect(const QRectF &, Qt::GlobalColor);
%End
%If (Qt_4_5_0 -)
void fillRect(int, int, int, int, Qt::BrushStyle);
%End
%If (Qt_4_5_0 -)
void fillRect(const QRect &, Qt::BrushStyle);
%End
%If (Qt_4_5_0 -)
void fillRect(const QRectF &, Qt::BrushStyle);
%End
%If (Qt_4_6_0 -)
void beginNativePainting();
%End
%If (Qt_4_6_0 -)
void endNativePainting();
%End
private:
%If (Qt_4_2_0 -)
QPainter(const QPainter &);
%End
};
QFlags<QPainter::RenderHint> operator|(QPainter::RenderHint, QFlags<QPainter::RenderHint>);
|