diff -r 000000000000 -r 2f259fa3e83a uifw/ganes/inc/HgVgLabel.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/uifw/ganes/inc/HgVgLabel.h Tue Feb 02 01:00:49 2010 +0200 @@ -0,0 +1,97 @@ +/* +* Copyright (c) 2009 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: +* +*/ + +#ifndef HGVGLABEL_H_ +#define HGVGLABEL_H_ + +// INCLUDES +#include +#include +#include +#include + + +// FORWARD DECLARATIONS +class CHgVgDrawBuffer; +class CFont; + +/** + * Helper class for rendering titles to media wall + */ +NONSHARABLE_CLASS(CHgVgLabel) : CBase + { +public: + + /** + * Creates new CHgVgLabel + * + * @param aRect Rectangle of the drawing area. + * @return HgVgLabel-object. + */ + static CHgVgLabel* NewL (const TRect& aRect, const CFont* aFont, const TDesC& aText=KNullDesC); + + // Destructor. + virtual ~CHgVgLabel(); + +public: // Methods + + void SetTextL(const TDesC& aText); + + void SetFont(const CFont* aFont); + + void SetColor(const TRgb& aColor); + + void SetShadowColor(const TRgb& aColor); + + void Draw(const TRect& aWindowRect, TReal aAlpha=1.0); + + void SetLayout(const TAknTextComponentLayout& aLayout, const TRect& aParentRect); + + void DrawEmptyText(const TRect& aClientRect, const TDesC& aText); + +protected: // Constructors + + CHgVgLabel(const TRect& aRect, const CFont* aFont); + + void ConstructL (const TDesC& aText); + + void Update(); + +private: // Data + + TRect iRect; + + const CFont* iFont; + + HBufC* iText; // Item title. Own + + CHgVgDrawBuffer* iTextRenderer; // used to renrer text to bit gc, owns + + TRgb iTextColor; + + TRgb iShadowColor; + + VGImage iTextImage; // image containing texts, owns + + TBool iDirty; + + TAknTextComponentLayout iLayout; + + TRect iParentRect; + }; + +#endif /* HGVGLABEL */