diff -r 000000000000 -r 4e1aa6a622a0 resourcemgmt/hwresourcesmgr/test/multiclient/HWRMLightTestB/src/HWRMLightTestBappview.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/resourcemgmt/hwresourcesmgr/test/multiclient/HWRMLightTestB/src/HWRMLightTestBappview.cpp Tue Feb 02 00:53:00 2010 +0200 @@ -0,0 +1,72 @@ +// Copyright (c) 2003-2009 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: +// + + + +#include + +#include "HWRMLightTestBappview.h" + +CHWRMLightTestBAppView* CHWRMLightTestBAppView::NewL(const TRect& aRect) + { + CHWRMLightTestBAppView* self = CHWRMLightTestBAppView::NewLC(aRect); + CleanupStack::Pop(self); + return self; + } + +CHWRMLightTestBAppView* CHWRMLightTestBAppView::NewLC(const TRect& aRect) + { + CHWRMLightTestBAppView* self = new (ELeave) CHWRMLightTestBAppView; + CleanupStack::PushL(self); + self->ConstructL(aRect); + return self; + } + +CHWRMLightTestBAppView::CHWRMLightTestBAppView() + { + // No implementation required + } + +CHWRMLightTestBAppView::~CHWRMLightTestBAppView() + { + // No implementation required + } + +void CHWRMLightTestBAppView::ConstructL(const TRect& aRect) + { + // Create a window for this application view + CreateWindowL(); + + // Set the windows size + SetRect(aRect); + + // Activate the window, which makes it ready to be drawn + ActivateL(); + } + +// Draw this application's view to the screen +void CHWRMLightTestBAppView::Draw(const TRect& /*aRect*/) const + { + // Get the standard graphics context + CWindowGc& gc = SystemGc(); + + // Gets the control's extent + TRect rect = Rect(); + + // Clears the screen + gc.Clear(rect); + } + +