-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathshowwindow.h
More file actions
42 lines (33 loc) · 750 Bytes
/
showwindow.h
File metadata and controls
42 lines (33 loc) · 750 Bytes
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
#ifndef SHOWWINDOW_H
#define SHOWWINDOW_H
#include <QWidget>
class QTabWidget;
class ShowWindow : public QWidget
{
Q_OBJECT
public:
ShowWindow(QWidget *parent = nullptr);
private:
void init();
void initLoading();
void initLEDNumber();
void initProgress();
void initWaterProgress();
void initBattery();
void initSpeedPanel();
void initShip();
void initHUD();
void initNumberAnimation();
private:
QTabWidget *_tabWgt;
QWidget *_wgtLoading;
QWidget *_wgtLEDNumber;
QWidget *_wgtProgress;
QWidget *_wgtWaterProgress;
QWidget *_wgtBattery;
QWidget *_wgtSpeedPanel;
QWidget *_wgtShip;
QWidget *_wgtHUD;
QWidget *_wgtNumberAnimation;
};
#endif // SHOWWINDOW_H