|
1 /* |
|
2 * Copyright (c) 2004 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 the License "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 the Feeds commands. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef FEEDS_APP_HRH |
|
21 #define FEEDS_APP_HRH |
|
22 |
|
23 // Feeds enumerate command codes |
|
24 enum TFeedsCommandIds |
|
25 { |
|
26 // Debug sub-menu commands |
|
27 EFeedsDebug = 0x6000, |
|
28 EFeedsAppCmd0, |
|
29 EFeedsAppCmd1, |
|
30 EFeedsAppCmd2, |
|
31 EFeedsAppCmd3, |
|
32 EFeedsAppCmd4, |
|
33 EFeedsAppCmd5, |
|
34 EFeedsAppCmd6, |
|
35 EFeedsAppCmd7, |
|
36 EFeedsAppCmd8, |
|
37 EFeedsAppCmd9, |
|
38 EFeedsAppCmd10, |
|
39 EFeedsAppCmd11, |
|
40 EFeedsAppCmd12, |
|
41 EFeedsAppCmd13, |
|
42 EFeedsAppCmd14, |
|
43 EFeedsAppCmd15, |
|
44 EFeedsAppCmd16, |
|
45 EFeedsAppCmd17, |
|
46 EFeedsAppCmd18, |
|
47 EFeedsAppCmd19, |
|
48 EFeedsAppCmd20, |
|
49 EFeedsAppCmd21, |
|
50 EFeedsAppCmd22, |
|
51 EFeedsAppCmd23, |
|
52 |
|
53 EShowFolderView, |
|
54 EShowTestHarnessView, |
|
55 ESubscribeTo |
|
56 }; |
|
57 |
|
58 |
|
59 enum TFeedsAppViewIds |
|
60 { |
|
61 EFeedsTestHarnessViewUid = 0 |
|
62 }; |
|
63 |
|
64 |
|
65 // Feeds enumerate command codes |
|
66 enum TOldFeedsCommandIds |
|
67 { |
|
68 // Option menu commands |
|
69 EFeedsActivate = 0x6000, |
|
70 EFeedsSeeFullStory, |
|
71 EFeedsUpdate, |
|
72 EFeedsUpdateAll, |
|
73 EFeedsBackToPage, |
|
74 EFeedsWebMenu, |
|
75 EFeedsManage, |
|
76 EFeedsMarkUnMark, |
|
77 EFeedsNavigation, |
|
78 EFeedsTools, |
|
79 EFeedsAdvanced, |
|
80 EFeedsSend, |
|
81 EFeedsInfo, |
|
82 EFeedsSettings, |
|
83 |
|
84 // Manage sub-menu commands |
|
85 EFeedsMove, |
|
86 EFeedsMoveToFolder, |
|
87 EFeedsNewFolder, |
|
88 EFeedsNewFeed, |
|
89 EFeedsRename, |
|
90 EFeedsEdit, |
|
91 EFeedsDelete, |
|
92 |
|
93 // Navigation sub-menu commands |
|
94 EFeedsGotoAddress, |
|
95 EFeedsHome, |
|
96 EFeedsSearch, |
|
97 |
|
98 // Tools sub-menu commands |
|
99 EFeedsFindFeed, |
|
100 EFeedsDownloads, |
|
101 |
|
102 // Advanced sub-menu commands |
|
103 EFeedsChangeConnection, |
|
104 EFeedsDisconnect, |
|
105 |
|
106 // Send sub-menu commands |
|
107 |
|
108 // Info sub-menu commands |
|
109 EFeedsSession, |
|
110 EFeedsAbout |
|
111 }; |
|
112 |
|
113 |
|
114 enum TFeedsResourceIds |
|
115 { |
|
116 EFeedsWaitNoteDlgId = 1, |
|
117 EFeedsProgressDlgId, |
|
118 EFeedsEditFeedDialogId, |
|
119 EFeedsEditDialogNameId, |
|
120 EFeedsEditDialogUrlId |
|
121 }; |
|
122 |
|
123 // CRichTextEditor |
|
124 #define KNumberOfLinesInRichTextEditor 7 |
|
125 |
|
126 |
|
127 // CEditFeedDialog |
|
128 #define KMaxFeedNameLength 50 |
|
129 #define KMaxFeedUrlLength 1000 |
|
130 |
|
131 |
|
132 #endif // FEEDS_VIEW_MGR_HRH |