mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-16 02:25:50 +08:00
45d6ef373b
NEW: JKQTMathText: \limits and \nolimits work as in LaTeX now (before it was simply removed and the functionality implemented for a fixed list of symbols) remove/breaking: JKQTMathText: \v[a-zA-Z] and shorthand for \vec{a-zA-Z} was removed improvement: improved typesetting of sub-/supercripts, especially for large math operators and braces
36 lines
838 B
C++
36 lines
838 B
C++
#ifndef TESTFORM_H
|
|
#define TESTFORM_H
|
|
|
|
#include <QWidget>
|
|
#include <QStringList>
|
|
#include "jkqtmathtext/jkqtmathtext.h"
|
|
#include "jkqtcommon/jkqtphighrestimer.h"
|
|
#include <QPainter>
|
|
#include <QTreeWidget>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
namespace Ui {
|
|
class TestForm;
|
|
}
|
|
QT_END_NAMESPACE
|
|
|
|
class TestForm : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit TestForm(QWidget *parent = 0);
|
|
~TestForm();
|
|
|
|
public slots:
|
|
void updateMath();
|
|
private:
|
|
Ui::TestForm *ui;
|
|
JKQTPHighResTimer ht;
|
|
double draw(QPainter& painter, double X, double YY, JKQTMathText& mt, QString name, double &durationSizingMS, double &durationTimingMS, QStringList *lstErrors=nullptr);
|
|
|
|
QTreeWidgetItem* createTree(JKQTMathTextNode* node, QTreeWidgetItem *parent=NULL);
|
|
};
|
|
|
|
#endif // TESTFORM_H
|