-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchimerymainwin.h
64 lines (56 loc) · 1.24 KB
/
chimerymainwin.h
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
59
60
61
62
63
64
#ifndef CHIMERYMAINWIN_H
#define CHIMERYMAINWIN_H
#include<QMainWindow>
#include<QGridLayout>
#include<QTimeEdit>
#include<QSpinBox>
#include<QLabel>
#include<QTime>
#include<QDateTime>
#include<QDate>
#include<QLinkedList>
#include<QPushButton>
#include<QTimer>
#include<QSound>
#include<QApplication>
#include<QGuiApplication>
#include<QIcon>
#include<QSystemTrayIcon>
#include<chimeryaboutwin.h>
#include<chimerymenus.h>
class ChimeryMenus;
class ChimeryMainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit ChimeryMainWindow(QWidget *parent = 0);
~ChimeryMainWindow();
public slots:
void refresh();
void cyc();
void cycSubmit();
void chime();
void reinit();
private:
QTimeEdit * cycStart;
QSpinBox * cycNum;
QSpinBox * cycDur;
QLabel * cycStartL;
QLabel * cycNumL;
QLabel * cycDurL;
QLabel * gapL;
QPushButton * gogogo;
int cycs;
QLinkedList<QPushButton *> * cycButtons;
QLinkedList<QSpinBox *> * cycGaps;
QLinkedList<QDateTime *> * times;
QSound * begin;
QSound * end;
QIcon * active_icon;
QIcon * passive_icon;
QSystemTrayIcon * systray;
ChimeryAboutWindow * about;
ChimeryMenus * menus;
QTimer * timer;
};
#endif // CHIMERYMAINWIN_H