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: Contains definition of constants used in CallBarringPlugin. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef GSCALLBARRINGPLUGIN_HRH |
|
19 #define GSCALLBARRINGPLUGIN_HRH |
|
20 |
|
21 enum TGSCallBarringNotes |
|
22 { |
|
23 ECBActiveNote, |
|
24 EPasswordErrorNote, |
|
25 EPasswordChangedNote, |
|
26 ECBNotActiveNote |
|
27 }; |
|
28 |
|
29 enum TGSCBMenuCommands |
|
30 { |
|
31 EGSCmdBarringActivate = 6, |
|
32 EGSCmdBarringCancel, |
|
33 EGSCmdBarringInquiry, |
|
34 EGSCmdBarringChangePwd, |
|
35 EGSCmdBarringCancelAll |
|
36 }; |
|
37 |
|
38 enum TGSMainBarringSetting |
|
39 { |
|
40 EGSCBCellular = 0, |
|
41 EGSCBInternet |
|
42 }; |
|
43 |
|
44 enum TGSBarringSetting |
|
45 { |
|
46 EGSCBOutgoing = 0, |
|
47 EGSCBInternational, |
|
48 EGSCBInternationalExceptHome, |
|
49 EGSCBIncoming, |
|
50 EGSCBAbroad |
|
51 }; |
|
52 |
|
53 enum TGSInternetBarringSetting |
|
54 { |
|
55 EGSCBAnonymous |
|
56 }; |
|
57 |
|
58 enum TGSBarringSettingActions |
|
59 { |
|
60 EGSCBActive = 0, |
|
61 EGSCBInactive = 1, |
|
62 EGSCBStatus = 2, |
|
63 EGSCBCancelAll = 3, |
|
64 EGSCBChangePwd = 4 |
|
65 }; |
|
66 |
|
67 enum TGSCBPasswordType |
|
68 { |
|
69 EGSCBNormalPw, |
|
70 EGSCBCurrentPw, |
|
71 EGSCBNewPw, |
|
72 EGSCBVerifyPw |
|
73 }; |
|
74 |
|
75 // Internet call barring |
|
76 enum TGSVoIPCallBarring |
|
77 { |
|
78 EGSCSCallBarringOn = 0, // Default |
|
79 EGSCSCallBarringOff |
|
80 }; |
|
81 |
|
82 // VoIP specific setting id's |
|
83 enum TGSVoIPSetting |
|
84 { |
|
85 EGSVoIPSendIntCallId = 0, |
|
86 EGSVoIPCW, |
|
87 EGSVoIPPreType, |
|
88 EGSVoIPDnd, |
|
89 EGSVoIPBarring |
|
90 }; |
|
91 |
|
92 #endif // GSCALLBARRINGPLUGIN_HRH |
|
93 |
|
94 //End of File |
|