equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2007-2007 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: bserver interface for notifying ui extension plug-in events |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef M_CSCENGUIEXTENSIONOBSERVER_H |
|
21 #define M_CSCENGUIEXTENSIONOBSERVER_H |
|
22 |
|
23 #include "cscenguiextensionpluginhandler.h" |
|
24 |
|
25 /** |
|
26 * MCSCEngUiExtensionObserver class |
|
27 * |
|
28 * Observer interface for notifying ui extension plug-in events |
|
29 * |
|
30 * @lib |
|
31 * @since S60 v3.2 |
|
32 */ |
|
33 class MCSCEngUiExtensionObserver |
|
34 { |
|
35 public: |
|
36 |
|
37 /** |
|
38 * Should be called when exited from ui extension |
|
39 * |
|
40 * @since S60 v3.2 |
|
41 */ |
|
42 virtual void NotifyUiExtensionPluginResponse( |
|
43 const CCSCEngUiExtensionPluginHandler::TUiExtensionPluginResponse& aResponse, |
|
44 const TInt aIndex, |
|
45 const TUid& aPluginUid ) = 0; |
|
46 }; |
|
47 |
|
48 #endif // M_CSCENGUIEXTENSIONOBSERVER_H |
|