screengrabber/inc/SGSettingListView.h
branchRCL_3
changeset 21 b3cee849fa46
parent 20 48060abbbeaf
child 22 fad26422216a
equal deleted inserted replaced
20:48060abbbeaf 21:b3cee849fa46
     1 /*
       
     2 * Copyright (c) 2009 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 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef SCREENGRABBERSETTINGLISTVIEW_H
       
    21 #define SCREENGRABBERSETTINGLISTVIEW_H
       
    22 
       
    23 // INCLUDES
       
    24 #include <aknview.h>
       
    25 #include "SGStd.h"
       
    26 
       
    27 
       
    28 // CONSTANTS
       
    29 // UID of view
       
    30 const TUid KSettingListViewUID = {2};
       
    31 
       
    32 // FORWARD DECLARATIONS
       
    33 class CScreenGrabberSettingListContainer;
       
    34 
       
    35 // CLASS DECLARATION
       
    36 
       
    37 /**
       
    38 *  CScreenGrabberSettingListView view class.
       
    39 * 
       
    40 */
       
    41 class CScreenGrabberSettingListView : public CAknView
       
    42     {
       
    43     public: // Constructors and destructor
       
    44 
       
    45         /**
       
    46         * EPOC default constructor.
       
    47         */
       
    48         void ConstructL();
       
    49 
       
    50         /**
       
    51         * Destructor.
       
    52         */
       
    53         ~CScreenGrabberSettingListView();
       
    54 
       
    55     public: // Functions from base classes
       
    56         
       
    57         /**
       
    58         * From ?base_class ?member_description
       
    59         */
       
    60         TUid Id() const;
       
    61 
       
    62         /**
       
    63         * From ?base_class ?member_description
       
    64         */
       
    65         void HandleCommandL(TInt aCommand);
       
    66 
       
    67         /**
       
    68         * From ?base_class ?member_description
       
    69         */
       
    70         void HandleClientRectChange();
       
    71 
       
    72     private:
       
    73 
       
    74         /**
       
    75         * From AknView, ?member_description
       
    76         */
       
    77         void DoActivateL(const TVwsViewId& aPrevViewId,TUid aCustomMessageId,
       
    78             const TDesC8& aCustomMessage);
       
    79 
       
    80         /**
       
    81         * From AknView, ?member_description
       
    82         */
       
    83         void DoDeactivate();
       
    84 
       
    85     private: // Data
       
    86         CScreenGrabberSettingListContainer* iContainer;
       
    87     };
       
    88 
       
    89 #endif
       
    90 
       
    91 // End of File