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.
|
|
|
/*
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* This file is part of the KDE project, module tdesu.
|
|
|
|
* Copyright (C) 2000 Geert Jansen <jansen@kde.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SshDlg_h_Included__
|
|
|
|
#define __SshDlg_h_Included__
|
|
|
|
|
|
|
|
#include <kpassdlg.h>
|
|
|
|
|
|
|
|
class TDEsshDialog
|
|
|
|
: public KPasswordDialog
|
|
|
|
{
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
TDEsshDialog(TQCString host, TQCString user, TQCString stub,
|
|
|
|
TQString prompt, bool enableKeep);
|
|
|
|
~TDEsshDialog();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool checkPassword(const TQString &password);
|
|
|
|
|
|
|
|
private:
|
|
|
|
TQCString m_User, m_Host, m_Stub;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // __SshDlg_h_Included__
|