sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2009 Symbian Foundation Ltd
|
sl@0
|
3 |
* This component and the accompanying materials are made available
|
sl@0
|
4 |
* under the terms of the License "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 |
* Symbian Foundation Ltd - initial contribution.
|
sl@0
|
10 |
*
|
sl@0
|
11 |
* Contributors:
|
sl@0
|
12 |
*
|
sl@0
|
13 |
* Description:
|
sl@0
|
14 |
* Tiger app UI clas declaration
|
sl@0
|
15 |
*/
|
sl@0
|
16 |
|
sl@0
|
17 |
#ifndef TIGERAPPUI_H
|
sl@0
|
18 |
#define TIGERAPPUI_H
|
sl@0
|
19 |
|
sl@0
|
20 |
// INCLUDES
|
sl@0
|
21 |
#include <eikapp.h>
|
sl@0
|
22 |
#include <eikdoc.h>
|
sl@0
|
23 |
#include <e32std.h>
|
sl@0
|
24 |
#include <coeccntx.h>
|
sl@0
|
25 |
#include <aknappui.h>
|
sl@0
|
26 |
|
sl@0
|
27 |
// FORWARD DECLARATIONS
|
sl@0
|
28 |
class CTigerContainer;
|
sl@0
|
29 |
|
sl@0
|
30 |
// CLASS DECLARATION
|
sl@0
|
31 |
|
sl@0
|
32 |
/**
|
sl@0
|
33 |
* Application UI class that contains the CTigerContainer
|
sl@0
|
34 |
* (as required by the Symbian UI application architecture).
|
sl@0
|
35 |
*/
|
sl@0
|
36 |
class CTigerAppUi : public CAknAppUi
|
sl@0
|
37 |
{
|
sl@0
|
38 |
public: // Constructors and destructor
|
sl@0
|
39 |
|
sl@0
|
40 |
/**
|
sl@0
|
41 |
* Second phase constructor. Creates the CTigerContainer
|
sl@0
|
42 |
* and adds it to the control stack.
|
sl@0
|
43 |
*/
|
sl@0
|
44 |
void ConstructL();
|
sl@0
|
45 |
|
sl@0
|
46 |
/**
|
sl@0
|
47 |
* Destructor. Removes CTigerContainer from the control
|
sl@0
|
48 |
* stack and destroys it.
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
virtual ~CTigerAppUi();
|
sl@0
|
51 |
|
sl@0
|
52 |
private: // Functions from base classes
|
sl@0
|
53 |
|
sl@0
|
54 |
/**
|
sl@0
|
55 |
* This method is called by the EIKON framework just before it displays
|
sl@0
|
56 |
* a menu pane. Does nothing in this implemenation.
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
void DynInitMenuPaneL(TInt aResourceId,CEikMenuPane* aMenuPane);
|
sl@0
|
59 |
|
sl@0
|
60 |
/**
|
sl@0
|
61 |
* CEikAppUi method that is used to handle user commands.
|
sl@0
|
62 |
* Handles menu commands and application exit request.
|
sl@0
|
63 |
* @param aCommand Command to be handled.
|
sl@0
|
64 |
*/
|
sl@0
|
65 |
void HandleCommandL(TInt aCommand);
|
sl@0
|
66 |
|
sl@0
|
67 |
/**
|
sl@0
|
68 |
* CEikAppUi method that is used to handle key events.
|
sl@0
|
69 |
* Does nothing in this implemenation.
|
sl@0
|
70 |
* @param aKeyEvent Event to handled (ignored by this implementation).
|
sl@0
|
71 |
* @param aType Type of the key event (ignored by this implementation).
|
sl@0
|
72 |
* @return Response code. Always EKeyWasNotConsumed in this implementation.
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
virtual TKeyResponse HandleKeyEventL(
|
sl@0
|
75 |
const TKeyEvent& aKeyEvent,TEventCode aType);
|
sl@0
|
76 |
|
sl@0
|
77 |
private: //Data
|
sl@0
|
78 |
|
sl@0
|
79 |
/** GUI container that resides in this application UI. */
|
sl@0
|
80 |
CTigerContainer* iAppContainer;
|
sl@0
|
81 |
};
|
sl@0
|
82 |
|
sl@0
|
83 |
#endif
|
sl@0
|
84 |
|
sl@0
|
85 |
// End of File
|