]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/epg/EPGItem.hpp
7a1c3b511360b63335ac2d6e58d6065f44858eee
[vlc] / modules / gui / qt4 / components / epg / EPGItem.hpp
1 /*****************************************************************************
2  * EPGItem.h : EPGItem
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 EPGITEM_H
25 #define EPGITEM_H
26
27 #include <QObject>
28 #include <QGraphicsItem>
29
30 class QPainter;
31 class QString;
32 class QDateTime;
33
34 class EPGView;
35
36 class EPGItem : public QObject, public QGraphicsItem
37 {
38 public:
39     EPGItem( EPGView *view );
40     virtual ~EPGItem() { }
41
42     virtual QRectF boundingRect() const;
43     virtual void paint( QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0 );
44
45     const QDateTime& start() const;
46
47     int duration() const;
48
49     void setChannel( int channelNb );
50     void setStart( const QDateTime& start );
51     void setDuration( int duration );
52     void setName( const QString& name );
53     void setDescription( const QString& description );
54     void setShortDescription( const QString& shortDescription );
55     void setCurrent( bool current );
56
57 private:
58     EPGView     *m_view;
59     QRectF      m_boundingRect;
60     int         m_channelNb;
61
62     QDateTime   m_start;
63     int         m_duration;
64     QString     m_name;
65     QString     m_description;
66     QString     m_shortDescription;
67     bool        m_current;
68 };
69
70 #endif // EPGITEM_H