114
|
1 |
/*
|
|
2 |
* Copyright (c) 2008-2009 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: Encapsulates name and value
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
#ifndef MHOMESCREENSETTINGSOBSERVER_H_
|
|
18 |
#define MHOMESCREENSETTINGSOBSERVER_H_
|
|
19 |
|
|
20 |
#include <e32base.h>
|
|
21 |
|
|
22 |
namespace HSPluginSettingsIf{
|
|
23 |
|
|
24 |
/**
|
|
25 |
* Observer class for HomeScreenSettingsIf
|
|
26 |
*
|
|
27 |
* @code
|
|
28 |
*
|
|
29 |
* @endcode
|
|
30 |
*
|
|
31 |
* @lib HomeScreenSettingsIf.lib
|
|
32 |
* @since S60 v5.0
|
|
33 |
*/
|
|
34 |
class MHomeScreenSettingsObserver
|
|
35 |
{
|
|
36 |
public:
|
|
37 |
/**
|
|
38 |
* Handle HSPS wrappper notifications
|
|
39 |
*
|
|
40 |
* @param aEvent Event
|
|
41 |
* @param aPluginName Plugin name
|
|
42 |
* @param aPluginUid Plugin uid
|
|
43 |
* @param aPluginId Plugin id
|
|
44 |
*/
|
|
45 |
virtual void SettingsChangedL(
|
|
46 |
const TDesC8& aEvent,
|
|
47 |
const TDesC8& aPluginName,
|
|
48 |
const TDesC8& aPluginUid,
|
|
49 |
const TDesC8& aPluginId ) = 0;
|
|
50 |
|
|
51 |
};
|
|
52 |
}
|
|
53 |
#endif /*MHOMESCREENSETTINGSOBSERVER_H_*/
|