]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/epg/EPGWidget.hpp
358c8562478921761e185f6f1785863be3627e34
[vlc] / modules / gui / qt4 / components / epg / EPGWidget.hpp
1 /*****************************************************************************
2  * EPGWidget.h : EPGWidget
3  ****************************************************************************
4  * Copyright © 2009-2010 VideoLAN
5  * $Id$
6  *
7  * Authors: Ludovic Fauvet <etix@l0cal.com>
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 Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #ifndef EPGWIDGET_H
25 #define EPGWIDGET_H
26
27 #include "EPGView.hpp"
28 #include "EPGEvent.hpp"
29 #include "EPGRuler.hpp"
30
31 #include <vlc_common.h>
32 #include <vlc_epg.h>
33
34 #include <QWidget>
35 #include <QMultiMap>
36
37 class QDateTime;
38 class QLabel;
39
40 class ChannelsWidget : public QWidget
41 {
42     Q_OBJECT
43 public:
44     explicit ChannelsWidget( QWidget* parent = 0 );
45 };
46
47 class EPGWidget : public QWidget
48 {
49     Q_OBJECT
50 public:
51     explicit EPGWidget( QWidget* parent = 0 );
52
53 public slots:
54     void setZoom( int level );
55     void updateEPG( vlc_epg_t **pp_epg, int i_epg );
56
57 private:
58     ChannelsWidget* m_channelsWidget;
59     EPGRuler* m_rulerWidget;
60     EPGView* m_epgView;
61     QLabel* m_description;
62
63     QMultiMap<QString, EPGEvent*> m_events;
64 };
65
66 #endif // EPGWIDGET_H