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 * Tiger app UI clas declaration
27 // FORWARD DECLARATIONS
28 class CTigerContainer;
33 * Application UI class that contains the CTigerContainer
34 * (as required by the Symbian UI application architecture).
36 class CTigerAppUi : public CAknAppUi
38 public: // Constructors and destructor
41 * Second phase constructor. Creates the CTigerContainer
42 * and adds it to the control stack.
47 * Destructor. Removes CTigerContainer from the control
48 * stack and destroys it.
50 virtual ~CTigerAppUi();
52 private: // Functions from base classes
55 * This method is called by the EIKON framework just before it displays
56 * a menu pane. Does nothing in this implemenation.
58 void DynInitMenuPaneL(TInt aResourceId,CEikMenuPane* aMenuPane);
61 * CEikAppUi method that is used to handle user commands.
62 * Handles menu commands and application exit request.
63 * @param aCommand Command to be handled.
65 void HandleCommandL(TInt aCommand);
68 * CEikAppUi method that is used to handle key events.
69 * Does nothing in this implemenation.
70 * @param aKeyEvent Event to handled (ignored by this implementation).
71 * @param aType Type of the key event (ignored by this implementation).
72 * @return Response code. Always EKeyWasNotConsumed in this implementation.
74 virtual TKeyResponse HandleKeyEventL(
75 const TKeyEvent& aKeyEvent,TEventCode aType);
79 /** GUI container that resides in this application UI. */
80 CTigerContainer* iAppContainer;