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