/* vi: ts=8 sts=4 sw=4 * * This file is part of the KDE project, module tdesu. * Copyright (C) 2000 Geert Jansen */ #ifndef __SuDlg_h_Included__ #define __SuDlg_h_Included__ #include class TDEsuDialog : public KPasswordDialog { Q_OBJECT public: TDEsuDialog(TQCString user, TQCString auth_user, bool enableKeep, const TQString& icon , bool withIgnoreButton=false, int timeout=-1); ~TDEsuDialog(); enum ResultCodes { AsUser = 10 }; protected: bool checkPassword(const TQString &password); void slotUser1(); private: TQCString m_User; }; #endif // __SuDlg_h_Included__