]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/epg/EPGView.cpp
QT/EPG: Fix EPGItem management.
[vlc] / modules / gui / qt4 / components / epg / EPGView.cpp
1 /*****************************************************************************
2  * EPGView.cpp: EPGView
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 #include "EPGView.hpp"
25 #include "EPGItem.hpp"
26
27 #include <QDateTime>
28 #include <QMatrix>
29 #include <QPaintEvent>
30 #include <QScrollBar>
31 #include <QtDebug>
32 #include <QGraphicsTextItem>
33
34 EPGView::EPGView( QWidget *parent ) : QGraphicsView( parent )
35 {
36     setContentsMargins( 0, 0, 0, 0 );
37     setFrameStyle( QFrame::Box );
38     setAlignment( Qt::AlignLeft | Qt::AlignTop );
39
40     m_startTime = QDateTime::currentDateTime();
41
42     QGraphicsScene *EPGscene = new QGraphicsScene( this );
43
44     setScene( EPGscene );
45 }
46
47 void EPGView::setScale( double scaleFactor )
48 {
49     m_scaleFactor = scaleFactor;
50     QMatrix matrix;
51     matrix.scale( scaleFactor, 1 );
52     setMatrix( matrix );
53 }
54
55 void EPGView::setStartTime( const QDateTime& startTime )
56 {
57     QList<QGraphicsItem*> itemList = items();
58
59     m_startTime = startTime;
60
61     for ( int i = 0; i < itemList.count(); ++i )
62     {
63         EPGItem* item = qgraphicsitem_cast<EPGItem*>( itemList.at( i ) );
64         if ( !item ) continue;
65         item->updatePos();
66     }
67
68     // Our start time has changed
69     emit startTimeChanged( startTime );
70 }
71
72 const QDateTime& EPGView::startTime()
73 {
74     return m_startTime;
75 }
76
77 void EPGView::addEvent( EPGEvent* event )
78 {
79     if ( !m_channels.contains( event->channelName ) )
80         m_channels.append( event->channelName );
81
82     EPGItem* item = new EPGItem( this );
83     item->setChannel( m_channels.indexOf( event->channelName ) );
84     item->setStart( event->start );
85     item->setDuration( event->duration );
86     item->setName( event->name );
87     item->setDescription( event->description );
88     item->setShortDescription( event->shortDescription );
89     item->setCurrent( event->current );
90
91     event->item = item;
92
93     scene()->addItem( item );
94 }
95
96 void EPGView::delEvent( EPGEvent* event )
97 {
98     if( event->item != NULL )
99         scene()->removeItem( event->item );
100     event->item = NULL;
101 }
102
103 void EPGView::updateDuration()
104 {
105     QDateTime lastItem;
106     QList<QGraphicsItem*> list = items();
107
108     for ( int i = 0; i < list.count(); ++i )
109     {
110         EPGItem* item = qgraphicsitem_cast<EPGItem*>( list.at( i ) );
111         if ( !item ) continue;
112         QDateTime itemEnd = item->start().addSecs( item->duration() );
113
114         if ( itemEnd > lastItem )
115             lastItem = itemEnd;
116     }
117     m_duration = m_startTime.secsTo( lastItem );
118     emit durationChanged( m_duration );
119 }
120
121 QList<QString> EPGView::getChannelList()
122 {
123     return m_channels;
124 }
125
126 void EPGView::eventFocused( EPGEvent *ev )
127 {
128     emit eventFocusedChanged( ev );
129 }