You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebase/tdesu/tdesu/sudlg.h

33 lines
649 B

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