gsprofilesrv_plat/controlpanel_api/inc/cpsettingformitemdata.h
changeset 61 33e86ecbfdb4
parent 52 58cebe0861a8
equal deleted inserted replaced
52:58cebe0861a8 61:33e86ecbfdb4
       
     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 *						This class is a control panel defined HbDataFormModelItem
       
    16 *					
       
    17 *						
       
    18 */
       
    19 #ifndef CPSETTINGFORMITEMDATA_H
       
    20 #define CPSETTINGFORMITEMDATA_H
       
    21 
       
    22 #include <cpglobal.h>
       
    23 #include <hbdataformmodelitem.h>
       
    24 #include <QObject>
       
    25 #include <QVariant>
       
    26 
       
    27 class QString;
       
    28 class CpItemDataHelper;
       
    29 class CpSettingFormItemDataPrivate;
       
    30 
       
    31 class CP_EXPORT CpSettingFormItemData : public QObject, public HbDataFormModelItem
       
    32 {
       
    33 	Q_OBJECT
       
    34 public:
       
    35 	CpSettingFormItemData(HbDataFormModelItem::DataItemType type,
       
    36 		const QString &label,
       
    37 		const HbDataFormModelItem *parent = 0);
       
    38 	CpSettingFormItemData(const HbDataFormModelItem *parent = 0);
       
    39 	virtual ~CpSettingFormItemData();
       
    40 private:
       
    41 	CpSettingFormItemDataPrivate *d_ptr; //reservered
       
    42 };
       
    43 
       
    44 
       
    45 #endif