mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-16 02:25:50 +08:00
57 lines
1.2 KiB
C++
57 lines
1.2 KiB
C++
#ifndef TestWidgetImages_H
|
|
#define TestWidgetImages_H
|
|
#include <QElapsedTimer>
|
|
#include <QCheckBox>
|
|
#include <QLineEdit>
|
|
#include <QTimer>
|
|
#include <QImage>
|
|
#include <QVBoxLayout>
|
|
#include <QWidget>
|
|
#include <QTabWidget>
|
|
#include <QFormLayout>
|
|
#include <QCheckBox>
|
|
#include "jkqtplotter/jkqtplotter.h"
|
|
#include "jkqtplotter/jkqtpgeoelements.h"
|
|
#include "jkqtplotter/jkqtpimageelements.h"
|
|
#include "jkqtplotter/jkqtpoverlayelements.h"
|
|
#include "jkqtplotter/jkqtpparsedfunctionelements.h"
|
|
#include "jkqtplotter/jkqtpbaseelements.h"
|
|
#include "jkqtplotter/jkqtpplotsmodel.h"
|
|
#include "jkqtplottertools/jkqtptools.h"
|
|
|
|
#define N1 200
|
|
#define N2 50
|
|
#define N3 8
|
|
|
|
|
|
|
|
|
|
class TestWidgetImages : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit TestWidgetImages(QWidget *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
|
|
void setImgPalette(int index);
|
|
void setImgPalette1(int index);
|
|
void setImgModifier(int index);
|
|
|
|
protected:
|
|
QImage img1;
|
|
|
|
|
|
JKQTPMathImage* pimg2;
|
|
JKQTPMathImage* pimg3;
|
|
JKQtPlotter* plotImg;
|
|
|
|
|
|
};
|
|
|
|
|
|
#endif // TestWidgetImages_H
|