equal
deleted
inserted
replaced
14 * Description: Implementation of EAP TLS UI settings dialog |
14 * Description: Implementation of EAP TLS UI settings dialog |
15 * |
15 * |
16 */ |
16 */ |
17 |
17 |
18 /* |
18 /* |
19 * %version: 41 % |
19 * %version: 42 % |
20 */ |
20 */ |
21 |
21 |
22 // INCLUDE FILES |
22 // INCLUDE FILES |
23 #include <eikdialg.h> |
23 #include <eikdialg.h> |
24 #include <AknDialog.h> |
24 #include <AknDialog.h> |
42 #include <AknIconArray.h> |
42 #include <AknIconArray.h> |
43 #include <AknsUtils.h> |
43 #include <AknsUtils.h> |
44 |
44 |
45 #include <featmgr.h> |
45 #include <featmgr.h> |
46 #include <hlplch.h> |
46 #include <hlplch.h> |
47 #include <csxhelp/cp.hlp.hrh> |
|
48 |
47 |
49 |
48 |
50 // CONSTANTS |
49 // CONSTANTS |
51 // UID of general settings app, in which help texts are included |
50 // UID of general settings app, in which help texts are included |
52 const TUid KHelpUidPlugin = { 0x100058EC }; |
51 const TUid KHelpUidPlugin = { 0x100058EC }; |
1186 |
1185 |
1187 // ----------------------------------------------------------------------------- |
1186 // ----------------------------------------------------------------------------- |
1188 // CEapTlsUiDialog::GetHelpContext |
1187 // CEapTlsUiDialog::GetHelpContext |
1189 // ----------------------------------------------------------------------------- |
1188 // ----------------------------------------------------------------------------- |
1190 // |
1189 // |
1191 void CEapTlsUiDialog::GetHelpContext( TCoeHelpContext& aContext ) const |
1190 void CEapTlsUiDialog::GetHelpContext( TCoeHelpContext& /* aContext */ ) const |
1192 { |
1191 { |
1193 aContext.iMajor = KHelpUidPlugin; |
1192 // Avkon help dependencies removed, hence do nothing |
1194 TPageIds index = static_cast< TPageIds >( ActivePageIndex() ); |
1193 return; |
1195 switch ( index ) |
|
1196 { |
|
1197 case ECipherSuitePage: |
|
1198 { |
|
1199 aContext.iContext = KSET_HLP_WLAN_EAP_TLS_SUITES; |
|
1200 break; |
|
1201 } |
|
1202 |
|
1203 default: |
|
1204 { |
|
1205 aContext.iContext = KSET_HLP_WLAN_EAP_TLS_SETT; |
|
1206 break; |
|
1207 } |
|
1208 } |
|
1209 } |
1194 } |
1210 |
1195 |
1211 |
1196 |
1212 |
1197 |
1213 void CEapTlsUiDialog::GetFullCertLabel( const SCertEntry& aCert, |
1198 void CEapTlsUiDialog::GetFullCertLabel( const SCertEntry& aCert, |