]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/epg/EPGWidget.hpp
epg: narrow input lock
[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 "EPGItem.hpp"
29 #include "EPGRuler.hpp"
30 #include "EPGChannels.hpp"
31
32 #include <vlc_common.h>
33 #include <vlc_epg.h>
34
35 #include <QWidget>
36 #include <QStackedWidget>
37
38 class QDateTime;
39
40 class EPGWidget : public QWidget
41 {
42     Q_OBJECT
43 public:
44     explicit EPGWidget( QWidget* parent = 0 );
45     void reset();
46
47 public slots:
48     void setZoom( int level );
49     void updateEPG( input_item_t * );
50
51 private:
52     EPGRuler* m_rulerWidget;
53     EPGView* m_epgView;
54     EPGChannels *m_channelsWidget;
55     QStackedWidget *rootWidget;
56
57     uint8_t i_event_source_type;
58     bool b_input_type_known;
59
60 signals:
61     void itemSelectionChanged( EPGItem * );
62 };
63
64 #endif // EPGWIDGET_H