Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
25 #include "t_pseudoappeng.h"
26 #include "t_pseudoappview.h"
29 * Private constructor, does nothing
32 CPseudoAppView::CPseudoAppView()
37 * Standard 2 phase construction, constructs a View object
38 * @return pointer to the CPseudoAppView
39 * @param aRect - rectangle coordinate defining control's extent
41 CPseudoAppView* CPseudoAppView::NewL(const TRect& aRect)
43 CPseudoAppView* self = new(ELeave) CPseudoAppView();
44 CleanupStack::PushL(self);
45 self->ConstructL(aRect);
54 CPseudoAppView::~CPseudoAppView()
64 * @param aRect - rectangle coordinate defining control's extent
67 void CPseudoAppView::ConstructL(const TRect& aRect)
72 Window().SetBackgroundColor(KRgbBlack);
73 iEng = CTPseudoAppEng::NewL(iEikonEnv->WsSession(), *(CCoeEnv::Static()->ScreenDevice()), Window());
80 * Draws the text on the screen
83 void CPseudoAppView::Draw(const TRect& /*aRect*/) const
90 TRAPD(err,iEng->StartDrawingL());
93 RDebug::Print(_L("StartDrawingL() trapped with error %d\n"), err);
98 void CPseudoAppView::RotateL()