phoneuis/BubbleManager/Src/BMBubbleImage.cpp
changeset 0 5f000ab63145
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/phoneuis/BubbleManager/Src/BMBubbleImage.cpp	Mon Jan 18 20:18:27 2010 +0200
@@ -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    <AknsUtils.h>
+#include    <AknIconUtils.h>
+
+// ========================= 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<CFbsBitmap*> ( this->Bitmap() ), 
+                Rect().Size(), EAspectRatioNotPreserved );
+            }
+        else
+            {
+            AknIconUtils::SetSize( 
+                const_cast<CFbsBitmap*> ( this->Bitmap() ), 
+                Rect().Size() );
+            }
+        }
+
+    CEikImage::SizeChanged();
+    }
+
+// ---------------------------------------------------------------------------
+// CBubbleImage::PositionChanged
+// ---------------------------------------------------------------------------
+//
+void CBubbleImage::PositionChanged()
+    {
+    AknsUtils::RegisterControlPosition( this );
+    CEikImage::PositionChanged();
+    }
+
+// End of File