|
1 /* |
|
2 * Copyright (c) 2005-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: The set of messages provided to Secondary Display software by |
|
15 * : cch application. |
|
16 * |
|
17 */ |
|
18 |
|
19 #ifndef CCH_SECONDARY_DISPLAY_API_H |
|
20 #define CCH_SECONDARY_DISPLAY_API_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32base.h> |
|
24 |
|
25 /* |
|
26 * ============================================================================== |
|
27 * This file contains the following sections: |
|
28 * - Dialog definitions |
|
29 * - Command definitions |
|
30 * - Event definitions |
|
31 * - Parameter definitions |
|
32 * ============================================================================== |
|
33 */ |
|
34 |
|
35 namespace SecondaryDisplay |
|
36 { |
|
37 |
|
38 // The category UID for the messages in this header file. |
|
39 // |
|
40 const TUid KCatCch = {0x10282CE6}; |
|
41 |
|
42 /* |
|
43 * ============================================================================== |
|
44 * Dialogs shown by Cch subsystem. These messages are handled using the |
|
45 * Secondary Display support in Avkon. |
|
46 * ============================================================================== |
|
47 */ |
|
48 enum TSecondaryDisplayCchDialogs |
|
49 { |
|
50 /** |
|
51 * No note. Error condition if this comes to CoverUI |
|
52 */ |
|
53 ECmdNoNote = 0, |
|
54 |
|
55 /** |
|
56 * A command for showing the VoIP "Do not show this emergency call warning in the future" |
|
57 * query on secondary display. |
|
58 */ |
|
59 ECmdShowDoNotShowVoipEmergencyCallWarningQuery, |
|
60 |
|
61 /** |
|
62 * A command for showing the query about VoIP call readiness being reached |
|
63 * first time on secondary display. |
|
64 */ |
|
65 ECmdShowVoipEmergencyCallReadinessQuery, |
|
66 |
|
67 /** |
|
68 * A command for showing the query about only having VoIP call capability |
|
69 * on secondary display. |
|
70 */ |
|
71 ECmdShowVoipEmergencyCallErrorNoteNoCsQuery, |
|
72 }; |
|
73 |
|
74 } // namespace SecondaryDisplay |
|
75 |
|
76 #endif // CCH_SECONDARY_DISPLAY_API_H |
|
77 |
|
78 // End of File |