A text engine for Qt rich texts. More...
#include <qwt_text_engine.h>
Public Member Functions | |
virtual void | draw (QPainter *painter, const QRectF &rect, int flags, const QString &text) const |
virtual double | heightForWidth (const QFont &font, int flags, const QString &text, double width) const |
virtual bool | mightRender (const QString &) const |
QwtRichTextEngine () | |
Constructor. More... | |
virtual void | textMargins (const QFont &, const QString &, double &left, double &right, double &top, double &bottom) const |
virtual QSizeF | textSize (const QFont &font, int flags, const QString &text) const |
Public Member Functions inherited from QwtTextEngine | |
virtual | ~QwtTextEngine () |
Destructor. More... | |
Private Member Functions | |
QString | taggedText (const QString &, int flags) const |
Additional Inherited Members | |
Protected Member Functions inherited from QwtTextEngine | |
QwtTextEngine () | |
Constructor. More... | |
A text engine for Qt rich texts.
QwtRichTextEngine renders Qt rich texts using the classes of the Scribe framework of Qt.
Definition at line 150 of file qwt_text_engine.h.
QwtRichTextEngine::QwtRichTextEngine | ( | ) |
Constructor.
Definition at line 243 of file qwt_text_engine.cpp.
|
virtual |
Draw the text in a clipping rectangle
painter | Painter |
rect | Clipping rectangle |
flags | Bitwise OR of the flags like in for QPainter::drawText() |
text | Text to be rendered |
Implements QwtTextEngine.
Definition at line 300 of file qwt_text_engine.cpp.
|
virtual |
Find the height for a given width
font | Font of the text |
flags | Bitwise OR of the flags used like in QPainter::drawText() |
text | Text to be rendered |
width | Width |
Implements QwtTextEngine.
Definition at line 257 of file qwt_text_engine.cpp.
|
virtual |
Test if a string can be rendered by this text engine
text | Text to be tested |
Implements QwtTextEngine.
Definition at line 326 of file qwt_text_engine.cpp.
|
private |
Wrap text into
tags according flags
text | Text |
flags | Bitwise OR of the flags like in for QPainter::drawText() |
Definition at line 315 of file qwt_text_engine.cpp.
|
virtual |
Return margins around the texts
left | Return 0 |
right | Return 0 |
top | Return 0 |
bottom | Return 0 |
Implements QwtTextEngine.
Definition at line 339 of file qwt_text_engine.cpp.
|
virtual |
Returns the size, that is needed to render text
font | Font of the text |
flags | Bitwise OR of the flags used like in QPainter::drawText() |
text | Text to be rendered |
Implements QwtTextEngine.
Definition at line 276 of file qwt_text_engine.cpp.