sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
/**
|
sl@0
|
17 |
@file
|
sl@0
|
18 |
@publishedPartner
|
sl@0
|
19 |
@released
|
sl@0
|
20 |
*/
|
sl@0
|
21 |
|
sl@0
|
22 |
|
sl@0
|
23 |
#ifndef MSYNCCISUPPORT_H
|
sl@0
|
24 |
#define MSYNCCISUPPORT_H
|
sl@0
|
25 |
|
sl@0
|
26 |
#include <e32base.h>
|
sl@0
|
27 |
#include <a3f/a3fbase.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
const TUid KUidExtensionInferface = { 0x1028348B };
|
sl@0
|
30 |
|
sl@0
|
31 |
/**
|
sl@0
|
32 |
* An interface to get notifications from Custom Interface state change.
|
sl@0
|
33 |
*/
|
sl@0
|
34 |
class MCustomInterfaceSupportObserver
|
sl@0
|
35 |
{
|
sl@0
|
36 |
public:
|
sl@0
|
37 |
/* *
|
sl@0
|
38 |
* Called to state that CI is being removed use depends on which type of CI is involved.
|
sl@0
|
39 |
* @param aUid the Uid of the CI.
|
sl@0
|
40 |
*
|
sl@0
|
41 |
* @param aPtr on returns contains a pointer to the CI.
|
sl@0
|
42 |
*/
|
sl@0
|
43 |
virtual void CustomInterfaceRemoval(TUid aInterfaceUid, TAny* aPtr) = 0;
|
sl@0
|
44 |
};
|
sl@0
|
45 |
|
sl@0
|
46 |
|
sl@0
|
47 |
/**
|
sl@0
|
48 |
* An interface to get Custom Interface.
|
sl@0
|
49 |
*/
|
sl@0
|
50 |
class MCustomInterfaceSupport
|
sl@0
|
51 |
{
|
sl@0
|
52 |
public:
|
sl@0
|
53 |
/**
|
sl@0
|
54 |
* Request custom interface associated with aUid.
|
sl@0
|
55 |
* Whether multiple calls returns the same pointer and/or
|
sl@0
|
56 |
* ownership is transferred depends on the specific uid.
|
sl@0
|
57 |
*
|
sl@0
|
58 |
* @param aUid the Uid of the CI .
|
sl@0
|
59 |
* @param aPtr on returns contains a pointer to the CI.
|
sl@0
|
60 |
*/
|
sl@0
|
61 |
virtual TInt RequestCustomInterface(TUid aUid, TAny*& aPtr) = 0;
|
sl@0
|
62 |
|
sl@0
|
63 |
/**
|
sl@0
|
64 |
* Registers an interface support observer.
|
sl@0
|
65 |
*
|
sl@0
|
66 |
* The observer will be notified when the custom interface has been removed .
|
sl@0
|
67 |
*
|
sl@0
|
68 |
* @param aObserver the observer reference to register.
|
sl@0
|
69 |
* @return An error code. KErrNone on success, otherwise one of the system wide error codes.
|
sl@0
|
70 |
*/
|
sl@0
|
71 |
virtual TInt RegisterObserver(MCustomInterfaceSupportObserver& aObserver) = 0;
|
sl@0
|
72 |
|
sl@0
|
73 |
/**
|
sl@0
|
74 |
* Unregisters an interface support observer.
|
sl@0
|
75 |
*
|
sl@0
|
76 |
* @param aObserver the observer reference to unregister.
|
sl@0
|
77 |
* @return An error code. KErrNone on success, otherwise one of the system wide error codes.
|
sl@0
|
78 |
*/
|
sl@0
|
79 |
virtual void UnRegisterObserver(MCustomInterfaceSupportObserver& aObserver) = 0;
|
sl@0
|
80 |
};
|
sl@0
|
81 |
|
sl@0
|
82 |
#endif // MSYNCCISUPPORT_H
|