os/graphics/windowing/windowserver/test/t_integ/src/t_app1ui.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #include <apgtask.h>
    23 #include <eikenv.h>
    24 #include <eikmenup.h>
    25 #include <e32math.h>
    26 #include "t_app1ui.h"
    27 #include "t_app1view.h"
    28 #include "t_wservconsts.h" 
    29 #include "t_inidata.h"
    30 
    31 /**
    32  *	constructL method that creates the AppView object
    33  *	
    34  */  
    35 void CTApp1Ui::ConstructL()
    36     {
    37     BaseConstructL();
    38 	CWsScreenDevice * screen = CCoeEnv::Static()->ScreenDevice();
    39 	TSize screenSize=screen->SizeInPixels();
    40 	
    41 	TInt posX = 0;
    42 	READ_INT(KTApp1PositionX, KWServTApp1ConfigFile, posX);
    43 	CalculateAbsL(posX, screenSize.iWidth);
    44 	
    45 	TInt posY = 0;
    46 	READ_INT(KTApp1PositionY, KWServTApp1ConfigFile, posY);
    47 	CalculateAbsL(posY, screenSize.iHeight);
    48 	
    49 	TInt width = 0;
    50 	READ_INT(KTApp1Width, KWServTApp1ConfigFile, width);
    51 	CalculateAbsL(width, screenSize.iWidth);
    52 	
    53 	TInt height = 0;
    54 	READ_INT(KTApp1Height, KWServTApp1ConfigFile, height);
    55 	CalculateAbsL(height, screenSize.iHeight);
    56 	
    57     TRect myRect(TPoint(posX,posY), TPoint(width+posX,height+posY));
    58 	iAppView = CTApp1View::NewL(myRect);
    59 	}
    60 
    61 
    62 void CTApp1Ui::CalculateAbsL(TInt& aValue, const TInt& aFactor) const
    63 {
    64 	TReal tempVar = static_cast<TReal>(aValue)*static_cast<TReal>(aFactor);
    65 	tempVar = tempVar/100; // as percentage
    66 	TInt32 tempVal = 0;
    67 	User::LeaveIfError(Math::Int(tempVal, tempVar));
    68 	aValue = tempVal;
    69 }
    70 
    71 /**
    72  *	Destructor 
    73  *	
    74  */  
    75 CTApp1Ui::~CTApp1Ui()
    76 	{
    77 	delete iAppView;
    78 	}
    79 	
    80 /**
    81  *	Handles the Menu events
    82  *	@param aCommand - command to be passed based on the menu item
    83  *						selected by the user
    84  *
    85  */  
    86 void CTApp1Ui::HandleCommandL(TInt aCommand)
    87 	{
    88 	switch (aCommand)
    89 		{
    90 		case EEikCmdExit: 
    91 			{
    92 			Exit();
    93 			break;
    94 			}
    95 		default:
    96 			{
    97 			User::Leave(KErrAbort);
    98 			break;
    99 			}
   100 		}
   101 	}
   102 
   103 /**
   104  *	Handles system events
   105  *	@param aEvent - event that has to be handled by the function
   106  *	
   107  */  
   108 void CTApp1Ui::HandleSystemEventL(const TWsEvent& aEvent)
   109 	{
   110 	switch (*(TApaSystemEvent*)(aEvent.EventData()))
   111 		{
   112 		case EApaSystemEventBroughtToForeground:
   113 			RProcess::Rendezvous(KErrNone);
   114 			break;
   115          default:
   116 			User::Leave(KErrAbort);
   117 			break;
   118 		}	
   119 	}