diff -r 96907930389d -r 12af337248b1 calendarui/views/dayview/inc/calendayitem.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/calendarui/views/dayview/inc/calendayitem.h Tue Aug 31 15:13:43 2010 +0300 @@ -0,0 +1,67 @@ +/* +* 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 CALENDAYITEM_H +#define CALENDAYITEM_H + +//System includes +#include +#include +#include +#include + +//Forward declarations +class AgendaEntry; +class CalenDayStatusStrip; +class CalenDayContainer; + + +class CalenDayItem : public HbAbstractViewItem +{ + Q_OBJECT + Q_PROPERTY( bool eventDescription READ hasEventDescription ) + Q_PROPERTY( bool backgroundFrame READ hasBackgroundFrame ) + +public: + CalenDayItem(const CalenDayContainer *container); + virtual ~CalenDayItem(); + HbAbstractViewItem * createItem(); + void updateChildItems(); + bool hasEventDescription() const { return mEventDesc->isVisible(); } + bool hasBackgroundFrame() const { return mBg->isVisible(); } + const CalenDayContainer *container() const { return mContainer; } + +protected: + void resizeEvent(QGraphicsSceneResizeEvent *event); + +private: + CalenDayItem(const CalenDayItem &source); + void setDescription(const AgendaEntry &entry, bool allDayEvent); + void setStatusStrip(const AgendaEntry &entry, bool allDayEvent); + + bool mUpdated; + qreal mEventDescMinWidth; + qreal mFrameMinWidth; + + HbFrameItem *mBg; + HbTextItem *mEventDesc; + + CalenDayStatusStrip *mColorStripe; + const CalenDayContainer *mContainer; +}; + +#endif // CALENDAYITEM_H