|
1 /* |
|
2 * Copyright (c) 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: Telephony Internal Singleton UIDs. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef TELINTERNALSINGLETONUIDS_H |
|
20 #define TELINTERNALSINGLETONUIDS_H |
|
21 |
|
22 #include <e32std.h> |
|
23 |
|
24 // CONSTANTS |
|
25 |
|
26 /***************************************************************************** |
|
27 * Telephony Internal Singleton UIDs |
|
28 *****************************************************************************/ |
|
29 |
|
30 // Phone Application's State Machine Singleton UID |
|
31 static const TUid KUidStateHandleSingleton = { 0x01 }; |
|
32 |
|
33 // Phone Application's View Controller Singleton UID |
|
34 static const TUid KUidPhoneViewControllerSingleton = { 0x02 }; |
|
35 |
|
36 // Phone Application's Status Pane Handler Singleton UID |
|
37 static const TUid KUidPhoneStatusPaneHandlerSingleton = { 0x03 }; |
|
38 |
|
39 // Phone Application's Resource Resolver Singleton UID |
|
40 static const TUid KUidMainResourceResolverSingleton = { 0x04 }; |
|
41 |
|
42 // Phone Application's Logger Singleton UID |
|
43 static const TUid KUidPhoneUILoggerSingleton = { 0x05 }; |
|
44 |
|
45 // Phone Application's Central Repository Proxy Singleton UID |
|
46 static const TUid KUidCenRepProxySingleton = { 0x06 }; |
|
47 |
|
48 // Phone Application's Publish and Subscribe Proxy Singleton UID |
|
49 static const TUid KUidPubSubProxySingleton = { 0x07 }; |
|
50 |
|
51 // Phone Application's Recovery System Singleton UID |
|
52 static const TUid KUidRecoverySystemSingleton = { 0x08 }; |
|
53 |
|
54 // Phone Application's Reconnect Query Singleton UID |
|
55 static const TUid KUidReconnectQuerySingleton = { 0x09 }; |
|
56 |
|
57 // Phone Application's Call Header Animation Singleton UID |
|
58 static const TUid KUidCallHeaderTextAnimationSingleton = { 0x0A }; |
|
59 |
|
60 // Phone Application's Call Black List Clearing Singleton UID |
|
61 static const TUid KUidClearBlackListSingleton = { 0x0B }; |
|
62 |
|
63 // Phone Application's Error message Handler Singleton UID |
|
64 static const TUid KUidMainErrorMessagesHandlerSingleton = { 0x0D }; |
|
65 |
|
66 // Phone Application's bluetooth accessory disconnect handler singleton UID. |
|
67 static const TUid KUidBtaaDisconnectHandlerSingleton = { 0x0E }; |
|
68 |
|
69 // Phone Mediator Command Listener Singleton UID |
|
70 static const TUid KUidMediatorCommandListenerSingleton = { 0x0F }; |
|
71 |
|
72 // Phone Mediator Sender Singleton UID |
|
73 static const TUid KUidMediatorSenderSingleton = { 0x10 }; |
|
74 |
|
75 // Phone Mediator Factory Singleton UID |
|
76 static const TUid KUidMediatorFactorySingleton = { 0x11 }; |
|
77 |
|
78 #endif // TELINTERNALSINGLETONUIDS_H |
|
79 |
|
80 // End of File |