|
1 /* |
|
2 * Copyright (c) 2006-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: Avkon Internal Publish & Subscribe keys. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef AVKONINTERNALPSKEYS_H |
|
19 #define AVKONINTERNALPSKEYS_H |
|
20 |
|
21 const TUid KPSUidAvkonInternal = { 0x10207218 }; // Same as KPSUidAvkonDomain |
|
22 |
|
23 // |
|
24 // Note that KPSUidAvkonInternal key range starts from 0x10000000 to avoid |
|
25 // conflicts with KPSUidAvkonDomain keys that are using same Uid. |
|
26 // |
|
27 |
|
28 /** |
|
29 * Indicates the system controlled signal-, battery- and universal indicator data |
|
30 * status. |
|
31 * |
|
32 * See AknStatusPaneData.h for data structure details. |
|
33 * |
|
34 */ |
|
35 const TUint32 KAknStatusPaneSystemData = 0x10000000; |
|
36 |
|
37 /** |
|
38 * The window group ID of the Idle application. |
|
39 */ |
|
40 const TUint32 KAknIdleAppWindowGroupId = 0x10000001; |
|
41 |
|
42 /** |
|
43 * Turn off task swapper option in menu option |
|
44 */ |
|
45 const TUint32 KAknMenuOptionNoTaskSwapper = 0x10000002; |
|
46 |
|
47 /** |
|
48 * Bitmap handle for fade plugin |
|
49 */ |
|
50 const TUint32 KAknFadeBitmapHandle = 0x10000003; |
|
51 |
|
52 /** |
|
53 * Mask handle for fade plugin |
|
54 */ |
|
55 const TUint32 KAknFadeMaskHandle = 0x10000004; |
|
56 |
|
57 /** |
|
58 * Color for fade plugin |
|
59 */ |
|
60 const TUint32 KAknFadeColorHandle = 0x10000005; |
|
61 |
|
62 /** |
|
63 * BlackMap for fade plugin |
|
64 */ |
|
65 const TUint32 KAknFadeBlackMapHandle = 0x10000006; |
|
66 |
|
67 /** |
|
68 * WhiteMap for fade plugin |
|
69 */ |
|
70 const TUint32 KAknFadeWhiteMapHandle = 0x10000007; |
|
71 |
|
72 #endif |
|
73 |
|
74 // End of file |