24
|
1 |
/*
|
|
2 |
* Copyright (c) 2002-2005 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 |
* CAknFepPlugin implementation.
|
|
16 |
*
|
|
17 |
*/
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
|
|
24 |
|
|
25 |
|
|
26 |
|
|
27 |
|
|
28 |
|
|
29 |
#include "AknFepManager.h"
|
|
30 |
#include "AknFepPlugin.h"
|
|
31 |
#include <ecom/implementationproxy.h>
|
|
32 |
|
|
33 |
CAknFepPlugin* CAknFepPlugin::NewL()
|
|
34 |
{
|
|
35 |
return new (ELeave) CAknFepPlugin();
|
|
36 |
}
|
|
37 |
|
|
38 |
|
|
39 |
CCoeFep* CAknFepPlugin::NewFepL(CCoeEnv& aConeEnvironment, const CCoeFepParameters& aFepParameters)
|
|
40 |
{
|
|
41 |
CAknFepManager* const aknFep = new(ELeave) CAknFepManager(aConeEnvironment);
|
|
42 |
CleanupStack::PushL(aknFep);
|
|
43 |
aknFep->ConstructL(aFepParameters);
|
|
44 |
CleanupStack::Pop(); // aknFep
|
|
45 |
return aknFep;
|
|
46 |
}
|
|
47 |
|
|
48 |
|
|
49 |
void CAknFepPlugin::SynchronouslyExecuteSettingsDialogL(CCoeEnv& /*aConeEnvironment*/)
|
|
50 |
{
|
|
51 |
}
|
|
52 |
|
|
53 |
|
|
54 |
const TImplementationProxy ImplementationTable[] =
|
|
55 |
{
|
|
56 |
#ifdef __EABI__
|
|
57 |
IMPLEMENTATION_PROXY_ENTRY(0x101FD65A, CAknFepPlugin::NewL)
|
|
58 |
#else
|
|
59 |
{{0x101FD65A}, CAknFepPlugin::NewL}
|
|
60 |
#endif
|
|
61 |
};
|
|
62 |
|
|
63 |
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
|
|
64 |
{
|
|
65 |
aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
|
|
66 |
return ImplementationTable;
|
|
67 |
}
|
|
68 |
|
|
69 |
// End of file
|
|
70 |
|