-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainwindow.h
54 lines (45 loc) · 1.11 KB
/
mainwindow.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
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QBasicTimer>
#include <QMainWindow>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow() override;
void Clear();
void Start();
void Set();
void Set5();
void Set10();
void Set15();
void Set30();
void Set35();
public slots:
void WriteHomeTeamToFile();
void WriteGuestTeamToFile();
void WriteHomeTeamGoalsToFile();
void WriteGuestTeamGoalsToFile();
void WriteLegToFile();
void IncreaseHomeGoals();
void DecreaseHomeGoals();
void IncreaseGuestGoals();
void DecreaseGuestGoals();
protected:
void timerEvent(QTimerEvent *event) override;
private:
Ui::MainWindow *ui;
QBasicTimer *timer;
int countStart = 0; //Default gameTime in Seconds
int count;
QString formattedTime();
std::string formattedTimeAsNormalString();
void writeToFile(std::string file, std::string content);
void writeTimeToFile();
std::string getCurrentWorkingDir();
};
#endif // MAINWINDOW_H