cpsecplugins/simpincodeplugin/inc/cppincodepluginview.h
changeset 19 098e361762d2
child 30 cc1cea6aabaf
equal deleted inserted replaced
17:8957df7b0072 19:098e361762d2
       
     1 /*
       
     2  * Copyright (c) 2010 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 #ifndef CPPINCODEPLUGINVIEW_H
       
    19 #define CPPINCODEPLUGINVIEW_H
       
    20 
       
    21 // System includes
       
    22 #include <cpbasesettingview.h>
       
    23 
       
    24 // Forward declarations
       
    25 class SecCodeSettings;
       
    26 class HbDataFormModelItem;
       
    27 
       
    28 // Class declaration
       
    29 class CpPinCodePluginView : public CpBaseSettingView
       
    30 {
       
    31     Q_OBJECT
       
    32     
       
    33 public:
       
    34     explicit CpPinCodePluginView(QGraphicsItem *parent = 0);
       
    35     virtual ~CpPinCodePluginView();
       
    36     
       
    37 private slots:
       
    38     void changePinCode();
       
    39     void changePin2Code();
       
    40     void changePinCodeRequest();
       
    41     
       
    42 private:
       
    43     SecCodeSettings *mSecCodeSettings;
       
    44     HbDataFormModelItem *mPinCodeRequestItem;
       
    45 };
       
    46 
       
    47 #endif  //CPPINCODEPLUGINVIEW_H