|
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: Phonebook 2 Group UI Extension command |
|
15 * and view definitions. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef PBK2GROUPUI_HRH |
|
21 #define PBK2GROUPUI_HRH |
|
22 |
|
23 // INCLUDES |
|
24 #include <Pbk2ViewId.hrh> |
|
25 #include <Pbk2Commands.hrh> |
|
26 |
|
27 /** |
|
28 * Commands for the Phonebook 2 Group UI Extension. |
|
29 */ |
|
30 enum TPguCommands |
|
31 { |
|
32 /// Groups list menu items |
|
33 EPbk2CmdOpenGroup = EGroupUiExtensionFirstCommand, |
|
34 EPbk2CmdCreateNewGroup, |
|
35 EPbk2CmdRenameGroup, |
|
36 EPbk2CmdRemoveGroup, |
|
37 EPbk2CmdAssignToVIPGroup, |
|
38 EPbk2CmdReleaseVIPGroup, |
|
39 EPbk2CmdWriteGroup, |
|
40 EPbk2CmdSetToneToGroup, |
|
41 |
|
42 /// Group members list menu items |
|
43 EPbk2CmdRemoveFromGroup, |
|
44 EPbk2CmdAddMembers |
|
45 }; |
|
46 |
|
47 /** |
|
48 * View ids for the Phonebook 2 Group UI Extension. |
|
49 * |
|
50 * To maintain BC the group view id's are not defined here, |
|
51 * but in Pbk2ViewId.hrh, which is a SDK level header. |
|
52 */ |
|
53 |
|
54 /** |
|
55 * Note ids for the Phonebook 2 Group UI Extension. |
|
56 */ |
|
57 enum TPguNoteId |
|
58 { |
|
59 EPguNoteContactsRemoveFromGroup = EGroupUiExtensionFirstNoteId, |
|
60 EPguNoteContactsSetRingingToneToGroup |
|
61 }; |
|
62 |
|
63 #endif // PBK2GROUPUI_HRH |
|
64 |
|
65 // End of File |