diff -r fe6b6762fccd -r 53085837e73a securitysettings/eapqtdialogs/inc/eapfastinstallpacquerydialog.h --- a/securitysettings/eapqtdialogs/inc/eapfastinstallpacquerydialog.h Tue Jul 06 14:18:35 2010 +0300 +++ b/securitysettings/eapqtdialogs/inc/eapfastinstallpacquerydialog.h Wed Aug 18 09:50:56 2010 +0300 @@ -16,18 +16,32 @@ */ /* -* %version: 3 % +* %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 @@ -42,17 +56,18 @@ void createDialog(const QVariantMap ¶meters ); /* Device dialog parameters to be set while dialog is displayed. - * Not supported. + * Not supported. (from HbDeviceDialogInterface) */ bool setDeviceDialogParameters(const QVariantMap ¶meters); - /* Not supported */ + /* Not supported. (from HbDeviceDialogInterface) */ int deviceDialogError() const; - /* Closes the device dialog */ + /* Closes the device dialog. (from HbDeviceDialogInterface) */ void closeDeviceDialog(bool byClient); - /* Returns a pointer to this dialog widget */ + /* Returns a pointer to this dialog widget. + (from HbDeviceDialogInterface) */ HbPopup *deviceDialogWidget() const; signals: @@ -76,16 +91,20 @@ Q_DISABLE_COPY(EapFastInstallPacQueryDialog) - private: + private: // data + // NOT OWNED - /* Pointer to the HbTranslator */ + // OWNED + //! Pointer to the password validator object QScopedPointer mTranslator; - /* Tells whether close has already been called for the dialog */ + //! Tells whether close has already been called for the dialog bool mClose; - /* Tells whether Yes Action has already been pressed */ + //! Tells whether Yes Action has already been pressed bool mYesActionPressed; }; +/*! @} */ + #endif // __EAPFASTINSTALLQUERYDIALOG_H__