Update contrib.
1 // Copyright (c) 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.
16 #ifndef __HELLOWORLDBASICAPPUI_H__
17 #define __HELLOWORLDBASICAPPUI_H__
23 class CHelloWorldBasicAppView;
24 class CFileListContainer;
28 * CHelloWorldBasicAppUi application UI class.
29 * Interacts with the user through the UI and request message processing
30 * from the handler class
32 class CHelloWorldBasicAppUi : public CAknAppUi
36 CHelloWorldBasicAppUi();
37 virtual ~CHelloWorldBasicAppUi();
42 * Takes care of command handling.
43 * @param aCommand Command to be handled.
45 void HandleCommandL(TInt aCommand);
48 * Called by the framework when the application status pane
51 void HandleStatusPaneSizeChange();
54 * From CEikAppUi, handles key events.
55 * @param aKeyEvent Event to handled.
56 * @param aType Type of the key event.
57 * @return Response code (EKeyWasConsumed, EKeyWasNotConsumed).
59 virtual TKeyResponse HandleKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);
62 CHelloWorldBasicAppView* iAppView;
63 CFileListContainer* iAppContainer;
66 #endif // __HELLOWORLDBASICAPPUI_H__