]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/epg.hpp
Drop trailing semicolons
[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 EPGEvent;
32 class EPGWidget;
33 class EpgDialog : public QVLCFrame, public Singleton<EpgDialog>
34 {
35     Q_OBJECT
36 private:
37     EpgDialog( intf_thread_t * );
38     virtual ~EpgDialog();
39
40     EPGWidget *epg;
41     QLabel *description;
42     QLabel *title;
43
44     friend class    Singleton<EpgDialog>;
45
46 private slots:
47     void showEvent( EPGEvent * );
48     void updateInfos();
49 };
50
51 #endif
52