equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2010 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: Easy dialing command ids. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef __EASYDIALINGCOMMANDS_HRH__ |
|
19 #define __EASYDIALINGCOMMANDS_HRH__ |
|
20 |
|
21 /* |
|
22 * Easy dialing commands live in the same id space with several other |
|
23 * enumerations. It's range is chosen so that it does not conflict these |
|
24 * others. |
|
25 * |
|
26 * The other enumerations are: |
|
27 * - phoneviewcommanddefinitions from 1 to currently ~200 |
|
28 * - phoneappcommands id space from 6000 upwards |
|
29 */ |
|
30 |
|
31 |
|
32 enum |
|
33 { |
|
34 EEasyDialingVoiceCall = 400, |
|
35 EEasyDialingVideoCall, |
|
36 EEasyDialingSendMessage, |
|
37 EEasyDialingOpenContact, |
|
38 EEasyDialingCallHandlingActivated, |
|
39 EEasyDialingEnterKeyAction, |
|
40 EEasyDialingOn, |
|
41 EEasyDialingOff, |
|
42 EEasyDialingClosePopup |
|
43 }; |
|
44 |
|
45 #endif //__EASYDIALINGCOMMANDS_HRH__ |