phoneuis/BubbleManager/Src/BMBubbleImage.cpp
author Pat Downey <patd@symbian.org>
Wed, 01 Sep 2010 12:30:10 +0100
branchRCL_3
changeset 62 5266b1f337bd
parent 0 5f000ab63145
permissions -rw-r--r--
Revert incorrect RCL_3 drop: Revision: 201033 Kit: 201035

/*
* 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