diff -r bad0cc58d154 -r c74b3d9f6b9e securitysettings/eapqtdialogs/inc/eapfastinstallpacquerydialog.h --- a/securitysettings/eapqtdialogs/inc/eapfastinstallpacquerydialog.h Tue Aug 31 15:16:37 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,110 +0,0 @@ -/* -* 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: Fast Install Pac Query Dialog -* -*/ - -/* -* %version: 4 % -*/ - -#ifndef __EAPFASTINSTALLQUERYDIALOG_H__ -#define __EAPFASTINSTALLQUERYDIALOG_H__ - -// System includes -#include -#include - -// User includes - -// Forward declarations -class HbTranslator; - -// External data types - -// Constants - -/*! - @addtogroup group_eap_fast_install_pac_query_dialog - @{ - */ - -// Class declaration - -class EapFastInstallPacQueryDialog: public HbMessageBox, public HbDeviceDialogInterface - { - Q_OBJECT - - public: - /* Constructor */ - EapFastInstallPacQueryDialog(const QVariantMap ¶meters); - /* Destructor */ - ~EapFastInstallPacQueryDialog(); - - /* Function creates the actual dialog widget */ - void createDialog(const QVariantMap ¶meters ); - - /* Device dialog parameters to be set while dialog is displayed. - * Not supported. (from HbDeviceDialogInterface) - */ - bool setDeviceDialogParameters(const QVariantMap ¶meters); - - /* 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 Yes Action button's triggered signal */ - void yesPressed(); - - /* Slot that is mapped to the No Action button's triggered signal */ - void noPressed(); - - /* Slot that is mapped to the signal that indicates to closing of the dialog */ - void closingDialog(); - - private: - - Q_DISABLE_COPY(EapFastInstallPacQueryDialog) - - private: // data - // NOT OWNED - - // OWNED - //! Pointer to the password validator object - QScopedPointer mTranslator; - - //! Tells whether close has already been called for the dialog - bool mClose; - - //! Tells whether Yes Action has already been pressed - bool mYesActionPressed; - }; - -/*! @} */ - -#endif // __EAPFASTINSTALLQUERYDIALOG_H__