-
Notifications
You must be signed in to change notification settings - Fork 0
/
ClockApp.h
84 lines (64 loc) · 1.69 KB
/
ClockApp.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
//
// ClockApp.h
// guidev2
//
// Created by Jens Meder on 17.04.13.
//
//
#ifndef __guidev2__ClockApp__
#define __guidev2__ClockApp__
#include <iostream>
#include <QApplication>
#include "UndoRedo/UndoRedoWindow.h"
#include "mainwindow.h"
#include "Model/DataSource.h"
#include "Model/DummyDataSource.h"
#include "Quiz.h"
class IntroViewController;
class SelectPupilViewController;
class ViewController;
class UndoRedoViewController;
class MainMenuViewController;
class QuizViewController;
/**
* Represents the clock application.
*/
class ClockApp: public QApplication
{
Q_OBJECT
private:
MainWindow* mainWindow;
UndoRedoWindow* undoRedoWindow;
QAction* showUndoRedoPlaygroundAction;
UndoRedoViewController* undoRedoViewController;
MainMenuViewController* mainMenuViewController;
DataSource* dataSource;
ViewController* activeViewController;
QuizViewController* quizViewController;
public:
/**
* Creates a new ClockApp instance.
*/
ClockApp(int &argc, char **argv);
/**
* Destroys the ClockApp object and performs necessary clean up.
*/
~ClockApp();
/**
* Shows main window
*/
void showMainWindow();
/**
* @brief getDataSource
* @return the DataSource used in the app
*/
DataSource* getDataSource();
public slots:
/**
* Show undo redo playground window
*/
void showUndoRedoPlayGround();
void showQuiz(Quiz quiz);
void quitQuiz();
};
#endif /* defined(__guidev2__ClockApp__) */