sl@0: // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: sl@0: #include "testlauncherappView.h" sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: sl@0: CHelloWorldBasicAppView* CHelloWorldBasicAppView::NewL( const TRect& aRect ) sl@0: { sl@0: CHelloWorldBasicAppView* self = CHelloWorldBasicAppView::NewLC( aRect ); sl@0: CleanupStack::Pop( self ); sl@0: return self; sl@0: } sl@0: sl@0: CHelloWorldBasicAppView* CHelloWorldBasicAppView::NewLC( const TRect& aRect ) sl@0: { sl@0: CHelloWorldBasicAppView* self = new (ELeave) CHelloWorldBasicAppView; sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(aRect); sl@0: return self; sl@0: } sl@0: sl@0: void CHelloWorldBasicAppView::ConstructL(const TRect& aRect) sl@0: { sl@0: TFontSpec fs(_L("Courier"), 16); sl@0: CWsScreenDevice* scr = CEikonEnv::Static()->ScreenDevice(); sl@0: User::LeaveIfError(scr->GetNearestFontInPixels(iFont, fs)); sl@0: sl@0: // Create a window for this application view sl@0: CreateWindowL(); sl@0: sl@0: // Set the windows size sl@0: SetRect(aRect); sl@0: sl@0: // Activate the window, which makes it ready to be drawn sl@0: ActivateL(); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CHelloWorldBasicAppView::CHelloWorldBasicAppView() sl@0: // C++ default constructor can NOT contain any code, that might leave. sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: CHelloWorldBasicAppView::CHelloWorldBasicAppView(): iDir(1) sl@0: { sl@0: // No implementation required sl@0: } sl@0: sl@0: CHelloWorldBasicAppView::~CHelloWorldBasicAppView() sl@0: { sl@0: CWsScreenDevice* scr = CEikonEnv::Static()->ScreenDevice(); sl@0: scr->ReleaseFont(iFont); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CHelloWorldBasicAppView::Draw() sl@0: // Draws the display. sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CHelloWorldBasicAppView::Draw( const TRect& /*aRect*/ ) const sl@0: { sl@0: CWindowGc& gc = SystemGc(); sl@0: _LIT(KMsgP1, "This application enables you to launch "); sl@0: _LIT(KMsgP2, "tests using testexecute."); sl@0: gc.Clear(); sl@0: gc.UseFont(iFont); sl@0: gc.DrawText(KMsgP1, TPoint(10,20)); sl@0: gc.DrawText(KMsgP2, TPoint(10,35)); sl@0: gc.DiscardFont(); sl@0: }