calendarui/views/dayview/inc/calendayhourelement.h
author hgs
Mon, 09 Aug 2010 18:30:52 +0530
changeset 57 bb2d3e476f29
parent 55 2c54b51f39c4
child 81 ce92091cbd61
permissions -rw-r--r--
201031

/*
 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
 * All rights reserved.
 * This component and the accompanying materials are made available
 * under the terms of "Eclipse Public License v1.0"
 * which accompanies this distribution, and is available
 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
 *
 * Initial Contributors:
 * Nokia Corporation - initial contribution.
 *
 * Contributors:
 *
 * Description:  Day view control of calendar
 *
 */

#ifndef CALENDAYHOURELEMENT_H
#define CALENDAYHOURELEMENT_H

// System includes
#include <QTime>
#include <QPen>
#include <HbWidget>

// User includes


// Forward declarations
class CalenDayHourScrollArea;

class CalenDayHourElement : public HbWidget
{
	Q_OBJECT

public:

    CalenDayHourElement(const QTime &time, QGraphicsItem *parent = 0);
    virtual ~CalenDayHourElement();

    void setTime(const QTime &time);
    QTime time() const;

    void paint(QPainter * painter, const QStyleOptionGraphicsItem * option,
        QWidget * widget);

private:

    const CalenDayHourScrollArea *mContainer;
    QTime mHour;
    QColor mHourLineColor;
    qreal mUnitInPixels;
};

#endif // CALENDAYHOURELEMENT_H