mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-16 10:35:49 +08:00
22 lines
432 B
C++
22 lines
432 B
C++
#include <QApplication>
|
|
#include "renderarea.h"
|
|
#include <QTeXEngine.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
RenderArea area;
|
|
|
|
area.setGeometry(100, 100, 600, 500);
|
|
area.show();
|
|
|
|
QTeXPaintDevice tex(QString("example.tex"), QSize(600, 500));
|
|
tex.setDocumentMode();
|
|
QPainter paint;
|
|
paint.begin(&tex);
|
|
area.draw(&paint);
|
|
paint.end();
|
|
|
|
return app.exec();
|
|
}
|