sl@0
|
1 |
// Copyright (c) 2008-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 |
#ifndef __CALLBACK_H__
|
sl@0
|
17 |
#define __CALLBACK_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@file
|
sl@0
|
21 |
@internalTechnology
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#include <e32cmn.h>
|
sl@0
|
25 |
|
sl@0
|
26 |
/** enum to identify why callback is invoked. */
|
sl@0
|
27 |
enum TCallBackId
|
sl@0
|
28 |
{
|
sl@0
|
29 |
ECallBackId_None = 0,
|
sl@0
|
30 |
ECallBackId_ImplUpgrade,
|
sl@0
|
31 |
ECallBackId_SwiEvent,
|
sl@0
|
32 |
ECallBackId_BurEvent
|
sl@0
|
33 |
};
|
sl@0
|
34 |
|
sl@0
|
35 |
/** enum to generalize start and end of SWI or BUR */
|
sl@0
|
36 |
enum TCallBackState
|
sl@0
|
37 |
{
|
sl@0
|
38 |
ECallBackState_EventEnd,
|
sl@0
|
39 |
ECallBackState_EventStart
|
sl@0
|
40 |
};
|
sl@0
|
41 |
|
sl@0
|
42 |
/**
|
sl@0
|
43 |
This description is cloned from TCallBack in e32std.h. The only difference
|
sl@0
|
44 |
between TCallBack and TCallBackWithArg is that the callback of the
|
sl@0
|
45 |
latter takes 3 arguments.
|
sl@0
|
46 |
TCallBackWithArg encapsulates a general call-back function.
|
sl@0
|
47 |
The class encapsulates:
|
sl@0
|
48 |
1. a pointer to a function which takes 3 arguments, TAny*, TInt, and TAny*
|
sl@0
|
49 |
and returns a TInt.
|
sl@0
|
50 |
2. a pointer which is passed to the function every time it is called.
|
sl@0
|
51 |
The pointer can point to any object. This pointer is required in the constructor
|
sl@0
|
52 |
but can be NULL if not used.
|
sl@0
|
53 |
3. The TInt and the other TAny* arguments are passed in when invoking the callback
|
sl@0
|
54 |
function.
|
sl@0
|
55 |
Do not let the names of the 3 callback arguments dictate their uses. Feel free
|
sl@0
|
56 |
to store anything you want or ignore anyone that is not needed.
|
sl@0
|
57 |
|
sl@0
|
58 |
The callback function can be a static function of a class,
|
sl@0
|
59 |
e.g. static TInt X::Foo(TAny*, TInt, TAny*) or
|
sl@0
|
60 |
it can be a function which is not a member of any class, e.g.
|
sl@0
|
61 |
TInt Foo(TAny *, TInt, TAny*).
|
sl@0
|
62 |
*/
|
sl@0
|
63 |
class TCallBackWithArg
|
sl@0
|
64 |
{
|
sl@0
|
65 |
public:
|
sl@0
|
66 |
// default constructor
|
sl@0
|
67 |
inline TCallBackWithArg();
|
sl@0
|
68 |
|
sl@0
|
69 |
// Real constructor requires the callback function and a pointer.
|
sl@0
|
70 |
inline TCallBackWithArg(TInt (*aFunction)(TAny* aObj, TInt aEvent, TAny* aData), TAny* aObj);
|
sl@0
|
71 |
|
sl@0
|
72 |
inline TInt CallBack(TInt aEvent = ECallBackId_None,
|
sl@0
|
73 |
TAny* aData = NULL) const;
|
sl@0
|
74 |
public:
|
sl@0
|
75 |
/** A pointer to the callback function. */
|
sl@0
|
76 |
TInt (*iFunction)(TAny* aObj, TInt aEvent, TAny* aData);
|
sl@0
|
77 |
|
sl@0
|
78 |
/** the first argument in the callback function. */
|
sl@0
|
79 |
TAny* iObj;
|
sl@0
|
80 |
};
|
sl@0
|
81 |
|
sl@0
|
82 |
//
|
sl@0
|
83 |
// Implementation of TCallBackWithArg
|
sl@0
|
84 |
//
|
sl@0
|
85 |
|
sl@0
|
86 |
/** Default contructor sets the callback function
|
sl@0
|
87 |
to NULL. This way a not yet initialized callback object will just
|
sl@0
|
88 |
do nothing. */
|
sl@0
|
89 |
inline TCallBackWithArg::TCallBackWithArg()
|
sl@0
|
90 |
: iFunction(NULL), iObj(NULL)
|
sl@0
|
91 |
{ }
|
sl@0
|
92 |
|
sl@0
|
93 |
inline TCallBackWithArg::TCallBackWithArg(TInt (*aFunction)(TAny*, TInt, TAny*), TAny* aObj)
|
sl@0
|
94 |
: iFunction(aFunction), iObj(aObj)
|
sl@0
|
95 |
{ }
|
sl@0
|
96 |
|
sl@0
|
97 |
inline TInt TCallBackWithArg::CallBack(TInt aEvent, TAny* aData) const
|
sl@0
|
98 |
{
|
sl@0
|
99 |
return (iFunction ? (*iFunction)(iObj, aEvent, aData) : 0);
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
#endif
|