1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/tcontaindrawer/simpledrawer.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,115 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +/**
1.20 + @file
1.21 + @test
1.22 + @internalComponent - Internal Symbian test code
1.23 +*/
1.24 +
1.25 +#include "simpledrawer.h"
1.26 +#include "wsgraphicdrawercontext.h"
1.27 +#include <s32mem.h>
1.28 +#include <s32strm.h>
1.29 +
1.30 +// CWsGraphicDrawer
1.31 +CWsSimpleGraphicDrawer* CWsSimpleGraphicDrawer::NewL()
1.32 + {
1.33 + return new(ELeave) CWsSimpleGraphicDrawer;
1.34 + }
1.35 +
1.36 +CWsSimpleGraphicDrawer::~CWsSimpleGraphicDrawer()
1.37 + {
1.38 + if (iContext)
1.39 + {
1.40 + iContext->Destroy();
1.41 + iContext = NULL;
1.42 + }
1.43 + }
1.44 +
1.45 +void CWsSimpleGraphicDrawer::ConstructL(MWsGraphicDrawerEnvironment& aEnv, const TGraphicDrawerId& aId, MWsClient& aOwner, const TDesC8& /*aData*/)
1.46 + {
1.47 + BaseConstructL(aEnv, aId, aOwner);
1.48 + // default color
1.49 + iColor = KRgbBlue;
1.50 + }
1.51 +
1.52 +void CWsSimpleGraphicDrawer::HandleMessage(const TDesC8& aData)
1.53 + {
1.54 + TInt red = aData[0];
1.55 + TInt green = aData[1];
1.56 + TInt blue = aData[2];
1.57 + TRgb color(red, green, blue);
1.58 + DoUpdateColor(color);
1.59 + }
1.60 +
1.61 +void CWsSimpleGraphicDrawer::BaseConstructL(MWsGraphicDrawerEnvironment& aEnv,const TGraphicDrawerId& aId,MWsClient& aOwner)
1.62 + {
1.63 + CWsGraphicDrawer::BaseConstructL(aEnv, aId, aOwner);
1.64 + if (!(aEnv.Screen(0)->ResolveObjectInterface(KMWsCompositionContext) || aEnv.Screen(0)->ResolveObjectInterface(KMWsScene)))
1.65 + {
1.66 + iContext = CWsGraphicDrawerNonNgaContext::NewL();
1.67 + }
1.68 + else
1.69 + {
1.70 + iContext = CWsGraphicDrawerNgaContext::NewL();
1.71 + }
1.72 + }
1.73 +
1.74 +void CWsSimpleGraphicDrawer::DoUpdateColor(TRgb aColor)
1.75 + {
1.76 + iColor = aColor;
1.77 + // Invalidate the redrawing
1.78 + Invalidate();
1.79 + }
1.80 +
1.81 +void CWsSimpleGraphicDrawer::DoDraw(MWsGc& aGc, const TRect& aRect, const TDesC8& /*aData*/) const
1.82 + {
1.83 + iContext->DrawEllipse(aGc, aRect, iColor);
1.84 + }
1.85 +
1.86 +// First contained (child) drawer
1.87 +CWsInvisibleGraphicDrawer1* CWsInvisibleGraphicDrawer1::NewL()
1.88 + {
1.89 + return new(ELeave) CWsInvisibleGraphicDrawer1;
1.90 + }
1.91 +
1.92 +CWsInvisibleGraphicDrawer1::~CWsInvisibleGraphicDrawer1()
1.93 + {
1.94 + }
1.95 +
1.96 +void CWsInvisibleGraphicDrawer1::ConstructL(MWsGraphicDrawerEnvironment& aEnv, const TGraphicDrawerId& aId, MWsClient& aOwner, const TDesC8& /*aData*/)
1.97 + {
1.98 + BaseConstructL(aEnv, aId, aOwner);
1.99 + // default color
1.100 + iColor = KRgbYellow;
1.101 + }
1.102 +
1.103 +// Second contained (child) drawer
1.104 +CWsInvisibleGraphicDrawer2* CWsInvisibleGraphicDrawer2::NewL()
1.105 + {
1.106 + return new(ELeave) CWsInvisibleGraphicDrawer2;
1.107 + }
1.108 +
1.109 +CWsInvisibleGraphicDrawer2::~CWsInvisibleGraphicDrawer2()
1.110 + {
1.111 + }
1.112 +
1.113 +void CWsInvisibleGraphicDrawer2::ConstructL(MWsGraphicDrawerEnvironment& aEnv, const TGraphicDrawerId& aId, MWsClient& aOwner, const TDesC8& /*aData*/)
1.114 + {
1.115 + BaseConstructL(aEnv, aId, aOwner);
1.116 + // default color
1.117 + iColor = KRgbCyan;
1.118 + }