homesync/contentmanager/mediaservant/inc/msstoresettingsview.h
branchIOP_Improvements
changeset 40 08b5eae9f9ff
parent 39 6369bfd1b60d
child 41 b4d83ea1d6e2
equal deleted inserted replaced
39:6369bfd1b60d 40:08b5eae9f9ff
     1 /*
       
     2 * Copyright (c) 2008 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:  CMSStoreSettingsView class definition
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 #ifndef C_MSSTORESETTINGSVIEW_H
       
    23 #define C_MSSTORESETTINGSVIEW_H
       
    24 
       
    25 // INCLUDES
       
    26 #include "msbaseview.h"
       
    27 
       
    28 // FORWARD DECLARATIONS
       
    29 class CMSAppUi;
       
    30 class CMSEngine;
       
    31 class CMSStoreSettingsList;
       
    32 
       
    33 /**
       
    34  * CMSStoreSettingsView class.
       
    35  *
       
    36  *  @since S60 5.1
       
    37  */
       
    38 NONSHARABLE_CLASS( CMSStoreSettingsView ) : public CMSBaseView
       
    39     {
       
    40 
       
    41     public:
       
    42 
       
    43         /**
       
    44          * Constructor.
       
    45          *
       
    46          * @since S60 5.1
       
    47          * @param aAppUi, application UI
       
    48          * @return None
       
    49          */
       
    50         CMSStoreSettingsView( CMSAppUi& aAppUi );
       
    51 
       
    52         /**
       
    53          * default constructor.
       
    54          */
       
    55         void ConstructL();
       
    56 
       
    57         /**
       
    58          * Destructor.
       
    59          */
       
    60         virtual ~CMSStoreSettingsView();
       
    61 
       
    62     protected:
       
    63     
       
    64 // From base class CAknView
       
    65 
       
    66         /**
       
    67          * From CAknView
       
    68          * See base class definition
       
    69          */
       
    70         TUid Id() const;
       
    71 
       
    72         /**
       
    73          * From CAknView
       
    74          * See base class definition
       
    75          */
       
    76         void DoActivateL(
       
    77                 const TVwsViewId& aPrevViewId,
       
    78                 TUid aCustomMessageId,
       
    79                 const TDesC8& aCustomMessage );
       
    80 
       
    81         /**
       
    82          * From CAknView
       
    83          * See base class definition
       
    84          */
       
    85         void DoDeactivate();
       
    86         
       
    87 // From base class MEikMenuObserver
       
    88         
       
    89         /**
       
    90          * From MEikMenuObserver
       
    91          * See base class definition
       
    92          */
       
    93         void HandleCommandL( TInt aCommand );
       
    94 
       
    95 
       
    96     private:
       
    97 
       
    98         /**
       
    99          * pointer to AppUi object
       
   100          */
       
   101         CMSAppUi&                           iAppUi;         // not owned
       
   102         /**
       
   103          * Views container class
       
   104          */
       
   105         CMSStoreSettingsList*               iContainer;     // owned
       
   106     };
       
   107 
       
   108 #endif // C_MSSTORESETTINGSVIEW_H
       
   109 
       
   110 
       
   111 // End of File