KIO
passworddialog.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef kio_pass_word_dialog_h
00021 #define kio_pass_word_dialog_h
00022
00023 #include <kio/kio_export.h>
00024 #include <kpassworddialog.h>
00025
00026
00027 namespace KIO {
00028
00037 class KIO_EXPORT_DEPRECATED PasswordDialog : public KPasswordDialog
00038 {
00039 Q_OBJECT
00040
00041 public:
00051 PasswordDialog( const QString& prompt, const QString& user,
00052 bool enableKeep = false, bool modal=true,
00053 QWidget* parent=0 );
00054
00058 ~PasswordDialog();
00059
00060
00077 static int getNameAndPassword( QString& user, QString& pass, bool* keep,
00078 const QString& prompt = QString(),
00079 bool readOnly = false,
00080 const QString& caption = QString(),
00081 const QString& comment = QString(),
00082 const QString& label = QString() );
00083
00084 };
00085
00086 }
00087
00088 #endif