]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/epg/EPGWidget.hpp
Qt EPG: design and functionnalities improvements
[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
39 class ChannelsWidget : public QWidget
40 {
41     Q_OBJECT
42 public:
43     explicit ChannelsWidget( QWidget* parent = 0 );
44 };
45
46 class EPGWidget : public QWidget
47 {
48     Q_OBJECT
49 public:
50     explicit EPGWidget( QWidget* parent = 0 );
51
52 public slots:
53     void setZoom( int level );
54     void updateEPG( vlc_epg_t **pp_epg, int i_epg );
55
56 private:
57     ChannelsWidget* m_channelsWidget;
58     EPGRuler* m_rulerWidget;
59     EPGView* m_epgView;
60
61     QMultiMap<QString, EPGEvent*> m_events;
62
63 signals:
64     void descriptionChanged( const QString& );
65 };
66
67 #endif // EPGWIDGET_H