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 definition.
|
|
16 |
*
|
|
17 |
*/
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
|
|
24 |
|
|
25 |
|
|
26 |
|
|
27 |
|
|
28 |
|
|
29 |
|
|
30 |
#ifndef __AKN_FEP_PLUGIN_H__
|
|
31 |
#define __AKN_FEP_PLUGIN_H__
|
|
32 |
|
|
33 |
#include <fepplugin.h>
|
|
34 |
|
|
35 |
class CAknFepPlugin : public CCoeFepPlugIn
|
|
36 |
{
|
|
37 |
public:
|
|
38 |
static CAknFepPlugin* NewL();
|
|
39 |
|
|
40 |
public: // From CCoeFepPlugIn
|
|
41 |
/** Creates a fully constructed object of CCoeFEP.
|
|
42 |
* @param aConeEnvironment A reference to the application's control environment.
|
|
43 |
* @param aFepParameters FEP parameters.
|
|
44 |
* @return A pointer to the newly created object.
|
|
45 |
*/
|
|
46 |
CCoeFep* NewFepL(CCoeEnv& aConeEnvironment, const CCoeFepParameters& aFepParameters);
|
|
47 |
|
|
48 |
/** Runs the FEP settings dialog.
|
|
49 |
*
|
|
50 |
* @param aConeEnvironment A reference to the application's control environment.
|
|
51 |
*/
|
|
52 |
void SynchronouslyExecuteSettingsDialogL(CCoeEnv& aConeEnvironment);
|
|
53 |
};
|
|
54 |
|
|
55 |
#endif // __AKN_FEP_PLUGIN_H__
|
|
56 |
|
|
57 |
// End of file |