-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.h
44 lines (38 loc) · 862 Bytes
/
about.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
#ifndef ABOUT_H
#define ABOUT_H
#include <QDialog>
namespace Ui {
class About;
}
/*!
* \brief The About class builds and configures the About window
*
* The About window contains things such as copyright, version and contributor information.
* On Mac OS X it is contained beneath the program menu in the top bar, whereas on Windows
* and Linux it should be located under the Help menu.
*
* \inherits QDialog
* \inmodule SundayBeacon
* \ingroup ui
* \since 1
*/
class About : public QDialog
{
Q_OBJECT
public:\
//! Constructor for the About::About Window, no parent by default
/*!
* \param parent
* \since 1
*/
explicit About(QWidget *parent = 0);
//! Deconstructor for the About::About Window
/*!
* \since 1
*/
~About();
private:
//! About page ui
Ui::About *ui;
};
#endif // ABOUT_H