sl@0: /* sl@0: * Copyright (c) 2009 Symbian Foundation Ltd sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of the License "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Symbian Foundation Ltd - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * Tiger app UI clas declaration sl@0: */ sl@0: sl@0: #ifndef TIGERAPPUI_H sl@0: #define TIGERAPPUI_H sl@0: sl@0: // INCLUDES sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: // FORWARD DECLARATIONS sl@0: class CTigerContainer; sl@0: sl@0: // CLASS DECLARATION sl@0: sl@0: /** sl@0: * Application UI class that contains the CTigerContainer sl@0: * (as required by the Symbian UI application architecture). sl@0: */ sl@0: class CTigerAppUi : public CAknAppUi sl@0: { sl@0: public: // Constructors and destructor sl@0: sl@0: /** sl@0: * Second phase constructor. Creates the CTigerContainer sl@0: * and adds it to the control stack. sl@0: */ sl@0: void ConstructL(); sl@0: sl@0: /** sl@0: * Destructor. Removes CTigerContainer from the control sl@0: * stack and destroys it. sl@0: */ sl@0: virtual ~CTigerAppUi(); sl@0: sl@0: private: // Functions from base classes sl@0: sl@0: /** sl@0: * This method is called by the EIKON framework just before it displays sl@0: * a menu pane. Does nothing in this implemenation. sl@0: */ sl@0: void DynInitMenuPaneL(TInt aResourceId,CEikMenuPane* aMenuPane); sl@0: sl@0: /** sl@0: * CEikAppUi method that is used to handle user commands. sl@0: * Handles menu commands and application exit request. sl@0: * @param aCommand Command to be handled. sl@0: */ sl@0: void HandleCommandL(TInt aCommand); sl@0: sl@0: /** sl@0: * CEikAppUi method that is used to handle key events. sl@0: * Does nothing in this implemenation. sl@0: * @param aKeyEvent Event to handled (ignored by this implementation). sl@0: * @param aType Type of the key event (ignored by this implementation). sl@0: * @return Response code. Always EKeyWasNotConsumed in this implementation. sl@0: */ sl@0: virtual TKeyResponse HandleKeyEventL( sl@0: const TKeyEvent& aKeyEvent,TEventCode aType); sl@0: sl@0: private: //Data sl@0: sl@0: /** GUI container that resides in this application UI. */ sl@0: CTigerContainer* iAppContainer; sl@0: }; sl@0: sl@0: #endif sl@0: sl@0: // End of File