wlanutilities/wlansettingsui/inc/wlansettingsuiimpl.h
branchRCL_3
changeset 25 f28ada11abbf
parent 0 56b72877c1cb
equal deleted inserted replaced
24:63be7eb3fc78 25:f28ada11abbf
       
     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 "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: 
       
    15 *      Declaration of class CWlanSettingsUiImpl.   
       
    16 *      
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef WLAN_SETTINGS_UI_IMPL_H
       
    22 #define WLAN_SETTINGS_UI_IMPL_H
       
    23 
       
    24 // INCLUDES
       
    25 
       
    26 #include <e32base.h>
       
    27 #include <wlancontainer.h>
       
    28 #include <ConeResLoader.h>
       
    29 
       
    30 
       
    31 // FORWARD DECLARATIONS
       
    32 
       
    33 class CEikonEnv;
       
    34 class CWlanSettingsUiImplImpl;
       
    35 class CWlanMgmtClient;
       
    36 class CRepository;
       
    37 
       
    38 // CLASS DECLARATION
       
    39 
       
    40 /**
       
    41 * WLAN Settings UI implementation (behind proxy class CWlanSettingsUi):
       
    42 * entry points for WLAN Settign UI functionality.
       
    43 */
       
    44 NONSHARABLE_CLASS( CWlanSettingsUiImpl ): public CBase
       
    45     {
       
    46 
       
    47     public:     // Constructors and destructor
       
    48 
       
    49         /**
       
    50         * Two-phased constructor. Leaves on failure.
       
    51         * @param aEikEnv Eikon environment.
       
    52         * @return The constructed CWlanSettingsUiImpl object.
       
    53         */
       
    54         static CWlanSettingsUiImpl* NewL( CEikonEnv& aEikEnv );
       
    55 
       
    56         /**
       
    57         * Destructor.
       
    58         */
       
    59         virtual ~CWlanSettingsUiImpl();
       
    60 
       
    61     protected:  // Constructors
       
    62 
       
    63         /**
       
    64         * Constructor.
       
    65         * @param aEikEnv Eikon environment.
       
    66         */
       
    67         CWlanSettingsUiImpl( CEikonEnv& aEikEnv );
       
    68 
       
    69         /**
       
    70         * Second-phase constructor.
       
    71         */
       
    72         void ConstructL();
       
    73 
       
    74     public:     // New methods
       
    75 
       
    76         /**
       
    77         * Launch General WLAN Settings view.
       
    78         * @param aCommsDb Comms database.
       
    79         */
       
    80         void RunSettingsL( CMDBSession* aSession );
       
    81 
       
    82     private:    // Data 
       
    83 
       
    84         /*
       
    85         * Eikon environment. Not owned.
       
    86         */
       
    87         CEikonEnv* iEikEnv;     
       
    88         
       
    89         /*
       
    90         * @var resource loader
       
    91         */
       
    92         RConeResourceLoader iResources;
       
    93         
       
    94         /*
       
    95         * Wlan management
       
    96         */
       
    97         CWlanMgmtClient* iWlanMgmtClient;
       
    98         
       
    99         /*
       
   100         * Centeral Repository
       
   101         */
       
   102         CRepository* iRepository;
       
   103         
       
   104     };
       
   105 
       
   106 #endif