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.
34 lines
586 B
34 lines
586 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 __SshDlg_h_Included__
|
||
|
#define __SshDlg_h_Included__
|
||
|
|
||
|
#include <kpassdlg.h>
|
||
|
|
||
12 years ago
|
class TDEsshDialog
|
||
15 years ago
|
: public KPasswordDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
13 years ago
|
|
||
15 years ago
|
|
||
|
public:
|
||
12 years ago
|
TDEsshDialog(TQCString host, TQCString user, TQCString stub,
|
||
14 years ago
|
TQString prompt, bool enableKeep);
|
||
12 years ago
|
~TDEsshDialog();
|
||
15 years ago
|
|
||
|
protected:
|
||
|
bool checkPassword(const char *password);
|
||
|
|
||
|
private:
|
||
14 years ago
|
TQCString m_User, m_Host, m_Stub;
|
||
15 years ago
|
};
|
||
|
|
||
|
|
||
|
#endif // __SshDlg_h_Included__
|