24
|
1 |
/*
|
|
2 |
* Copyright (c) 2002-2008 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of "Eclipse Public License v1.0""
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description:
|
|
15 |
* Provides the CAknFepManager methods.
|
|
16 |
*
|
|
17 |
*/
|
|
18 |
|
|
19 |
|
|
20 |
#include "AknFepManager.h"
|
|
21 |
|
|
22 |
#include <bautils.h>
|
|
23 |
#include <coeaui.h> //CCoeAppUi
|
|
24 |
|
|
25 |
CAknFepManager::CAknFepManager(CCoeEnv& aConeEnvironment)
|
|
26 |
:CCoeFep(aConeEnvironment)
|
|
27 |
{
|
|
28 |
}
|
|
29 |
|
|
30 |
void CAknFepManager::ConstructL(const CCoeFepParameters& /*aFepParameters*/)
|
|
31 |
{
|
|
32 |
}
|
|
33 |
CAknFepManager::~CAknFepManager()
|
|
34 |
{
|
|
35 |
}
|
|
36 |
void CAknFepManager::HandleAknEdwinStateEventL(CAknEdwinState* /*aAknEdwinState*/,
|
|
37 |
EAknEdwinStateEvent /*aEventType*/)
|
|
38 |
{
|
|
39 |
}
|
|
40 |
void CAknFepManager::HandleChangeInFocus()
|
|
41 |
{
|
|
42 |
}
|
|
43 |
void CAknFepManager::HandleGainingForeground()
|
|
44 |
{
|
|
45 |
}
|
|
46 |
void CAknFepManager::HandleLosingForeground()
|
|
47 |
{
|
|
48 |
}
|
|
49 |
void CAknFepManager::HandleDestructionOfFocusedItem()
|
|
50 |
{
|
|
51 |
}
|
|
52 |
|
|
53 |
TInt CAknFepManager::NumberOfAttributes() const
|
|
54 |
{
|
|
55 |
return 0;
|
|
56 |
}
|
|
57 |
|
|
58 |
TUid CAknFepManager::AttributeAtIndex(TInt /*aIndex*/) const
|
|
59 |
{
|
|
60 |
return KNullUid;
|
|
61 |
}
|
|
62 |
|
|
63 |
void CAknFepManager::WriteAttributeDataToStreamL(TUid /*aAttributeUid*/, RWriteStream& /*aStream*/) const
|
|
64 |
{
|
|
65 |
}
|
|
66 |
|
|
67 |
void CAknFepManager::ReadAttributeDataFromStreamL(TUid /*aAttributeUid*/, RReadStream& /*aStream*/)
|
|
68 |
{
|
|
69 |
}
|
|
70 |
|
|
71 |
|
|
72 |
void CAknFepManager::CancelTransaction()
|
|
73 |
{
|
|
74 |
|
|
75 |
}
|
|
76 |
|
|
77 |
void CAknFepManager::IsOnHasChangedState()
|
|
78 |
{
|
|
79 |
}
|
|
80 |
|
|
81 |
void CAknFepManager::OfferKeyEventL(TEventResponse& /*aEventResponse*/,
|
|
82 |
const TKeyEvent& /*aKeyEvent*/,
|
|
83 |
TEventCode /*aEventCode*/)
|
|
84 |
{
|
|
85 |
}
|
|
86 |
|
|
87 |
void CAknFepManager::OfferPointerEventL(TEventResponse& /*aEventResponse*/,
|
|
88 |
const TPointerEvent& /*aPointerEvent*/,
|
|
89 |
const CCoeControl* /*aWindowOwningControl*/)
|
|
90 |
{
|
|
91 |
}
|
|
92 |
|
|
93 |
void CAknFepManager::OfferPointerBufferReadyEventL(TEventResponse& /*aEventResponse*/,
|
|
94 |
const CCoeControl* /*aWindowOwningControl*/)
|
|
95 |
{
|
|
96 |
}
|
|
97 |
|
|
98 |
|
|
99 |
// End of file
|