sl@0
|
1 |
// Copyright (c) 1997-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 |
// Started by BLB, October 1996
|
sl@0
|
17 |
#if !defined(__BACNTF_H__)
|
sl@0
|
18 |
#define __BACNTF_H__
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <e32base.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
|
sl@0
|
23 |
class CEnvironmentChangeNotifier : public CActive
|
sl@0
|
24 |
/** Environment change notifier. This is an active object and can be used to handle
|
sl@0
|
25 |
environment change events.
|
sl@0
|
26 |
@publishedAll
|
sl@0
|
27 |
@released
|
sl@0
|
28 |
*/
|
sl@0
|
29 |
{
|
sl@0
|
30 |
public:
|
sl@0
|
31 |
IMPORT_C static CEnvironmentChangeNotifier* NewL(TInt aPriority,const TCallBack& aCallBack);
|
sl@0
|
32 |
IMPORT_C ~CEnvironmentChangeNotifier();
|
sl@0
|
33 |
IMPORT_C void Start();
|
sl@0
|
34 |
IMPORT_C TInt Set(const TCallBack& aCallBack);
|
sl@0
|
35 |
inline TInt Change() const;
|
sl@0
|
36 |
private:
|
sl@0
|
37 |
inline CEnvironmentChangeNotifier(TInt aPriority);
|
sl@0
|
38 |
void RunL();
|
sl@0
|
39 |
void DoCancel();
|
sl@0
|
40 |
private:
|
sl@0
|
41 |
TInt iChange;
|
sl@0
|
42 |
TCallBack iCallBack;
|
sl@0
|
43 |
RChangeNotifier iChangeNotifier;
|
sl@0
|
44 |
};
|
sl@0
|
45 |
|
sl@0
|
46 |
|
sl@0
|
47 |
|
sl@0
|
48 |
inline TInt CEnvironmentChangeNotifier::Change() const
|
sl@0
|
49 |
/** Returns the last set of change events.
|
sl@0
|
50 |
|
sl@0
|
51 |
If the last outstanding request completed normally, the function returns a
|
sl@0
|
52 |
bit pattern where each bit value corresponds to one of the enumerators defined
|
sl@0
|
53 |
by TChanges. A set bit indicates that the corresponding change event occurred.
|
sl@0
|
54 |
|
sl@0
|
55 |
For example, if the bit value TChanges::EChangesMidnightCrossover is set,
|
sl@0
|
56 |
then the system time has passed midnight.
|
sl@0
|
57 |
|
sl@0
|
58 |
@return A set of bits consisting of one or more of the values defined by TChanges,
|
sl@0
|
59 |
or KErrCancel if the last outstanding request was cancelled.
|
sl@0
|
60 |
@see TChanges */
|
sl@0
|
61 |
{return iChange;}
|
sl@0
|
62 |
|
sl@0
|
63 |
#endif
|
sl@0
|
64 |
|
sl@0
|
65 |
|