4#include "PluginLibSSH.h"
7#include <QLoggingCategory>
8static Q_LOGGING_CATEGORY(log,
"Plugin.SSH")
14CPluginLibSSH::~CPluginLibSSH()
16 qDebug(log) << Q_FUNC_INFO;
31 return tr(
"Secure Shell(SSH)");
36 return tr(
"Secure Shell(SSH): is a secure protocol and the most common way of safely administering remote servers. "
37 "Using a number of encryption technologies, "
38 "SSH provides a mechanism for establishing a cryptographically secured connection between two parties, "
39 "authenticating each side to the other, and passing commands and output back and forth."
40 "You can remotely execute programs, transfer files, "
41 "use a secure and transparent tunnel, "
42 "manage public keys and much more ...") +
"\n"
43 + tr(
"It uses libssh: https://www.libssh.org .");
46const QIcon CPluginLibSSH::Icon()
const
48 return QIcon::fromTheme(
"ssh");
51const CPlugin::TYPE CPluginLibSSH::Type()
const
53 return TYPE::Terminal;
64 szDetails = COperateTerminal::Details();
73COperate *CPluginLibSSH::OnCreateOperate(
const QString &szId)
virtual QString GetDetails() override
Depend on information.
virtual const QString Protocol() const override
Plugin Protocol.
virtual const QString DisplayName() const override
The plugin display name.
virtual const QString Description() const override
Plugin description.
virtual const QString Details() const override
Display more information in About dialog or log.
virtual const QString Version() const override
Version.
virtual const QString Name() const override
This name must be the same as the project name (${PROJECT_NAME}). The translation file (${PROJECT_NAM...
virtual const QString Id()
ID. Default: Type() + ":" + Protocol() + ":" + Name()