|
| CPluginTelnet (QObject *parent=nullptr) |
|
virtual const QString | Protocol () const override |
| Plugin Protocol.
|
|
virtual const QString | Name () const override |
| This name must be the same as the project name (${PROJECT_NAME}). The translation file (${PROJECT_NAME}_*.ts)) name is associated with it.
|
|
virtual const QString | Description () const override |
| Plugin description.
|
|
virtual const QIcon | Icon () const override |
|
| CPluginClient (QObject *parent=nullptr) |
| When the derived class is implemented, The plugin global resources are initialized are loaded here.
|
|
virtual | ~CPluginClient () |
| When the derived class is implemented, the resources are clean are unloaded here.
|
|
virtual const QString | Id () const |
| ID. Default: Protocol() + ":" + Name()
|
|
virtual const QString | DisplayName () const |
| The plugin display name.
|
|
virtual const QString | Version () const =0 |
| Version.
|
|
virtual const QString | Details () const |
| Display more information in About dialog or log.
|
|
Definition at line 9 of file PluginTelnet.h.
◆ CPluginTelnet()
CPluginTelnet::CPluginTelnet |
( |
QObject * |
parent = nullptr | ) |
|
|
explicit |
◆ ~CPluginTelnet()
CPluginTelnet::~CPluginTelnet |
( |
| ) |
|
|
virtual |
◆ CreateConnecter()
CConnecter * CPluginTelnet::CreateConnecter |
( |
const QString & |
szId | ) |
|
|
overrideprivatevirtual |
New CConnecter instance.
Only is called by CClient
{
auto it = m_Plugins.find(id);
if(m_Plugins.end() != it)
{
bool bRet = 0;
qDebug(log) << "CreateConnecter id:" << id;
auto plugin = it.value();
if(plugin) {
bRet = QMetaObject::invokeMethod(
plugin,
"CreateConnecter",
Qt::DirectConnection,
Q_ARG(QString, id));
if(!bRet) {
qCritical(log) << "Create CConnecter fail.";
return nullptr;
}
}
if(p) {
int val = 0;
bRet = QMetaObject::invokeMethod(
p,
"Initial",
Qt::DirectConnection,
Q_RETURN_ARG(int, val));
if(!bRet || val) {
qCritical(log) << "Connecter initial fail" << bRet << val;
DeleteConnecter(p);
return nullptr;
}
bRet = QMetaObject::invokeMethod(
p,
"SetParameterClient",
Qt::DirectConnection,
Q_RETURN_ARG(int, val),
if(!bRet || val) {
qCritical(log) << "SetParameterClient fail" << bRet << val;
DeleteConnecter(p);
return nullptr;
}
}
return p;
}
return nullptr;
}
virtual CConnecter * CreateConnecter(const QString &id)
New CConnecter pointer, the owner is caller.
The parameters of client.
- Returns
- Return CConnecter pointer, the owner is caller
- Note
- The function new object pointer, the caller must delete it when don't use it.
- Parameters
-
- See also
- CClient::CreateConnecter CClient::LoadConnecter
Implements CPluginClient.
Definition at line 39 of file PluginTelnet.cpp.
◆ Description()
const QString CPluginTelnet::Description |
( |
| ) |
const |
|
overridevirtual |
◆ Icon()
const QIcon CPluginTelnet::Icon |
( |
| ) |
const |
|
overridevirtual |
◆ Name()
const QString CPluginTelnet::Name |
( |
| ) |
const |
|
overridevirtual |
This name must be the same as the project name (${PROJECT_NAME}). The translation file (${PROJECT_NAME}_*.ts)) name is associated with it.
Implements CPluginClient.
Definition at line 24 of file PluginTelnet.cpp.
◆ Protocol()
const QString CPluginTelnet::Protocol |
( |
| ) |
const |
|
overridevirtual |
The documentation for this class was generated from the following files:
- /home/runner/work/RabbitRemoteControl/RabbitRemoteControl/Plugins/Telnet/PluginTelnet.h
- /home/runner/work/RabbitRemoteControl/RabbitRemoteControl/Plugins/Telnet/PluginTelnet.cpp