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_pseudoappeng.h"
28 #include "t_pseudoappview.h"
29 #include "t_pseudoapp.h"
30 #include "t_pseudoappui.h"
37 * constructL method that creates the AppView object
40 void CPseudoAppUi::ConstructL()
42 RDebug::Print(_L("Create App Framework\n"));
46 iAppView = CPseudoAppView::NewL(ClientRect());
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);
55 //Detect screen rotations
56 iCoeEnv->RootWin().EnableScreenChangeEvents();
63 CPseudoAppUi::~CPseudoAppUi()
69 * Handles the Menu events
70 * @param aCommand - command to be passed based on the menu item
71 * selected by the user
74 void CPseudoAppUi::HandleCommandL(TInt aCommand)
85 User::Leave(KErrAbort);
92 * Handles system events
93 * @param aEvent - event that has to be handled by the function
96 void CPseudoAppUi::HandleSystemEventL(const TWsEvent& aEvent)
98 switch (*(TApaSystemEvent*)(aEvent.EventData()))
100 case EApaSystemEventBroughtToForeground:
101 RProcess::Rendezvous(KErrNone);
108 void CPseudoAppUi::HandleScreenDeviceChangedL()
110 //The function called after a screen rotation event occurs
111 //Only rotation of one screen supported