os/graphics/windowing/windowserver/test/t_integ/src/t_dsaappui.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 <e32math.h>
    24 #include <eikenv.h>
    25 #include "t_dsaappui.h"
    26 #include "t_dsaappview.h"
    27 #include "t_inidata.h"
    28 #include "t_wservconsts.h" 
    29 
    30 /**
    31  *	constructL method that creates the AppView object
    32  *	
    33  */  
    34 void CDsaAppUi::ConstructL()
    35     {
    36     BaseConstructL();
    37 	CWsScreenDevice * screen = CCoeEnv::Static()->ScreenDevice();
    38 	TSize screenSize=screen->SizeInPixels();
    39 	TInt posX = 0;
    40 	READ_INT(KDsaPositionX, KWServDsaAppConfigFile, posX);
    41 	CalculateAbsL(posX, screenSize.iWidth);
    42 	
    43 	TInt posY = 0;
    44 	READ_INT(KDsaPositionY, KWServDsaAppConfigFile, posY);
    45 	CalculateAbsL(posY, screenSize.iHeight);
    46 	
    47 	TInt width = 0;
    48 	READ_INT(KDsaWidth, KWServDsaAppConfigFile, width);
    49 	CalculateAbsL(width, screenSize.iWidth);
    50 	
    51 	TInt height = 0;
    52 	READ_INT(KDsaHeight, KWServDsaAppConfigFile, height);
    53 	CalculateAbsL(height, screenSize.iHeight);
    54 	
    55     TRect myRect(TPoint(posX,posY), TPoint(width+posX,height+posY));
    56 	iAppView = CDsaAppView::NewL(myRect);
    57 	}
    58 
    59 
    60 void CDsaAppUi::CalculateAbsL(TInt& aValue, const TInt& aFactor)
    61 {
    62 	TReal tempVar = static_cast<TReal>(aValue)*static_cast<TReal>(aFactor);
    63 	tempVar = tempVar/100; // as percentage
    64 	TInt32 tempVal = 0;
    65 	User::LeaveIfError(Math::Int(tempVal, tempVar));
    66 	aValue = tempVal;
    67 }
    68 	
    69 /**
    70  *	Destructor 
    71  *	
    72  */  
    73 CDsaAppUi::~CDsaAppUi()
    74 	{
    75 	delete iAppView;
    76 	}
    77 	
    78 /**
    79  *	Handles the Menu events
    80  *	@param aCommand - command to be passed based on the menu item
    81  *						selected by the user
    82  *
    83  */  
    84 void CDsaAppUi::HandleCommandL(TInt aCommand)
    85 	{
    86 	switch (aCommand)
    87 		{
    88 		case EEikCmdExit: 
    89 			{
    90 			Exit();
    91 			break;
    92 			}
    93 		default:
    94 			{
    95 			User::Leave(KErrAbort);
    96 			break;
    97 			}
    98 		}
    99 	}
   100 
   101 /**
   102  *	Handles system events
   103  *	@param aEvent - event that has to be handled by the function
   104  *	
   105  */  
   106 void CDsaAppUi::HandleSystemEventL(const TWsEvent& aEvent)
   107 	{
   108 	switch (*(TApaSystemEvent*)(aEvent.EventData()))
   109 		{
   110 		case EApaSystemEventBroughtToForeground:
   111 			{
   112 			RProcess::Rendezvous(KErrNone);
   113 			break;
   114 			}
   115         default:
   116         	{
   117 			User::Leave(KErrAbort);
   118 			break;
   119         	}
   120 		}	
   121 	}