]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/help.hpp
Add fonctions to the update system : all is in a thread now. The rc interface doesn...
[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 #include <vlc/vlc.h>
28
29 #include "util/qvlcframe.hpp"
30
31 class QPushButton;
32 class QTextBrowser;
33 class QLabel;
34 class QEvent;
35 class QPushButton;
36
37 class HelpDialog : public QVLCFrame
38 {
39     Q_OBJECT;
40 public:
41     static HelpDialog * getInstance( intf_thread_t *p_intf )
42     {
43         if( !instance)
44             instance = new HelpDialog( p_intf );
45         return instance;
46     }
47     virtual ~HelpDialog();
48
49 private:
50     HelpDialog( intf_thread_t * );
51     static HelpDialog *instance;
52 public slots:
53     void close();
54 };
55
56
57 class AboutDialog : public QVLCFrame
58 {
59     Q_OBJECT;
60 public:
61     static AboutDialog * getInstance( intf_thread_t *p_intf )
62     {
63         if( !instance)
64             instance = new AboutDialog( p_intf );
65         return instance;
66     }
67     virtual ~AboutDialog();
68
69 private:
70     AboutDialog( intf_thread_t * );
71     static AboutDialog *instance;
72 public slots:
73     void close();
74 };
75
76 #ifdef UPDATE_CHECK
77
78 class UpdateDialog : public QVLCFrame
79 {
80     Q_OBJECT;
81 public:
82     static UpdateDialog * getInstance( intf_thread_t *p_intf )
83     {
84         if( !instance )
85             instance = new UpdateDialog( p_intf );
86         return instance;
87     }
88     virtual ~UpdateDialog();
89     void updateNotify();
90
91 private:
92     UpdateDialog( intf_thread_t * );
93     static UpdateDialog *instance;
94     update_t *p_update;
95     QPushButton *updateButton;
96     QLabel *updateLabel;
97     void customEvent( QEvent * );
98     bool b_checked;
99
100 private slots:
101     void close();
102     void UpdateOrDownload();
103 };
104 #endif
105
106 #endif