securitysettings/eapqtdialogs/inc/eapfastcreatemasterkeyquerydialog.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 31 Aug 2010 15:16:37 +0300
branchRCL_3
changeset 18 bad0cc58d154
permissions -rw-r--r--
Revision: 201029 Kit: 201035

/*
* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). 
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: EAP-FAST Create Master Key Query Dialog
*
*/

/*
* %version: 4 %
*/

#ifndef __EAPFASTCREATEMASTERKEYQUERYDIALOG_H__
#define __EAPFASTCREATEMASTERKEYQUERYDIALOG_H__

// System includes
#include <HbInputDialog>
#include <hbdevicedialoginterface.h>

// User includes

// Forward declarations
class HbLineEdit;
class HbTranslator;
class EapQtValidator;

// External data types

// Constants

/*!
   @addtogroup group_eap_fast_create_master_key_query_dialog
   @{
 */

// Class declaration

class EapFastCreateMasterKeyQueryDialog: public HbInputDialog, public HbDeviceDialogInterface
    {
    Q_OBJECT

    public:
        /* Constructor */
        EapFastCreateMasterKeyQueryDialog(const QVariantMap &parameters);
        /* Destructor */
        ~EapFastCreateMasterKeyQueryDialog();
        
        /* Function creates the actual dialog widget */
        void createDialog( const QVariantMap &parameters );
        
        /* Device dialog parameters to be set while dialog is displayed.
         * Not supported. (from HbDeviceDialogInterface)
         */
        bool setDeviceDialogParameters(const QVariantMap &parameters);
        
        /* Not supported. (from HbDeviceDialogInterface) */
        int deviceDialogError() const;
        
        /* Closes the device dialog. (from HbDeviceDialogInterface) */
        void closeDeviceDialog(bool byClient);
        
        /* Returns a pointer to this dialog widget.
           (from HbDeviceDialogInterface) */
        HbPopup *deviceDialogWidget() const;
                
    signals:
        /* Signal is emitted when the dialog is closed */
        void deviceDialogClosed();
    
        /* Data is emitted in QVariantMap when Ok Action button is selected */
        void deviceDialogData(QVariantMap data);
        
    private slots:
        /* Slot that is mapped to the Ok Action button's triggered signal */
        void okPressed();
                
        /* Slot that is mapped to the Cancel Action button's triggered signal */
        void cancelPressed();
        
        /* Slot that is mapped to the signal that indicates to closing of the dialog */
        void closingDialog();
               
    private:
        
        bool validate() const;
        
        Q_DISABLE_COPY(EapFastCreateMasterKeyQueryDialog)
   
    private: // data
        // NOT OWNED
        //! Pointer to the line edit 1 object 
        HbLineEdit *mEdit1;
        
        //! Pointer to the line edit 2 object
        HbLineEdit *mEdit2;
        
        // OWNED                
        //! Pointer to the password validator object
        QScopedPointer<EapQtValidator> mPwdValidator;
                
        //! Pointer to the HbTranslator
        QScopedPointer<HbTranslator> mTranslator;
        
        //! Pointer to the error message HbTranslator
        QScopedPointer<HbTranslator> mErrMsgTranslator;
        
        //! Tells whether close has already been called for the dialog
        bool mClose;
        
        //! Tells whether Ok Action has already been pressed
        bool mOkActionPressed;
    };

/*! @} */

#endif // __EAPFASTCREATEMASTERKEYQUERYDIALOG_H__