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