controlpanel/src/cpframework/src/cpsettingformitemdata.cpp
branchRCL_3
changeset 53 8ee96d21d9bf
equal deleted inserted replaced
51:8bda91a87a00 53:8ee96d21d9bf
       
     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:  This class is a control panel defined HbDataFormModelItem
       
    15 *
       
    16 */
       
    17 #include "cpsettingformitemdata.h"
       
    18 
       
    19 /*!
       
    20     \class CpSettingFormItemData
       
    21     \brief The CpSettingFormItemData is a extension to HbSettingItemData.
       
    22     With this class, user can monitor the value change event by connecting a slot to valueChanged slot.
       
    23  */
       
    24 
       
    25 /*!
       
    26     Construct a new CpSettingFormItemData with the given type,label and parent.
       
    27 */
       
    28 CpSettingFormItemData::CpSettingFormItemData(
       
    29         HbDataFormModelItem::DataItemType type,
       
    30         const QString &label,
       
    31         const HbDataFormModelItem *parent /*= 0*/) :   
       
    32         QObject(),
       
    33         HbDataFormModelItem(type,label,parent)
       
    34 
       
    35 {
       
    36 }
       
    37 
       
    38 /*!
       
    39     Construct a new CpSettingFormItemData with the given parent.
       
    40 */
       
    41 CpSettingFormItemData::CpSettingFormItemData(const HbDataFormModelItem *parent /*= 0*/) : 
       
    42         QObject(),
       
    43         HbDataFormModelItem(parent)
       
    44 {
       
    45 }
       
    46 
       
    47 /*!
       
    48      Destructor.
       
    49 */
       
    50 CpSettingFormItemData::~CpSettingFormItemData()
       
    51 {
       
    52 }
       
    53