sl@0
|
1 |
// Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
|
sl@0
|
17 |
#include "testlauncherappView.h"
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <coemain.h>
|
sl@0
|
20 |
#include <aknutils.h>
|
sl@0
|
21 |
#include <gdi.h>
|
sl@0
|
22 |
|
sl@0
|
23 |
|
sl@0
|
24 |
CHelloWorldBasicAppView* CHelloWorldBasicAppView::NewL( const TRect& aRect )
|
sl@0
|
25 |
{
|
sl@0
|
26 |
CHelloWorldBasicAppView* self = CHelloWorldBasicAppView::NewLC( aRect );
|
sl@0
|
27 |
CleanupStack::Pop( self );
|
sl@0
|
28 |
return self;
|
sl@0
|
29 |
}
|
sl@0
|
30 |
|
sl@0
|
31 |
CHelloWorldBasicAppView* CHelloWorldBasicAppView::NewLC( const TRect& aRect )
|
sl@0
|
32 |
{
|
sl@0
|
33 |
CHelloWorldBasicAppView* self = new (ELeave) CHelloWorldBasicAppView;
|
sl@0
|
34 |
CleanupStack::PushL(self);
|
sl@0
|
35 |
self->ConstructL(aRect);
|
sl@0
|
36 |
return self;
|
sl@0
|
37 |
}
|
sl@0
|
38 |
|
sl@0
|
39 |
void CHelloWorldBasicAppView::ConstructL(const TRect& aRect)
|
sl@0
|
40 |
{
|
sl@0
|
41 |
TFontSpec fs(_L("Courier"), 16);
|
sl@0
|
42 |
CWsScreenDevice* scr = CEikonEnv::Static()->ScreenDevice();
|
sl@0
|
43 |
User::LeaveIfError(scr->GetNearestFontInPixels(iFont, fs));
|
sl@0
|
44 |
|
sl@0
|
45 |
// Create a window for this application view
|
sl@0
|
46 |
CreateWindowL();
|
sl@0
|
47 |
|
sl@0
|
48 |
// Set the windows size
|
sl@0
|
49 |
SetRect(aRect);
|
sl@0
|
50 |
|
sl@0
|
51 |
// Activate the window, which makes it ready to be drawn
|
sl@0
|
52 |
ActivateL();
|
sl@0
|
53 |
}
|
sl@0
|
54 |
|
sl@0
|
55 |
// -----------------------------------------------------------------------------
|
sl@0
|
56 |
// CHelloWorldBasicAppView::CHelloWorldBasicAppView()
|
sl@0
|
57 |
// C++ default constructor can NOT contain any code, that might leave.
|
sl@0
|
58 |
// -----------------------------------------------------------------------------
|
sl@0
|
59 |
//
|
sl@0
|
60 |
CHelloWorldBasicAppView::CHelloWorldBasicAppView(): iDir(1)
|
sl@0
|
61 |
{
|
sl@0
|
62 |
// No implementation required
|
sl@0
|
63 |
}
|
sl@0
|
64 |
|
sl@0
|
65 |
CHelloWorldBasicAppView::~CHelloWorldBasicAppView()
|
sl@0
|
66 |
{
|
sl@0
|
67 |
CWsScreenDevice* scr = CEikonEnv::Static()->ScreenDevice();
|
sl@0
|
68 |
scr->ReleaseFont(iFont);
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
|
sl@0
|
72 |
// -----------------------------------------------------------------------------
|
sl@0
|
73 |
// CHelloWorldBasicAppView::Draw()
|
sl@0
|
74 |
// Draws the display.
|
sl@0
|
75 |
// -----------------------------------------------------------------------------
|
sl@0
|
76 |
//
|
sl@0
|
77 |
void CHelloWorldBasicAppView::Draw( const TRect& /*aRect*/ ) const
|
sl@0
|
78 |
{
|
sl@0
|
79 |
CWindowGc& gc = SystemGc();
|
sl@0
|
80 |
_LIT(KMsgP1, "This application enables you to launch ");
|
sl@0
|
81 |
_LIT(KMsgP2, "tests using testexecute.");
|
sl@0
|
82 |
gc.Clear();
|
sl@0
|
83 |
gc.UseFont(iFont);
|
sl@0
|
84 |
gc.DrawText(KMsgP1, TPoint(10,20));
|
sl@0
|
85 |
gc.DrawText(KMsgP2, TPoint(10,35));
|
sl@0
|
86 |
gc.DiscardFont();
|
sl@0
|
87 |
}
|