diff -r fe6b6762fccd -r 53085837e73a securitysettings/eapqtdialogs/inc/eappasswordquerydialog.h --- a/securitysettings/eapqtdialogs/inc/eappasswordquerydialog.h Tue Jul 06 14:18:35 2010 +0300 +++ b/securitysettings/eapqtdialogs/inc/eappasswordquerydialog.h Wed Aug 18 09:50:56 2010 +0300 @@ -16,20 +16,35 @@ */ /* -* %version: 3 % +* %version: 4 % */ #ifndef __EAPPASSWORDQUERYDIALOG_H__ #define __EAPPASSWORDQUERYDIALOG_H__ +// System includes #include #include +// User includes + +// Forward declarations class HbTranslator; class HbLineEdit; class EapQtValidator; +// External data types + +// Constants + +/*! + @addtogroup group_eap_password_query_dialog + @{ + */ + +// Class declaration + class EapPasswordQueryDialog: public HbInputDialog, public HbDeviceDialogInterface { Q_OBJECT @@ -44,17 +59,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: @@ -80,23 +96,26 @@ Q_DISABLE_COPY(EapPasswordQueryDialog) - private: - /* Pointer to the line edit 1 object */ + private: //data + // NOT OWNED + //! Pointer to the line edit 1 object HbLineEdit *mEdit; - - /* Pointer to the password validator object */ + + // OWNED + //! Pointer to the password validator object QScopedPointer mPwdValidator; - /* Pointer to the main HbTranslator */ + //! Pointer to the main HbTranslator 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 Ok Action has already been pressed */ + //! Tells whether Ok Action has already been pressed bool mOkActionPressed; }; +/*! @} */ #endif // __EAPPASSWORDQUERYDIALOG_H__