-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadminscreen.h
More file actions
67 lines (56 loc) · 1.36 KB
/
adminscreen.h
File metadata and controls
67 lines (56 loc) · 1.36 KB
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
/**
* @file adminscreen.h
* @brief Administration window header
* @author mnxoid
*
* Copyright 2014 by mnxoid,
*
* This software is the confidential and proprietary information
* of mnxoid ("Confidential Information"). You
* shall not disclose such Confidential Information and shall use
* it only in accordance with the terms of the license agreement
* you entered into with mnxoid.
**/
#ifndef ADMINSCREEN_H
#define ADMINSCREEN_H
#include <QMainWindow>
namespace Ui {
class AdminScreen;
}
/**
* @brief Administrator window class
**/
class AdminScreen : public QMainWindow
{
Q_OBJECT
public:
/**
* @brief AdminScreen constructor
* @param [in] parent - Window parent
**/
explicit AdminScreen(QWidget *parent = 0);
/**
* @brief AdminScreen destructor
**/
~AdminScreen();
private slots:
/**
* @brief Exit button click handler
**/
void on_pushButton_clicked();
/**
* @brief Add User button click handler
**/
void on_pushButton_2_clicked();
/**
* @brief Edit User button click handler
**/
void on_pushButton_3_clicked();
/**
* @brief Delete User button click handler
**/
void on_pushButton_4_clicked();
private:
Ui::AdminScreen *ui; //!< User interface reference
};
#endif // ADMINSCREEN_H