Qt 4.8
|
The QAbstractTextDocumentLayout::PaintContext class is a convenience class defining the parameters used when painting a document's layout. More...
#include <qabstracttextdocumentlayout.h>
Public Functions | |
PaintContext () | |
Public Variables | |
QRectF | clip |
a hint to the layout specifying the area around paragraphs, frames or text require painting. More... | |
int | cursorPosition |
the position within the document, where the cursor line should be drawn. More... | |
QPalette | palette |
the default color that is used for the text, when no color is specified. More... | |
QVector< Selection > | selections |
the collection of selections that will be rendered when passing this paint context to QAbstractTextDocumentLayout's draw() function. More... | |
The QAbstractTextDocumentLayout::PaintContext class is a convenience class defining the parameters used when painting a document's layout.
A paint context is used when rendering custom layouts for QTextDocuments with the QAbstractTextDocumentLayout::draw() function. It is specified by a cursorPosition{cursor position}, palette{default text color}, clip rectangle and a collection of selections .
Definition at line 77 of file qabstracttextdocumentlayout.h.
|
inline |
Definition at line 79 of file qabstracttextdocumentlayout.h.
QAbstractTextDocumentLayout::PaintContext::clip |
a hint to the layout specifying the area around paragraphs, frames or text require painting.
Everything outside of this rectangle does not need to be painted.
Specifying a clip rectangle can speed up drawing of large documents significantly. Note that the clip rectangle is in document coordinates (not in viewport coordinates). It is not a substitute for a clip region set on the painter but merely a hint.
The default value is a null rectangle indicating everything needs to be painted.
Definition at line 84 of file qabstracttextdocumentlayout.h.
Referenced by QTextDocumentLayout::draw(), QTextDocumentLayoutPrivate::drawBlock(), QTextDocument::drawContents(), QTextControl::drawContents(), QTextDocumentLayoutPrivate::drawFlow(), QTextDocumentLayoutPrivate::drawFrame(), and printPage().
QAbstractTextDocumentLayout::PaintContext::cursorPosition |
the position within the document, where the cursor line should be drawn.
The default value is -1.
Definition at line 82 of file qabstracttextdocumentlayout.h.
Referenced by QTextDocumentLayoutPrivate::drawBlock(), QTextDocumentLayoutPrivate::drawFlow(), QTextDocumentLayoutPrivate::drawFrame(), QTextControl::getPaintContext(), and QPlainTextEdit::paintEvent().
QAbstractTextDocumentLayout::PaintContext::palette |
the default color that is used for the text, when no color is specified.
The default value is the application's default palette.
Definition at line 83 of file qabstracttextdocumentlayout.h.
Referenced by QTextDocumentLayoutPrivate::drawBlock(), QTextDocumentLayoutPrivate::drawFrame(), QTextDocumentLayoutPrivate::drawListItem(), QTextControl::getPaintContext(), QDeclarativeText::paint(), QLabel::paintEvent(), QWhatsThat::paintEvent(), QStaticTextPrivate::paintText(), printPage(), and QDeclarativeTextPrivate::textDocumentImage().
QAbstractTextDocumentLayout::PaintContext::selections |
the collection of selections that will be rendered when passing this paint context to QAbstractTextDocumentLayout's draw() function.
The default value is an empty vector indicating no selection.
Definition at line 85 of file qabstracttextdocumentlayout.h.
Referenced by adjustContextSelectionsForCell(), QTextDocumentLayoutPrivate::drawBlock(), QTextDocumentLayoutPrivate::drawFlow(), QTextDocumentLayoutPrivate::drawFrame(), QTextControl::getPaintContext(), and QPlainTextEdit::paintEvent().