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.
50 lines
804 B
50 lines
804 B
15 years ago
|
/* vi: ts=8 sts=4 sw=4
|
||
|
*
|
||
|
* $Id$
|
||
|
*
|
||
13 years ago
|
* This file is part of the KDE project, module tdesu.
|
||
15 years ago
|
* Copyright (C) 2000 Geert Jansen <jansen@kde.org>
|
||
|
*/
|
||
|
|
||
|
#ifndef __PasswdDlg_h_Incluced__
|
||
|
#define __PasswdDlg_h_Incluced__
|
||
|
|
||
|
#include <kpassdlg.h>
|
||
|
|
||
11 years ago
|
class TDEpasswd1Dialog
|
||
15 years ago
|
: public KPasswordDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
11 years ago
|
TDEpasswd1Dialog();
|
||
|
~TDEpasswd1Dialog();
|
||
15 years ago
|
|
||
14 years ago
|
static int getPassword(TQCString &password);
|
||
15 years ago
|
|
||
|
protected:
|
||
|
bool checkPassword(const char *password);
|
||
|
};
|
||
|
|
||
|
|
||
11 years ago
|
class TDEpasswd2Dialog
|
||
15 years ago
|
: public KPasswordDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
11 years ago
|
TDEpasswd2Dialog(const char *oldpass, TQCString user);
|
||
|
~TDEpasswd2Dialog();
|
||
15 years ago
|
|
||
|
protected:
|
||
|
bool checkPassword(const char *password);
|
||
|
|
||
|
private:
|
||
|
const char *m_Pass;
|
||
14 years ago
|
TQCString m_User;
|
||
15 years ago
|
};
|
||
|
|
||
|
|
||
|
|
||
|
#endif // __PasswdDlg_h_Incluced__
|