]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/help.hpp
d1c18891c0855690eb06d1ec55cbc50a09673865
[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 _HELP_DIALOG_H_
25 #define _HELP_DIALOG_H_
26
27 #ifdef HAVE_CONFIG_H
28 #include "config.h"
29 #endif
30
31 #include "qt4.hpp"
32
33 #include "util/qvlcframe.hpp"
34
35 class QPushButton;
36 class QTextBrowser;
37 class QLabel;
38 class QEvent;
39 class QPushButton;
40
41 class HelpDialog : public QVLCFrame
42 {
43     Q_OBJECT;
44 public:
45     static HelpDialog * getInstance( intf_thread_t *p_intf )
46     {
47         if( !instance)
48             instance = new HelpDialog( p_intf );
49         return instance;
50     }
51     static void killInstance()
52     { if( instance ) delete instance; instance = NULL;}
53     virtual ~HelpDialog();
54
55 private:
56     HelpDialog( intf_thread_t * );
57     static HelpDialog *instance;
58 public slots:
59     void close();
60 };
61
62
63 class AboutDialog : public QVLCDialog
64 {
65     Q_OBJECT;
66 public:
67     static AboutDialog * getInstance( intf_thread_t *p_intf )
68     {
69         if( !instance)
70             instance = new AboutDialog( (QWidget *)p_intf->p_sys->p_mi,
71                                         p_intf );
72         return instance;
73     }
74
75 private:
76     AboutDialog( QWidget *, intf_thread_t * );
77     virtual ~AboutDialog();
78
79     static AboutDialog *instance;
80
81 public slots:
82     void close();
83 };
84
85 #ifdef UPDATE_CHECK
86
87 static int UDOkEvent = QEvent::User + DialogEventType + 21;
88 static int UDErrorEvent = QEvent::User + DialogEventType + 22;
89
90 class UpdateDialog : public QVLCFrame
91 {
92     Q_OBJECT;
93 public:
94     static UpdateDialog * getInstance( intf_thread_t *p_intf )
95     {
96         if( !instance )
97             instance = new UpdateDialog( p_intf );
98         return instance;
99     }
100     static void killInstance()
101     { if( instance ) delete instance; instance = NULL;}
102
103     void updateNotify( bool );
104
105 private:
106     UpdateDialog( intf_thread_t * );
107     virtual ~UpdateDialog();
108
109     static UpdateDialog *instance;
110
111     update_t *p_update;
112     QPushButton *updateButton;
113     QLabel *updateLabel;
114     void customEvent( QEvent * );
115     bool b_checked;
116
117 private slots:
118     void close();
119     void UpdateOrDownload();
120 };
121 #endif
122
123 #endif