QuakeGod
2023-05-30 d3687ba77720285bac5e7ff51e7e65437e71c00f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef DIALOGSCENCE1_H
#define DIALOGSCENCE1_H
 
#include <QDialog>
#include <QtCharts/QChart>
#include <QtCharts/QBarSeries>
#include <QtCharts/QBarSet>
#include <QtCharts/QChartView>
#include <QDateTime>
 
using namespace QtCharts;
 
namespace Ui {
class DialogScence1;
}
 
class DialogScence1 : public QDialog
{
    Q_OBJECT
 
public:
    explicit DialogScence1(QWidget *parent = nullptr);
    ~DialogScence1();
    int bfull =0;
    QSize oldsize;
    int flag = 1;
    int nPos=0;
    void InitDisplay();
    void keyPressEvent(QKeyEvent *event) Q_DECL_OVERRIDE;
    void ShowParams();
 
    void setChartAttribute(QChart *chart, QString title);
    QChart * CreateBarChart();
    QChart * createHorBarChart();
    QChart * createPieChart();
    QChart * createAreaChart();
    QChart * createLineChart();
    QChart * createSpLineChart();
    QChart * createScatterChart();
    void myDraw(QWidget * widget);
 
protected:
    void paintEvent(QPaintEvent *event) Q_DECL_OVERRIDE;
    bool eventFilter(QObject *, QEvent *) Q_DECL_OVERRIDE;
private slots:
    void timerProc();
 
private:
    Ui::DialogScence1 *ui;
};
 
#endif // DIALOGSCENCE1_H