clientprovisioning/cpqtsp/inc/CpMessage.h
changeset 45 0f9fc722d255
equal deleted inserted replaced
44:137912d1a556 45:0f9fc722d255
       
     1 /*
       
     2 * Copyright (c) 2002 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 
       
    19 #ifndef CPMESSAGE_H_
       
    20 #define CPMESSAGE_H_
       
    21 
       
    22 #include <QObject>
       
    23 #include <HbAction>
       
    24 
       
    25 class CWPBioControl;
       
    26 
       
    27 class CpMessage : public QObject
       
    28 {
       
    29     Q_OBJECT
       
    30 
       
    31 public:
       
    32     CpMessage(CWPBioControl* bio);
       
    33     ~CpMessage();
       
    34     void inValidPinMessage();
       
    35     void saveSettingMessage();
       
    36     void settingNotSaved();
       
    37     void setAsDefault();
       
    38     void autheticationFailure();
       
    39     void senderUnknown();
       
    40 public slots:
       
    41     void saveSettingDialogClosed(HbAction *action);
       
    42     void setAsDefaultDialogClosed(HbAction *action);
       
    43     void autheticationFailureDialogClosed(HbAction *action);
       
    44     void senderUnknownDialogClosed(HbAction *action);
       
    45 private:
       
    46     CWPBioControl* iBioControl;
       
    47 };
       
    48 
       
    49 #endif /* CPMESSAGE_H_ */