Update contrib.
2 * Copyright (c) 2009 Symbian Foundation Ltd
3 * This component and the accompanying materials are made available
4 * under the terms of the License "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 * Symbian Foundation Ltd - initial contribution.
14 * Implementation of CTigerAppUi class
19 #include "TigerAppUi.h"
20 #include "TigerContainer.h"
26 // ================= MEMBER FUNCTIONS =======================
28 // ----------------------------------------------------------
29 // CTigerAppUi::ConstructL()
30 // ----------------------------------------------------------
32 void CTigerAppUi::ConstructL()
35 iAppContainer = new (ELeave) CTigerContainer;
36 iAppContainer->SetMopParent(this);
37 iAppContainer->ConstructL( ClientRect() );
38 AddToStackL( iAppContainer );
41 // ----------------------------------------------------
42 // CTigerAppUi::~CTigerAppUi()
44 // Frees reserved resources
45 // ----------------------------------------------------
47 CTigerAppUi::~CTigerAppUi()
51 RemoveFromStack( iAppContainer );
56 // ------------------------------------------------------------------------------
57 // CTigerAppUi::::DynInitMenuPaneL(TInt aResourceId,CEikMenuPane* aMenuPane)
58 // This function is called by the EIKON framework just before it displays
59 // a menu pane. Its default implementation is empty, and by overriding it,
60 // the application can set the state of menu items dynamically according
61 // to the state of application data.
62 // ------------------------------------------------------------------------------
64 void CTigerAppUi::DynInitMenuPaneL(
65 TInt /*aResourceId*/,CEikMenuPane* /*aMenuPane*/)
69 // ----------------------------------------------------
70 // CTigerAppUi::HandleKeyEventL(
71 // const TKeyEvent& aKeyEvent,TEventCode /*aType*/)
73 // ----------------------------------------------------
75 TKeyResponse CTigerAppUi::HandleKeyEventL(
76 const TKeyEvent& /*aKeyEvent*/ ,TEventCode /*aType*/)
78 return EKeyWasNotConsumed;
81 // ----------------------------------------------------
82 // CTigerAppUi::HandleCommandL(TInt aCommand)
84 // ----------------------------------------------------
86 void CTigerAppUi::HandleCommandL(TInt aCommand)