QuakeGod
2023-05-30 acd576fbf6ca6086455d7f82140dd495237c6803
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
53
54
55
56
57
58
#ifndef DIALOGSCENCE3_H
#define DIALOGSCENCE3_H
 
#include <QDialog>
#include <QtCharts/QChart>
#include <QtCharts/QBarSeries>
#include <QtCharts/QBarSet>
#include <QtCharts/QChartView>
#include <QDateTime>
#include <QLabel>
 
using namespace QtCharts;
 
namespace Ui {
class DialogScence3;
}
 
class DialogScence3 : public QDialog
{
    Q_OBJECT
 
public:
    explicit DialogScence3(QWidget *parent = nullptr);
    ~DialogScence3();
    int bfull =0;
    QSize oldsize;
    int flag = 1;
    int nPos=0;
    int bNeedResize=0;
    void InitDisplay();
    void keyPressEvent(QKeyEvent *event) Q_DECL_OVERRIDE;
    void ShowParams();
    void DelayInit();
 
    void setChartAttribute(QChart *chart, QString title);
    QChart * CreateBarChart();
    QChart * createPieChart();
    QChart * createAreaChart();
    QChart * createLineChart();
    QChart * createSpLineChart();
    QChart * createScatterChart();
    void myDraw(QWidget * widget);
    void resizeCtrls();
    void resizeLabelFont(QLabel * label,int lines,const QString & color = QString());
 
protected:
    void paintEvent(QPaintEvent *event) Q_DECL_OVERRIDE;
    bool eventFilter(QObject *, QEvent *) Q_DECL_OVERRIDE;
    void resizeEvent(QResizeEvent *event) Q_DECL_OVERRIDE;
 
private slots:
    void timerProc();
 
private:
    Ui::DialogScence3 *ui;
};
 
#endif // DIALOGSCENCE3_H