mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-15 18:15:52 +08:00
60 lines
1.2 KiB
C++
60 lines
1.2 KiB
C++
#ifndef TestWidgetBarcharts_H
|
|
#define TestWidgetBarcharts_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/jkqtpgraphsgeometric.h"
|
|
#include "jkqtplotter/jkqtpgraphsimage.h"
|
|
#include "jkqtplotter/jkqtpelementsoverlay.h"
|
|
#include "jkqtplotter/jkqtpgraphsparsedfunction.h"
|
|
#include "jkqtplotter/jkqtpbaseelements.h"
|
|
#include "jkqtplottergui/jkqtpgraphsmodel.h"
|
|
#include "jkqtplottertools/jkqtptools.h"
|
|
|
|
#define N1 200
|
|
#define N2 50
|
|
#define N3 8
|
|
|
|
|
|
|
|
|
|
class TestWidgetBarcharts : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit TestWidgetBarcharts(QWidget *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
|
|
void setBarchartLogLog(bool checked);
|
|
void setBarchartAngele(int angel);
|
|
void setBarchartAngele2(int angel);
|
|
|
|
protected:
|
|
|
|
|
|
JKQTPLotter* plotBarchart;
|
|
JKQTPLotter* plotBarchart2;
|
|
QCheckBox* chkBarLog;
|
|
QSpinBox* spinBarLabelAngel;
|
|
QSpinBox* spinBarLabelAngel2;
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
#endif // TestWidgetBarcharts_H
|