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.
23 #include "t_dsaappview.h"
24 #include "t_dsaappeng.h"
27 * Private constructor, does nothing
30 CDsaAppView::CDsaAppView()
35 * Standard 2 phase construction, constructs a View object
36 * @return pointer to the CDsaAppView
37 * @param aRect - rectangle coordinate defining control's extent
39 CDsaAppView* CDsaAppView::NewL(const TRect& aRect)
41 CDsaAppView* self = new(ELeave) CDsaAppView();
42 CleanupStack::PushL(self);
43 self->ConstructL(aRect);
52 CDsaAppView::~CDsaAppView()
62 * @param aRect - rectangle coordinate defining control's extent
65 void CDsaAppView::ConstructL(const TRect& aRect)
71 iEng = CTDsaAppEng::NewL(iEikonEnv->WsSession(),
72 *(CCoeEnv::Static()->ScreenDevice()),
80 * Draws the text on the screen
84 void CDsaAppView::Draw(const TRect& /*aRect*/) const
86 RDebug::Print(_L("dsa draw"));