sl@0: // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "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: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef __HELLOWORLDBASICAPPUI_H__ sl@0: #define __HELLOWORLDBASICAPPUI_H__ sl@0: sl@0: sl@0: #include sl@0: sl@0: sl@0: class CHelloWorldBasicAppView; sl@0: class CFileListContainer; sl@0: sl@0: sl@0: /** sl@0: * CHelloWorldBasicAppUi application UI class. sl@0: * Interacts with the user through the UI and request message processing sl@0: * from the handler class sl@0: */ sl@0: class CHelloWorldBasicAppUi : public CAknAppUi sl@0: { sl@0: public: sl@0: void ConstructL(); sl@0: CHelloWorldBasicAppUi(); sl@0: virtual ~CHelloWorldBasicAppUi(); sl@0: sl@0: private: sl@0: /** sl@0: * From CEikAppUi sl@0: * Takes care of command handling. sl@0: * @param aCommand Command to be handled. sl@0: */ sl@0: void HandleCommandL(TInt aCommand); sl@0: sl@0: /** sl@0: * Called by the framework when the application status pane sl@0: * size is changed. sl@0: */ sl@0: void HandleStatusPaneSizeChange(); sl@0: sl@0: /** sl@0: * From CEikAppUi, handles key events. sl@0: * @param aKeyEvent Event to handled. sl@0: * @param aType Type of the key event. sl@0: * @return Response code (EKeyWasConsumed, EKeyWasNotConsumed). sl@0: */ sl@0: virtual TKeyResponse HandleKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType); sl@0: sl@0: private: sl@0: CHelloWorldBasicAppView* iAppView; sl@0: CFileListContainer* iAppContainer; sl@0: }; sl@0: sl@0: #endif // __HELLOWORLDBASICAPPUI_H__