landmarksui/uicontrols/inc/CLmkMultiSelectionLBModel.h
branchRCL_3
changeset 17 1fc85118c3ae
parent 16 8173571d354e
child 18 870918037e16
equal deleted inserted replaced
16:8173571d354e 17:1fc85118c3ae
     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:    LandmarksUi Content File -    Multi selection listbox model
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 #ifndef CLMKMULTISELECTIONLBMODEL_H
       
    25 #define CLMKMULTISELECTIONLBMODEL_H
       
    26 
       
    27 //  INCLUDES
       
    28 #include "CLmkSelectorLBModelBase.h"
       
    29 
       
    30 // FORWARD DECLARATIONS
       
    31 class CLmkListProviderBase;
       
    32 
       
    33 // CLASS DECLARATION
       
    34 
       
    35 /**
       
    36 * CLmkMultiSelectionLBModel class
       
    37 */
       
    38 class CLmkMultiSelectionLBModel : public CLmkSelectorLBModelBase
       
    39     {
       
    40     public:  // Constructors and destructor
       
    41 
       
    42         /**
       
    43         *
       
    44         *
       
    45         * @return newly instantiated object
       
    46         */
       
    47         static CLmkMultiSelectionLBModel* NewL(
       
    48                         CLmkListProviderBase& aListProvider );
       
    49 
       
    50         /**
       
    51         * Destructor.
       
    52         */
       
    53         ~CLmkMultiSelectionLBModel();
       
    54 
       
    55     public: // New functions
       
    56 
       
    57     protected:  // New functions
       
    58 
       
    59         // leaving method
       
    60         virtual void MdcaPointL( TInt aIndex ) const;
       
    61 
       
    62     protected:  // Functions from base classes
       
    63 
       
    64     protected:  // Constructors and destructor
       
    65 
       
    66         /**
       
    67         * C++ default constructor.
       
    68         */
       
    69         CLmkMultiSelectionLBModel();
       
    70 
       
    71         /**
       
    72         * Symbian 2nd phase constructor
       
    73         */
       
    74         void ConstructL( CLmkListProviderBase& aListProvider );
       
    75 
       
    76     protected:    // Data
       
    77     };
       
    78 
       
    79 #endif      // CLMKMULTISELECTIONLBMODEL_H
       
    80 
       
    81 // End of File