Update contrib.
1 // Copyright (c) 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.
17 #include "testlauncherappView.h"
24 CHelloWorldBasicAppView* CHelloWorldBasicAppView::NewL( const TRect& aRect )
26 CHelloWorldBasicAppView* self = CHelloWorldBasicAppView::NewLC( aRect );
27 CleanupStack::Pop( self );
31 CHelloWorldBasicAppView* CHelloWorldBasicAppView::NewLC( const TRect& aRect )
33 CHelloWorldBasicAppView* self = new (ELeave) CHelloWorldBasicAppView;
34 CleanupStack::PushL(self);
35 self->ConstructL(aRect);
39 void CHelloWorldBasicAppView::ConstructL(const TRect& aRect)
41 TFontSpec fs(_L("Courier"), 16);
42 CWsScreenDevice* scr = CEikonEnv::Static()->ScreenDevice();
43 User::LeaveIfError(scr->GetNearestFontInPixels(iFont, fs));
45 // Create a window for this application view
48 // Set the windows size
51 // Activate the window, which makes it ready to be drawn
55 // -----------------------------------------------------------------------------
56 // CHelloWorldBasicAppView::CHelloWorldBasicAppView()
57 // C++ default constructor can NOT contain any code, that might leave.
58 // -----------------------------------------------------------------------------
60 CHelloWorldBasicAppView::CHelloWorldBasicAppView(): iDir(1)
62 // No implementation required
65 CHelloWorldBasicAppView::~CHelloWorldBasicAppView()
67 CWsScreenDevice* scr = CEikonEnv::Static()->ScreenDevice();
68 scr->ReleaseFont(iFont);
72 // -----------------------------------------------------------------------------
73 // CHelloWorldBasicAppView::Draw()
75 // -----------------------------------------------------------------------------
77 void CHelloWorldBasicAppView::Draw( const TRect& /*aRect*/ ) const
79 CWindowGc& gc = SystemGc();
80 _LIT(KMsgP1, "This application enables you to launch ");
81 _LIT(KMsgP2, "tests using testexecute.");
84 gc.DrawText(KMsgP1, TPoint(10,20));
85 gc.DrawText(KMsgP2, TPoint(10,35));