diff -r 000000000000 -r f979ecb2b13e calendarui/views/inc/calenmonthcelllistboxdata.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/calendarui/views/inc/calenmonthcelllistboxdata.h Tue Feb 02 10:12:19 2010 +0200 @@ -0,0 +1,92 @@ +/* +* Copyright (c) 2002 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: Drawing Cell of Month View of calendar application. + * +*/ + + + +#ifndef CALENMONTHCELLLISTBOXDATA_H +#define CALENMONTHCELLLISTBOXDATA_H + +// INCLUDES +#include + +// CLASS DECLARATION + +/** + * Drawing Cell of Month View of calendar application + */ +NONSHARABLE_CLASS( CCalenMonthCellListBoxData ) : public CFormattedCellListBoxData + { +public: // Constructors and destructor + /** + * Two-phased constructor. + */ + static CCalenMonthCellListBoxData* NewL(); + + /** + * Destructor. + */ + virtual ~CCalenMonthCellListBoxData(); + +private: // Constructors and destructor + /** + * C++ default constructor. + */ + CCalenMonthCellListBoxData(); + +private: // new function + /** + * Draw date and bitmap of Month Grid . + * @param aProperties Item margin, etc... + * @param aGc Graphic context + * @param aText Drawing text + * @param aItemRect item rect + * @param aColors Drawing colors + */ + void DrawFormatted(TListItemProperties aProperties, + CWindowGc& aGc, const TDesC* aText, + const TRect& aItemRect, TBool aHighlight, + const TColors& aColors) const; + /** + * an ordinal number of last subcell of cell + * @return 2(constant) + */ + TInt LastSubCell() const; + +private: // From CFormattedCellListBoxData + /** + * From CFormattedCellListBoxData Draw a cell of Month Grid + * @param aProperties Item margin, etc... + * @param aGc Graphic context + * @param aText Drawing text + * @param aItemRect item rect + * @param aColors Drawing colors + */ + void Draw(TListItemProperties aProperties, + CWindowGc& aGc, const TDesC* aText, + const TRect& aRect, TBool aHighlight, + const TColors& aColors) const; + +private: // new data + + TBool iSkinHighlightDrawn; + + }; + +#endif // CALENMONTHCELLLISTBOXDATA_H + + +// End of File