sl@0
|
1 |
// Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef __HELLOWORLDBASICAPPUI_H__
|
sl@0
|
17 |
#define __HELLOWORLDBASICAPPUI_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <aknappui.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
|
sl@0
|
23 |
class CHelloWorldBasicAppView;
|
sl@0
|
24 |
class CFileListContainer;
|
sl@0
|
25 |
|
sl@0
|
26 |
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
* CHelloWorldBasicAppUi application UI class.
|
sl@0
|
29 |
* Interacts with the user through the UI and request message processing
|
sl@0
|
30 |
* from the handler class
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
class CHelloWorldBasicAppUi : public CAknAppUi
|
sl@0
|
33 |
{
|
sl@0
|
34 |
public:
|
sl@0
|
35 |
void ConstructL();
|
sl@0
|
36 |
CHelloWorldBasicAppUi();
|
sl@0
|
37 |
virtual ~CHelloWorldBasicAppUi();
|
sl@0
|
38 |
|
sl@0
|
39 |
private:
|
sl@0
|
40 |
/**
|
sl@0
|
41 |
* From CEikAppUi
|
sl@0
|
42 |
* Takes care of command handling.
|
sl@0
|
43 |
* @param aCommand Command to be handled.
|
sl@0
|
44 |
*/
|
sl@0
|
45 |
void HandleCommandL(TInt aCommand);
|
sl@0
|
46 |
|
sl@0
|
47 |
/**
|
sl@0
|
48 |
* Called by the framework when the application status pane
|
sl@0
|
49 |
* size is changed.
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
void HandleStatusPaneSizeChange();
|
sl@0
|
52 |
|
sl@0
|
53 |
/**
|
sl@0
|
54 |
* From CEikAppUi, handles key events.
|
sl@0
|
55 |
* @param aKeyEvent Event to handled.
|
sl@0
|
56 |
* @param aType Type of the key event.
|
sl@0
|
57 |
* @return Response code (EKeyWasConsumed, EKeyWasNotConsumed).
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
virtual TKeyResponse HandleKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType);
|
sl@0
|
60 |
|
sl@0
|
61 |
private:
|
sl@0
|
62 |
CHelloWorldBasicAppView* iAppView;
|
sl@0
|
63 |
CFileListContainer* iAppContainer;
|
sl@0
|
64 |
};
|
sl@0
|
65 |
|
sl@0
|
66 |
#endif // __HELLOWORLDBASICAPPUI_H__
|