equal
deleted
inserted
replaced
14 * Description: Implementation of EAP PEAP UI settings dialog |
14 * Description: Implementation of EAP PEAP UI settings dialog |
15 * |
15 * |
16 */ |
16 */ |
17 |
17 |
18 /* |
18 /* |
19 * %version: 37.1.8 % |
19 * %version: 37.1.9 % |
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> |
45 #include <EapTypeInfo.h> // For EAP type info query |
45 #include <EapTypeInfo.h> // For EAP type info query |
46 #include <AknIconArray.h> |
46 #include <AknIconArray.h> |
47 #include <AknsUtils.h> |
47 #include <AknsUtils.h> |
48 #include <featmgr.h> |
48 #include <featmgr.h> |
49 #include <hlplch.h> |
49 #include <hlplch.h> |
50 #include <csxhelp/cp.hlp.hrh> |
|
51 |
50 |
52 |
51 |
53 // CONSTANTS |
52 // CONSTANTS |
54 // UID of general settings app, in which help texts are included |
53 // UID of general settings app, in which help texts are included |
55 const TUid KHelpUidPlugin = { 0x100058EC }; |
54 const TUid KHelpUidPlugin = { 0x100058EC }; |
1783 |
1782 |
1784 // ----------------------------------------------------------------------------- |
1783 // ----------------------------------------------------------------------------- |
1785 // CEapPeapUiDialog::GetHelpContext |
1784 // CEapPeapUiDialog::GetHelpContext |
1786 // ----------------------------------------------------------------------------- |
1785 // ----------------------------------------------------------------------------- |
1787 // |
1786 // |
1788 void CEapPeapUiDialog::GetHelpContext(TCoeHelpContext& aContext) const |
1787 void CEapPeapUiDialog::GetHelpContext(TCoeHelpContext& /* aContext */) const |
1789 { |
1788 { |
1790 aContext.iMajor = KHelpUidPlugin; |
1789 // Avkon help dependencies removed, hence do nothing |
1791 TPageIds index = static_cast< TPageIds >( ActivePageIndex() ); |
1790 return; |
1792 switch ( index ) |
|
1793 { |
|
1794 case EEapTypePage: |
|
1795 { |
|
1796 aContext.iContext = KSET_HLP_WLAN_EAP_PEAP_TYPES; |
|
1797 break; |
|
1798 } |
|
1799 |
|
1800 case ECipherSuitePage: |
|
1801 { |
|
1802 aContext.iContext = KSET_HLP_WLAN_EAP_PEAP_SUITES; |
|
1803 break; |
|
1804 } |
|
1805 |
|
1806 default: |
|
1807 { |
|
1808 aContext.iContext = KSET_HLP_WLAN_EAP_PEAP_SETT; |
|
1809 break; |
|
1810 } |
|
1811 } |
|
1812 } |
1791 } |
1813 |
1792 |
1814 |
1793 |
1815 |
1794 |
1816 void CEapPeapUiDialog::GetFullCertLabelL( const SCertEntry& aCert, |
1795 void CEapPeapUiDialog::GetFullCertLabelL( const SCertEntry& aCert, |