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