]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/help.hpp
e5b04e990a2ccef2208f7552c99453a6da220097
[vlc] / modules / gui / qt4 / dialogs / help.hpp
1 /*****************************************************************************
2  * Help.hpp : Help and About dialogs
3  ****************************************************************************
4  * Copyright (C) 2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Jean-Baptiste Kempf <jb (at) videolan.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef QVLC_HELP_DIALOG_H_
25 #define QVLC_HELP_DIALOG_H_ 1
26
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include "qt4.hpp"
32
33 #include "util/qvlcframe.hpp"
34 #include "util/singleton.hpp"
35
36 class QPushButton;
37 class QTextBrowser;
38 class QLabel;
39 class QEvent;
40 class QPushButton;
41 class QTextEdit;
42
43 class HelpDialog : public QVLCFrame, public Singleton<HelpDialog>
44 {
45     Q_OBJECT;
46 private:
47     HelpDialog( intf_thread_t * );
48     virtual ~HelpDialog();
49
50 public slots:
51     void close();
52
53     friend class    Singleton<HelpDialog>;
54 };
55
56
57 class AboutDialog : public QVLCDialog, public Singleton<AboutDialog>
58 {
59     Q_OBJECT;
60
61 private:
62     AboutDialog( intf_thread_t * );
63     virtual ~AboutDialog();
64
65 public slots:
66     void close();
67
68     friend class    Singleton<AboutDialog>;
69 };
70
71 #ifdef UPDATE_CHECK
72
73 static const int UDOkEvent = QEvent::User + DialogEventType + 21;
74 static const int UDErrorEvent = QEvent::User + DialogEventType + 22;
75
76 class UpdateDialog : public QVLCFrame, public Singleton<UpdateDialog>
77 {
78     Q_OBJECT;
79 public:
80     void updateNotify( bool );
81
82 private:
83     UpdateDialog( intf_thread_t * );
84     virtual ~UpdateDialog();
85
86     update_t *p_update;
87     QPushButton *updateButton;
88     QLabel *updateLabelTop;
89     QLabel *updateLabelDown;
90     QTextEdit *updateText;
91     void customEvent( QEvent * );
92     bool b_checked;
93
94 private slots:
95     void close();
96     void UpdateOrDownload();
97
98     friend class    Singleton<UpdateDialog>;
99 };
100 #endif
101
102 #endif