17
votes

is there a way to draw fixed text that has subscripts. My goal is to have something like: "K_max=K_2 . 3"

QString equation="K_max=K_2 . 3";
painter.drawText( QRect(x, y , width, y+height), Qt::AlignLeft|Qt::AlignVCenter, equation);

I also tried formatting the text using html tags but it didn't help (tags got printed with the text):

QString equation="<p>K<sub>max</sub></p>=<p>K<sub>2</sub></p>.3"
2
You can show it in a QLabel, like: QLabel lbl("<p>K<sub>max</sub></p>=<p>K<sub>2</sub></p>.3"); lbl.show();.vahancho
Thanks for your answer, but I'am trying to print the text to a pdf file using QPrinter as a paint deviceluffy
You can set that html code to a label, than grab the label's content as a pixmap and paint the text as an image with your printer. Otherwise there is no such function that supports drawing formulas.vahancho
Try using unicode. Qt usually work good with it: en.wikipedia.org/wiki/Unicode_subscripts_and_superscriptsAmartel
@vahancho you wrong, there is such function. Check my answer.Dmitry Sazonov

2 Answers

26
votes

Here is a full example using rich text of QTextDocument.

mainWindow.cpp:

#include "mainWindow.h"

void MainWindow::paintEvent(QPaintEvent*)
{
    QPainter painter(this);
    QTextDocument td;
    td.setHtml("K<sub>max</sub>=K<sub>2</sub> &middot; 3");
    td.drawContents(&painter);
}

If you need to draw the text at specific point, translate the coordinate system of the painter before drawing:

painter.translate(QPointF(50, 50));

mainWindow.cpp - Another solution:

#include "mainWindow.h"

void MainWindow::paintEvent(QPaintEvent*)
{
    QPainter painter(this);
    QTextDocument td;
    td.setHtml("K<sub>max</sub>=K<sub>2</sub> &middot; 3");
    QAbstractTextDocumentLayout::PaintContext ctx;
    ctx.clip = QRectF( 0, 0, 400, 100 );
    td.documentLayout()->draw( &painter, ctx );
}

mainWindow.h:

#include <QtGui>

class MainWindow: public QWidget
{
protected:
    void paintEvent(QPaintEvent*);
};

main.cpp:

#include <QtGui>
#include "mainWindow.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MainWindow mainWindow;
    mainWindow.show();
    return app.exec();
}

The project file:

TEMPLATE = app
QT += gui
HEADERS = mainWindow.h
SOURCES = main.cpp mainWindow.cpp

Result:

enter image description here

6
votes

You may use supported Qt HTML subset to format your text. If you need to draw formatted text, you should use QTextDocument::drawContents.

QPainter::drawText is designed for plain text without formatting, and it works much faster.