os/graphics/windowing/windowserver/test/tcontaindrawer/simpledrawer.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) 2007-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
/**
sl@0
    17
 @file
sl@0
    18
 @test
sl@0
    19
 @internalComponent - Internal Symbian test code
sl@0
    20
*/
sl@0
    21
sl@0
    22
#include "simpledrawer.h"
sl@0
    23
#include "wsgraphicdrawercontext.h"
sl@0
    24
#include <s32mem.h>
sl@0
    25
#include <s32strm.h>
sl@0
    26
sl@0
    27
// CWsGraphicDrawer	
sl@0
    28
CWsSimpleGraphicDrawer* CWsSimpleGraphicDrawer::NewL()
sl@0
    29
	{
sl@0
    30
	return new(ELeave) CWsSimpleGraphicDrawer;	
sl@0
    31
	}
sl@0
    32
	
sl@0
    33
CWsSimpleGraphicDrawer::~CWsSimpleGraphicDrawer()
sl@0
    34
	{
sl@0
    35
	if (iContext)
sl@0
    36
		{
sl@0
    37
		iContext->Destroy();
sl@0
    38
		iContext = NULL;
sl@0
    39
		}
sl@0
    40
	}
sl@0
    41
sl@0
    42
void CWsSimpleGraphicDrawer::ConstructL(MWsGraphicDrawerEnvironment& aEnv, const TGraphicDrawerId& aId, MWsClient& aOwner, const TDesC8& /*aData*/)
sl@0
    43
	{
sl@0
    44
	BaseConstructL(aEnv, aId, aOwner);
sl@0
    45
 	// default color
sl@0
    46
	iColor = KRgbBlue;
sl@0
    47
 	}
sl@0
    48
sl@0
    49
void CWsSimpleGraphicDrawer::HandleMessage(const TDesC8& aData)
sl@0
    50
	{
sl@0
    51
	TInt red = aData[0];
sl@0
    52
	TInt green = aData[1];
sl@0
    53
	TInt blue = aData[2];
sl@0
    54
	TRgb color(red, green, blue);
sl@0
    55
	DoUpdateColor(color);
sl@0
    56
	}
sl@0
    57
sl@0
    58
void CWsSimpleGraphicDrawer::BaseConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner)
sl@0
    59
	{
sl@0
    60
	CWsGraphicDrawer::BaseConstructL(aEnv, aId, aOwner);
sl@0
    61
	if (!(aEnv.Screen(0)->ResolveObjectInterface(KMWsCompositionContext) || aEnv.Screen(0)->ResolveObjectInterface(KMWsScene)))
sl@0
    62
		{
sl@0
    63
		iContext = CWsGraphicDrawerNonNgaContext::NewL();
sl@0
    64
		}
sl@0
    65
	else
sl@0
    66
		{
sl@0
    67
		iContext = CWsGraphicDrawerNgaContext::NewL();
sl@0
    68
		}
sl@0
    69
	}
sl@0
    70
sl@0
    71
void CWsSimpleGraphicDrawer::DoUpdateColor(TRgb aColor)
sl@0
    72
	{
sl@0
    73
	iColor = aColor;
sl@0
    74
	// Invalidate the redrawing
sl@0
    75
	Invalidate();
sl@0
    76
	}
sl@0
    77
sl@0
    78
void CWsSimpleGraphicDrawer::DoDraw(MWsGc& aGc, const TRect& aRect, const TDesC8& /*aData*/) const
sl@0
    79
	{
sl@0
    80
	iContext->DrawEllipse(aGc, aRect, iColor);
sl@0
    81
	}
sl@0
    82
	
sl@0
    83
// First contained (child) drawer
sl@0
    84
CWsInvisibleGraphicDrawer1* CWsInvisibleGraphicDrawer1::NewL()
sl@0
    85
	{
sl@0
    86
	return new(ELeave) CWsInvisibleGraphicDrawer1;	
sl@0
    87
	}
sl@0
    88
	
sl@0
    89
CWsInvisibleGraphicDrawer1::~CWsInvisibleGraphicDrawer1()
sl@0
    90
	{
sl@0
    91
	}
sl@0
    92
sl@0
    93
void CWsInvisibleGraphicDrawer1::ConstructL(MWsGraphicDrawerEnvironment& aEnv, const TGraphicDrawerId& aId, MWsClient& aOwner, const TDesC8& /*aData*/)
sl@0
    94
	{
sl@0
    95
	BaseConstructL(aEnv, aId, aOwner);
sl@0
    96
	// default color
sl@0
    97
	iColor = KRgbYellow;
sl@0
    98
	}
sl@0
    99
sl@0
   100
// Second contained (child) drawer
sl@0
   101
CWsInvisibleGraphicDrawer2* CWsInvisibleGraphicDrawer2::NewL()
sl@0
   102
	{
sl@0
   103
	return new(ELeave) CWsInvisibleGraphicDrawer2;	
sl@0
   104
	}
sl@0
   105
	
sl@0
   106
CWsInvisibleGraphicDrawer2::~CWsInvisibleGraphicDrawer2()
sl@0
   107
	{
sl@0
   108
	}
sl@0
   109
sl@0
   110
void CWsInvisibleGraphicDrawer2::ConstructL(MWsGraphicDrawerEnvironment& aEnv, const TGraphicDrawerId& aId, MWsClient& aOwner, const TDesC8& /*aData*/)
sl@0
   111
	{
sl@0
   112
	BaseConstructL(aEnv, aId, aOwner);
sl@0
   113
	// default color
sl@0
   114
	iColor = KRgbCyan;
sl@0
   115
	}