33
|
1 |
/*
|
|
2 |
* Copyright (c) 2004-2005 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: Defines UIDs used in CallUI.
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#ifndef CAUI_HRH
|
|
20 |
#define CAUI_HRH
|
|
21 |
|
|
22 |
|
|
23 |
// CONSTANTS
|
|
24 |
|
|
25 |
// Connection utility implementation uid.
|
|
26 |
#define KCallUIImplementationUid 0x101F868E
|
|
27 |
#define KCallUIImplementationUid2 0x102029A1
|
|
28 |
|
|
29 |
// Create list query listbox height.
|
|
30 |
enum
|
|
31 |
{
|
|
32 |
ECaUiCreateListQueryHeight = 3
|
|
33 |
};
|
|
34 |
|
|
35 |
// Create list query listbox width.
|
|
36 |
enum
|
|
37 |
{
|
|
38 |
ECaUiCreateListQueryWidth = 3
|
|
39 |
};
|
|
40 |
|
|
41 |
|
|
42 |
// Values for different kinds of call commands.
|
|
43 |
enum
|
|
44 |
{
|
|
45 |
ECallUIVoice = 500, // Normal, i.e. voice call.
|
|
46 |
ECallUIVideo = 501, // Video call.
|
|
47 |
ECallUIInternet = 502 // Internet call ( VoIP )
|
|
48 |
};
|
|
49 |
|
|
50 |
// Values used in communication between CaUiEngine and CaUiPlugin.
|
|
51 |
enum TCaUiCallType
|
|
52 |
{
|
|
53 |
ECaUiCallTypeUnknown = 0, // Call type is unknown.
|
|
54 |
ECaUiCallTypeVoice = 1, // Call type is voice call.
|
|
55 |
ECaUiCallTypeVideo = 2, // Call type is video call.
|
|
56 |
ECaUiCallTypeInternet = 3 // Call type is Internet call
|
|
57 |
};
|
|
58 |
|
|
59 |
enum EMenuItemType {
|
|
60 |
ECSVoice,
|
|
61 |
ECSVideo,
|
|
62 |
EInternet,
|
|
63 |
EInternetWithName
|
|
64 |
};
|
|
65 |
|
|
66 |
#endif // CAUI_HRH
|
|
67 |
|
|
68 |
|
|
69 |
// End of File
|