diff -r 000000000000 -r 5f000ab63145 phoneplugins/telbranding/inc/telbrandingcallindicator.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/phoneplugins/telbranding/inc/telbrandingcallindicator.h Mon Jan 18 20:18:27 2010 +0200 @@ -0,0 +1,95 @@ +/* +* 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: Branding plug-in specific call indication. +* +*/ + +#ifndef C_CTELBRANDINGCALLINDICATOR_H +#define C_CTELBRANDINGCALLINDICATOR_H + +#include + +class MTelBubbleExtensionData; +class TAknsItemID; + + +/** + * Branding plug-in specific call indication. + * + * @since S60 S60 v5.0 + */ +NONSHARABLE_CLASS( CTelBrandingCallIndicator ) : + public CTelBubbleAnim + { +public: + /** + * Constructors. + */ + static CTelBrandingCallIndicator* NewL( + MTelBubbleExtensionData& aCallData, CEikImage* aBrand ); + static CTelBrandingCallIndicator* NewLC( + MTelBubbleExtensionData& aCallData, CEikImage* aBrand ); + + /** + * Destructor. + */ + virtual ~CTelBrandingCallIndicator(); + +public: // From CCoeControl + void MakeVisible( TBool aVisible ); + void Draw(const TRect& aRect) const; + void SizeChanged(); + +private: // New functions + void DoVisibleL(); + + void ShowAnimationL(); + + void ShowImageL(); + + void AddBrandedFrameToAnimationL( + TAknsItemID aSkinId, + TInt aBitmap, + TInt aMask ); + + CEikImage* GetImageL( + TAknsItemID aSkinId, + TInt aBitmap, + TInt aMask ); + + +private: + CTelBrandingCallIndicator( + MTelBubbleExtensionData& aCallData, CEikImage* aBrand ); + + void ConstructL(); + +private: // data + // Call information + MTelBubbleExtensionData& iCallData; + + /** + * Brand image + * Own. + */ + CEikImage* iBrand; + + /** + * Call indicator image + * Own. + */ + CEikImage* iCallIndicator; + }; + +#endif // C_CTELBRANDINGCALLINDICATOR_H