]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/help.hpp
fix filename self-references
[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 #include "ui/about.h"
36 #include "ui/update.h"
37
38 class QEvent;
39
40 class HelpDialog : public QVLCFrame, public Singleton<HelpDialog>
41 {
42     Q_OBJECT
43 private:
44     HelpDialog( intf_thread_t * );
45     virtual ~HelpDialog();
46
47 public slots:
48     virtual void close() { toggleVisible(); }
49
50     friend class    Singleton<HelpDialog>;
51 };
52
53 class AboutDialog : public QVLCDialog, public Singleton<AboutDialog>
54 {
55     Q_OBJECT
56 private:
57     AboutDialog( intf_thread_t * );
58     Ui::aboutWidget ui;
59
60 public slots:
61     virtual void close() { toggleVisible(); }
62
63     friend class    Singleton<AboutDialog>;
64 };
65
66 #ifdef UPDATE_CHECK
67
68 static const int UDOkEvent = QEvent::User + DialogEventType + 21;
69 static const int UDErrorEvent = QEvent::User + DialogEventType + 22;
70
71 class UpdateDialog : public QVLCFrame, public Singleton<UpdateDialog>
72 {
73     Q_OBJECT
74 public:
75     void updateNotify( bool );
76
77 private:
78     UpdateDialog( intf_thread_t * );
79     virtual ~UpdateDialog();
80
81     Ui::updateWidget ui;
82     update_t *p_update;
83     void customEvent( QEvent * );
84     bool b_checked;
85
86 private slots:
87     virtual void close() { toggleVisible(); }
88
89     void UpdateOrDownload();
90
91     friend class    Singleton<UpdateDialog>;
92 };
93 #endif
94
95 #endif