]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/epg.hpp
Merge branch 'master' into lpcm_encoder
[vlc] / modules / gui / qt4 / dialogs / epg.hpp
1 /*****************************************************************************
2  * epg.cpp : EPG Viewer dialog
3  ****************************************************************************
4  * Copyright © 2010 VideoLAN and AUTHORS
5  *
6  * Authors:    Jean-Baptiste Kempf <jb@videolan.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22
23 #ifndef QVLC_EPG_DIALOG_H_
24 #define QVLC_EPG_DIALOG_H_ 1
25
26 #include "util/qvlcframe.hpp"
27
28 #include "util/singleton.hpp"
29
30 class QLabel;
31 class QTextEdit;
32 class EPGEvent;
33 class EPGWidget;
34
35 class EpgDialog : public QVLCFrame, public Singleton<EpgDialog>
36 {
37     Q_OBJECT
38 private:
39     EpgDialog( intf_thread_t * );
40     virtual ~EpgDialog();
41
42     EPGWidget *epg;
43     QTextEdit *description;
44     QLabel *title;
45
46     friend class    Singleton<EpgDialog>;
47
48 private slots:
49     void showEvent( EPGEvent * );
50     void updateInfos();
51 };
52
53 #endif
54