equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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: This file contains declarations for resources of Application Controller. |
|
15 * The file can be included in C++ or resource file. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef APPCONTROLLER_HRH |
|
21 #define APPCONTROLLER_HRH |
|
22 |
|
23 // CONSTANTS |
|
24 |
|
25 /** |
|
26 * Application ids used to |
|
27 * check which application needs to be started |
|
28 */ |
|
29 enum TMainAppControlIds |
|
30 { |
|
31 // Core applications |
|
32 EAppVoiceMail = 1, |
|
33 #ifdef __BT |
|
34 EAppBluetooth = 2, |
|
35 #endif |
|
36 EAppWriteMessage = 3, |
|
37 EAppWriteEmail = 4, |
|
38 EAppWritePostcard = 5, |
|
39 EAppApplicationManagerCPView = 6, |
|
40 EAppVoiceCommandCPView = 7 |
|
41 }; |
|
42 |
|
43 enum TSendUiId |
|
44 { |
|
45 EAppSendUi |
|
46 }; |
|
47 |
|
48 |
|
49 // Type of message editor object |
|
50 enum TEditorType |
|
51 { |
|
52 EEditorTypeNewMessage, |
|
53 EEditorTypeNewEmail, |
|
54 EEditorTypePostcard |
|
55 }; |
|
56 |
|
57 #endif // APPCONTROLLER_HRH |
|
58 |
|
59 // End of File |