diff -r 41a7f70b3818 -r 5266b1f337bd phoneuis/BubbleManager/Src/BMBubbleImage.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/phoneuis/BubbleManager/Src/BMBubbleImage.cpp Wed Sep 01 12:30:10 2010 +0100 @@ -0,0 +1,93 @@ +/* +* Copyright (c) 2003-2005 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: CEikImage wrapper. +* +*/ + + +// INCLUDE FILES +#include "BMBubbleImage.h" //definition +#include +#include + +// ========================= MEMBER FUNCTIONS ================================ + +// --------------------------------------------------------------------------- +// CBubbleImage::CBubbleImage +// --------------------------------------------------------------------------- +// +CBubbleImage::CBubbleImage() +: iIsBackgroundImage ( EFalse ) + { + } + +// Destructor +CBubbleImage::~CBubbleImage() + { + AknsUtils::DeregisterControlPosition( this ); + } + +// --------------------------------------------------------------------------- +// CBubbleImage::SetAsBackgroundImage +// Set the image as background image +// +// --------------------------------------------------------------------------- +// +void CBubbleImage::SetAsBackgroundImage( TBool aIsBackground ) + { + iIsBackgroundImage = aIsBackground; + } + +// --------------------------------------------------------------------------- +// CBubbleImage::SizeChanged +// called by framework when the view size is changed +// +// --------------------------------------------------------------------------- +// +void CBubbleImage::SizeChanged() + { + AknsUtils::RegisterControlPosition( this ); + + if ( this->Bitmap() ) + { + if ( iIsBackgroundImage ) + { + // For background call bubble graphic, + // aspect ratio can not be preserved. + AknIconUtils::SetSize( + const_cast ( this->Bitmap() ), + Rect().Size(), EAspectRatioNotPreserved ); + } + else + { + AknIconUtils::SetSize( + const_cast ( this->Bitmap() ), + Rect().Size() ); + } + } + + CEikImage::SizeChanged(); + } + +// --------------------------------------------------------------------------- +// CBubbleImage::PositionChanged +// --------------------------------------------------------------------------- +// +void CBubbleImage::PositionChanged() + { + AknsUtils::RegisterControlPosition( this ); + CEikImage::PositionChanged(); + } + +// End of File