controlpanel/src/cpframework/src/cpbasesettingview_p.h
branchRCL_3
changeset 24 8ee96d21d9bf
equal deleted inserted replaced
23:8bda91a87a00 24: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:  Private implementaion for CpBaseSettingView
       
    15 *
       
    16 */
       
    17 #ifndef CPBASESETTINGVIEW_P_H
       
    18 #define CPBASESETTINGVIEW_P_H
       
    19 
       
    20 #include <QVariant>
       
    21 
       
    22 class CpBaseSettingView;
       
    23 class HbAction;
       
    24 class HbDataForm;
       
    25 class CpItemDataHelper;
       
    26 class QGraphicsWidget;
       
    27 
       
    28 class CpBaseSettingViewPrivate
       
    29 {
       
    30 public:
       
    31     CpBaseSettingViewPrivate();
       
    32     ~CpBaseSettingViewPrivate();
       
    33     /*
       
    34      initialize 
       
    35      */
       
    36     void init(QGraphicsWidget *widget,CpBaseSettingView *baseSettingView);    
       
    37     
       
    38     //SLOTS
       
    39     void _q_softkeyClicked();
       
    40 public:
       
    41     //DATA
       
    42     CpBaseSettingView *mBaseSettingView;
       
    43     HbAction *mSoftKeyBackAction;
       
    44     HbDataForm *mSettingForm;
       
    45 };
       
    46 
       
    47 #endif //CPBASESETTINGVIEW_P_H