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.
27 #include "t_app1view.h"
28 #include "t_wservconsts.h"
29 #include "t_inidata.h"
32 * constructL method that creates the AppView object
35 void CTApp1Ui::ConstructL()
38 CWsScreenDevice * screen = CCoeEnv::Static()->ScreenDevice();
39 TSize screenSize=screen->SizeInPixels();
42 READ_INT(KTApp1PositionX, KWServTApp1ConfigFile, posX);
43 CalculateAbsL(posX, screenSize.iWidth);
46 READ_INT(KTApp1PositionY, KWServTApp1ConfigFile, posY);
47 CalculateAbsL(posY, screenSize.iHeight);
50 READ_INT(KTApp1Width, KWServTApp1ConfigFile, width);
51 CalculateAbsL(width, screenSize.iWidth);
54 READ_INT(KTApp1Height, KWServTApp1ConfigFile, height);
55 CalculateAbsL(height, screenSize.iHeight);
57 TRect myRect(TPoint(posX,posY), TPoint(width+posX,height+posY));
58 iAppView = CTApp1View::NewL(myRect);
62 void CTApp1Ui::CalculateAbsL(TInt& aValue, const TInt& aFactor) const
64 TReal tempVar = static_cast<TReal>(aValue)*static_cast<TReal>(aFactor);
65 tempVar = tempVar/100; // as percentage
67 User::LeaveIfError(Math::Int(tempVal, tempVar));
81 * Handles the Menu events
82 * @param aCommand - command to be passed based on the menu item
83 * selected by the user
86 void CTApp1Ui::HandleCommandL(TInt aCommand)
97 User::Leave(KErrAbort);
104 * Handles system events
105 * @param aEvent - event that has to be handled by the function
108 void CTApp1Ui::HandleSystemEventL(const TWsEvent& aEvent)
110 switch (*(TApaSystemEvent*)(aEvent.EventData()))
112 case EApaSystemEventBroughtToForeground:
113 RProcess::Rendezvous(KErrNone);
116 User::Leave(KErrAbort);