-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcaboutdialog.h
More file actions
58 lines (49 loc) · 1.4 KB
/
caboutdialog.h
File metadata and controls
58 lines (49 loc) · 1.4 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
/*********************** Information *************************\
| $HeadURL$
|
| Author: Jo2003
|
| Begin: 18.01.2010 / 16:12:40
|
| Last edited by: $Author$
|
| $Id$
\*************************************************************/
#ifndef __011810__CABOUTDIALOG_H
#define __011810__CABOUTDIALOG_H
#include <QDialog>
#include <QString>
#include <vlc/vlc.h>
#include <version_info.h>
#include "csettingsdlg.h"
#include "defdef.h"
namespace Ui {
class CAboutDialog;
}
/********************************************************************\
| Class: CAboutDialog
| Date: 18.01.2010 / 16:13:10
| Author: Jo2003
| Description: simple about dialog class to show info
|
\********************************************************************/
class CAboutDialog : public QDialog {
Q_OBJECT
public:
CAboutDialog(QWidget *parent, QString sExpires, const QString& lang = QString());
~CAboutDialog();
void ConnectSettings (CSettingsDlg *pSet);
protected:
virtual void changeEvent(QEvent *e);
void FillInfo (QString sExpires);
#ifdef __INFO_WINDOW_CONTENT
void addOrderInfo();
#endif // __INFO_WINDOW_CONTENT
private:
Ui::CAboutDialog *ui;
QString strAbout;
};
#endif /* __011810__CABOUTDIALOG_H */
/************************* History ***************************\
| $Log$
\*************************************************************/