os/graphics/windowing/windowserver/stdgraphic/BITMAPGRAPHICDRAWER.CPP
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include "stdgraphicdrawer.h"
sl@0
    17
#include "wsgraphicdrawercontext.h"
sl@0
    18
#include <s32mem.h>
sl@0
    19
#include <fbs.h>
sl@0
    20
sl@0
    21
CWsGraphicDrawerBitmap* CWsGraphicDrawerBitmap::CreateL()
sl@0
    22
	{
sl@0
    23
	return new(ELeave) CWsGraphicDrawerBitmap;
sl@0
    24
	}
sl@0
    25
	
sl@0
    26
void CWsGraphicDrawerBitmap::ConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner,const TDesC8& aData)
sl@0
    27
	{
sl@0
    28
	TInt bitmapHandle = 0;
sl@0
    29
	TInt maskHandle = 0;
sl@0
    30
	RDesReadStream in(aData);
sl@0
    31
	in.PushL();
sl@0
    32
	bitmapHandle = in.ReadInt32L();
sl@0
    33
	maskHandle = in.ReadInt32L();
sl@0
    34
	in.Pop();
sl@0
    35
	BaseConstructL(aEnv,aId,aOwner);
sl@0
    36
	if(bitmapHandle)
sl@0
    37
		{
sl@0
    38
		iBitmap = new(ELeave) CFbsBitmap;
sl@0
    39
		User::LeaveIfError(iBitmap->Duplicate(bitmapHandle));
sl@0
    40
		if(maskHandle)
sl@0
    41
			{
sl@0
    42
			iMask = new(ELeave) CFbsBitmap;
sl@0
    43
			User::LeaveIfError(iMask->Duplicate(maskHandle));
sl@0
    44
			}
sl@0
    45
		}
sl@0
    46
	if (!(aEnv.Screen(0)->ResolveObjectInterface(KMWsCompositionContext) || aEnv.Screen(0)->ResolveObjectInterface(KMWsScene)))
sl@0
    47
		{
sl@0
    48
		iContext = CWsGraphicDrawerNonNgaContext::NewL();
sl@0
    49
		}
sl@0
    50
	else
sl@0
    51
		{
sl@0
    52
		iContext = CWsGraphicDrawerNgaContext::NewL();
sl@0
    53
		}
sl@0
    54
	}
sl@0
    55
	
sl@0
    56
CWsGraphicDrawerBitmap::CWsGraphicDrawerBitmap()
sl@0
    57
	{
sl@0
    58
	}
sl@0
    59
	
sl@0
    60
CWsGraphicDrawerBitmap::~CWsGraphicDrawerBitmap()
sl@0
    61
	{
sl@0
    62
	if (iContext)
sl@0
    63
		{
sl@0
    64
		iContext->Destroy();
sl@0
    65
		iContext = NULL;
sl@0
    66
		}
sl@0
    67
	delete iBitmap;
sl@0
    68
	delete iMask;
sl@0
    69
	}
sl@0
    70
sl@0
    71
void CWsGraphicDrawerBitmap::DoDraw(MWsGc& aGc,const TRect& aRect,const TDesC8& /*aData*/) const
sl@0
    72
	{
sl@0
    73
	if (iBitmap)
sl@0
    74
		{
sl@0
    75
		if (KErrNone != iContext->Push(aGc))
sl@0
    76
			{
sl@0
    77
			return;
sl@0
    78
			}
sl@0
    79
		TRect bmpRect(aRect.iTl,iBitmap->SizeInPixels());
sl@0
    80
		bmpRect.Intersection(aRect);
sl@0
    81
		iContext->DrawBitmap(aGc, aRect.iTl, iBitmap, bmpRect.Size(), iMask);
sl@0
    82
		iContext->Pop(aGc);
sl@0
    83
		}
sl@0
    84
	}
sl@0
    85
	
sl@0
    86
void CWsGraphicDrawerBitmap::HandleMessage(const TDesC8& /*aData*/)
sl@0
    87
	{
sl@0
    88
	}
sl@0
    89