os/graphics/windowing/windowserver/test/t_integ/src/t_pseudoappui.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 <eikstart.h>
    26 
    27 #include "t_pseudoappeng.h"
    28 #include "t_pseudoappview.h"
    29 #include "t_pseudoapp.h"
    30 #include "t_pseudoappui.h"
    31 
    32 //
    33 // CPseudoAppUi
    34 //
    35 
    36 /**
    37  *	constructL method that creates the AppView object
    38  *
    39  */
    40 void CPseudoAppUi::ConstructL()
    41     {
    42 	RDebug::Print(_L("Create App Framework\n"));
    43 
    44     BaseConstructL();
    45 #ifndef T_PSEUDOAPP1
    46 	iAppView = CPseudoAppView::NewL(ClientRect());
    47 #else
    48 	// t_pseudoapp1 is used in a test that displays two animations on one screen.
    49 	// Window dimensions and positions chosen such that both animations are visible.
    50 	TSize sz = ClientRect().Size();
    51     TRect rect(sz.iWidth/2, sz.iHeight/2, sz.iWidth, sz.iHeight);
    52 	iAppView = CPseudoAppView::NewL(rect);
    53 #endif //T_PSEUDOAPP1
    54 
    55 	//Detect screen rotations
    56 	iCoeEnv->RootWin().EnableScreenChangeEvents();
    57 	}
    58 
    59 /**
    60  *	Destructor
    61  *
    62  */
    63 CPseudoAppUi::~CPseudoAppUi()
    64 	{
    65 	delete iAppView;
    66 	}
    67 
    68 /**
    69  *	Handles the Menu events
    70  *	@param aCommand - command to be passed based on the menu item
    71  *						selected by the user
    72  *
    73  */
    74 void CPseudoAppUi::HandleCommandL(TInt aCommand)
    75 	{
    76 	switch (aCommand)
    77 		{
    78 		case EEikCmdExit:
    79 			{
    80 			Exit();
    81 			break;
    82 			}
    83 		default:
    84 			{
    85 			User::Leave(KErrAbort);
    86 			break;
    87 			}
    88 		}
    89 	}
    90 
    91 /**
    92  *	Handles system events
    93  *	@param aEvent - event that has to be handled by the function
    94  *
    95  */
    96 void CPseudoAppUi::HandleSystemEventL(const TWsEvent& aEvent)
    97 	{
    98 	switch (*(TApaSystemEvent*)(aEvent.EventData()))
    99 		{
   100 		case EApaSystemEventBroughtToForeground:
   101 			RProcess::Rendezvous(KErrNone);
   102 			break;
   103          default:
   104 			break;
   105 		}
   106 	}
   107 
   108 void CPseudoAppUi::HandleScreenDeviceChangedL()
   109 	{
   110 	//The function called after a screen rotation event occurs
   111 	//Only rotation of one screen supported
   112 	iAppView->RotateL();
   113 	}
   114 
   115