|
1 /* |
|
2 * Copyright (c) 2004-2008 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: SATEngine Subsystem PubSub uid and keys declaration. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef SATINTERNALPSKEYS_H |
|
20 #define SATINTERNALPSKEYS_H |
|
21 |
|
22 // CONSTANTS |
|
23 |
|
24 // SAT Internal Configuration API |
|
25 |
|
26 /* |
|
27 * The UID for internal use only. Using process secure uid 0x1000A833 |
|
28 * which is define in satserver.mmp |
|
29 */ |
|
30 const TUid KPSUidSatServerInternal = { 0x1000A833 }; |
|
31 |
|
32 /* |
|
33 * Indicates the occurred End Key action. Used to determine whether to fetch |
|
34 * icons from NAA syncronously or asynchronously. When the value is set to 1 |
|
35 * it indicates that the End Key is pressed and synchronous mode must be used. |
|
36 * |
|
37 * Default value: 0 |
|
38 */ |
|
39 const TUint32 KSatAppClosedUsingEndKey( 0x00000032 ); |
|
40 |
|
41 /** |
|
42 * Set Up Idle Mode Text. Value is a unicode string with length 0 to 242. |
|
43 * |
|
44 * Default value: N/A |
|
45 **/ |
|
46 const TUint32 KSatIdleModeText( 0x00000001 ); |
|
47 |
|
48 /** |
|
49 * Set Up Idle Mode Text Icon Id. Possible values are -1 to 255. |
|
50 * ID Determined independently of SAT. |
|
51 * |
|
52 * Default value: N/A |
|
53 */ |
|
54 const TUint32 KSatIdleModeTextIconId( 0x00000002 ); |
|
55 |
|
56 /** |
|
57 * Set Up Idle Mode Text Icon qualifier. |
|
58 * |
|
59 * Default value: N/A |
|
60 */ |
|
61 const TUint32 KSatIdleModeTextIconQualifier( 0x00000004 ); |
|
62 |
|
63 /** |
|
64 * Possible enumerations values for KSatAppClosedUsingEndKey. |
|
65 */ |
|
66 enum TSatAppTerminatedEventValue |
|
67 { |
|
68 KSatAppTerminatedNormal, |
|
69 KSatAppTerminatedUsingEndKey |
|
70 }; |
|
71 |
|
72 /** |
|
73 * Possible enumerations values for KSatIdleModeTextIconQualifier. |
|
74 */ |
|
75 enum TSatIdleModeTextIconQualifierValue |
|
76 { |
|
77 KSatIdleIconQInit = 0x00, |
|
78 KSatIdleIconQNoIcon = 0x01, |
|
79 KSatIdleIconQSelfExplanatory = 0x02, |
|
80 KSatIdleIconQNotSelfExplanatory = 0x04 |
|
81 }; |
|
82 |
|
83 #endif // SATINTERNALPSKEYS_H |
|
84 |
|
85 // End of File |