/* 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 KDEsuDialog : public KPasswordDialog { Q_OBJECT public: KDEsuDialog(TQCString user, TQCString auth_user, bool enableKeep, const TQString& icon , bool withIgnoreButton=false); ~KDEsuDialog(); enum ResultCodes { AsUser = 10 }; protected: bool checkPassword(const char *password); void slotUser1(); private: TQCString m_User; }; #endif // __SuDlg_h_Included__