os/graphics/windowing/windowserver/test/t_integ/src/t_fpsappui.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 <eikenv.h>
    23 #include "t_fpsappeng.h"
    24 #include "t_fpsappview.h"
    25 #include "t_fpsapp.h"
    26 #include "t_fpsappui.h"
    27 
    28 //
    29 // CFpsAppUi
    30 //
    31 
    32 /**
    33  *	constructL method that creates the AppView object
    34  *
    35  */
    36 void CFpsAppUi::ConstructL()
    37     {
    38 	RDebug::Print(_L("Create App Framework\n"));
    39     BaseConstructL();
    40 	iAppView = CFpsAppView::NewL(ClientRect());
    41 	}
    42 
    43 /**
    44  *	Destructor
    45  *
    46  */
    47 CFpsAppUi::~CFpsAppUi()
    48 	{
    49 	delete iAppView;
    50 	}
    51 
    52 /**
    53  *	Handles the Menu events
    54  *	@param aCommand - command to be passed based on the menu item
    55  *						selected by the user
    56  *
    57  */
    58 void CFpsAppUi::HandleCommandL(TInt aCommand)
    59 	{
    60 	switch (aCommand)
    61 		{
    62 		case EEikCmdExit:
    63 			{
    64 			Exit();
    65 			break;
    66 			}
    67 		default:
    68 			{
    69 			User::Leave(KErrAbort);
    70 			break;
    71 			}
    72 		}
    73 	}
    74 
    75 
    76 
    77