-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.h
57 lines (41 loc) · 1.03 KB
/
dashboard.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
/*!
* \author Kaveen Hyacinth
* \copyright Kaveen Hyacinth Digital © 2020
*/
#ifndef DASHBOARD_H
#define DASHBOARD_H
#include "util.h"
#include "account.h"
#include "dataadapter.h"
#include "transaction.h"
#include "datavisualizer.h"
#include "accountcontroller.h"
#include "transactioncontroller.h"
#include <QtDebug>
#include <QMainWindow>
QT_BEGIN_NAMESPACE
namespace Ui { class Dashboard; }
QT_END_NAMESPACE
/*!
* \brief The Dashboard class is the main window of the application where user does every operation
*/
class Dashboard : public QMainWindow
{
Q_OBJECT
public:
Dashboard(QWidget *parent = nullptr);
~Dashboard();
private slots:
void on_btnTrInAdd_clicked();
void on_btnAccountAdd_clicked();
void on_btnAccountDelete_clicked();
void on_btnTrExAdd_clicked();
void on_btnTrInClear_clicked();
void on_btnTrExClear_clicked();
void on_btnAccountClear_clicked();
void on_btnFilter_clicked();
void on_btnReset_clicked();
private:
Ui::Dashboard *ui;
};
#endif // DASHBOARD_H