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_dsaappui.h"
26 #include "t_dsaappview.h"
27 #include "t_inidata.h"
28 #include "t_wservconsts.h"
31 * constructL method that creates the AppView object
34 void CDsaAppUi::ConstructL()
37 CWsScreenDevice * screen = CCoeEnv::Static()->ScreenDevice();
38 TSize screenSize=screen->SizeInPixels();
40 READ_INT(KDsaPositionX, KWServDsaAppConfigFile, posX);
41 CalculateAbsL(posX, screenSize.iWidth);
44 READ_INT(KDsaPositionY, KWServDsaAppConfigFile, posY);
45 CalculateAbsL(posY, screenSize.iHeight);
48 READ_INT(KDsaWidth, KWServDsaAppConfigFile, width);
49 CalculateAbsL(width, screenSize.iWidth);
52 READ_INT(KDsaHeight, KWServDsaAppConfigFile, height);
53 CalculateAbsL(height, screenSize.iHeight);
55 TRect myRect(TPoint(posX,posY), TPoint(width+posX,height+posY));
56 iAppView = CDsaAppView::NewL(myRect);
60 void CDsaAppUi::CalculateAbsL(TInt& aValue, const TInt& aFactor)
62 TReal tempVar = static_cast<TReal>(aValue)*static_cast<TReal>(aFactor);
63 tempVar = tempVar/100; // as percentage
65 User::LeaveIfError(Math::Int(tempVal, tempVar));
73 CDsaAppUi::~CDsaAppUi()
79 * Handles the Menu events
80 * @param aCommand - command to be passed based on the menu item
81 * selected by the user
84 void CDsaAppUi::HandleCommandL(TInt aCommand)
95 User::Leave(KErrAbort);
102 * Handles system events
103 * @param aEvent - event that has to be handled by the function
106 void CDsaAppUi::HandleSystemEventL(const TWsEvent& aEvent)
108 switch (*(TApaSystemEvent*)(aEvent.EventData()))
110 case EApaSystemEventBroughtToForeground:
112 RProcess::Rendezvous(KErrNone);
117 User::Leave(KErrAbort);