JKQtPlotter/examples/jkqtplot_test/TestWidgetBarcharts.h
jkriege2 356cc34349 new: Statistics library with functions to calculate histograms, regression, kernel density estimates, ... including a new example
new: iterator interface and improved documentation for JKQTPDatastore
reorganization of library (better separation of common code in jkqtpcommon and other code e.g. in jkqtplotter or jkqtmathtext)
2019-05-29 22:40:02 +02:00

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 "jkqtplotter/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