6#include <QGenericArgument>
8#include <QLoggingCategory>
13#include "PluginClient.h"
14#include "RabbitCommonTools.h"
16static Q_LOGGING_CATEGORY(log,
"Client.Connecter")
19 m_pPluginClient(plugin),
25 if(QApplication::clipboard())
27 check = connect(QApplication::clipboard(), SIGNAL(dataChanged()),
28 this, SIGNAL(sigClipBoardChanged()));
33CConnecter::~CConnecter()
35 qDebug(log) <<
"CConnecter::~CConnecter";
40 QString szId =
Protocol() +
"_" + GetPlugClient()->
Name();
46 return GetPlugClient()->
Name();
51 return tr(
"Name: ") +
Name() +
"\n"
57 + tr(
"Description: ") + GetPlugClient()->
Description();
67 return GetPlugClient()->Icon();
72 QClipboard* pClipboard = QApplication::clipboard();
76 pClipboard->setMimeData(data);
86 int nRet = QDialog::Accepted;
94 p->setWindowIcon(this->
Icon());
95 p->setWindowTitle(tr(
"Set ") + GetPlugClient()->DisplayName());
96 p->setAttribute(Qt::WA_DeleteOnClose);
97 nRet = RC_SHOW_WINDOW(p);
99 qCritical(log) <<
"The Protocol [" <<
Protocol() <<
"] don't settings dialog";
106 if(m_Menu.actions().isEmpty())
113 Q_ASSERT(!szFile.isEmpty());
116 qCritical(log) <<
"The load file is empty";
119 QSettings set(szFile, QSettings::IniFormat);
125 Q_ASSERT(!szFile.isEmpty());
128 qCritical(log) <<
"The load file is empty";
131 QSettings set(szFile, QSettings::IniFormat);
138 Q_ASSERT(m_pParameter);
140 nRet = m_pParameter->
Load(set);
147 Q_ASSERT(m_pParameter);
149 m_pParameter->
Save(set);
156 m_Menu.setIcon(m_pPluginClient->Icon());
159 m_Menu.setStatusTip(m_pPluginClient->
DisplayName());
161 m_pSettings =
new QAction(QIcon::fromTheme(
"system-settings"),
162 tr(
"Settings"), &m_Menu);
164 bool check = connect(m_pSettings, SIGNAL(triggered()),
this, SLOT(slotSettings()));
179 QString szMsg =
"The CConnecter is not parameters! "
180 "please first create parameters, "
181 "then call SetParameter in the ";
182 szMsg += metaObject()->className() + QString(
"::")
183 + metaObject()->className();
184 szMsg += QString(
" or ") + metaObject()->className()
185 + QString(
"::") +
"Initial()";
186 szMsg +=
" to set the parameters pointer. "
187 "Default set CParameterClient for the parameters of connecter "
188 "(CParameterConnecter or its derived classes) "
189 "See: CClient::CreateConnecter. "
190 "If you are sure the parameter of connecter "
191 "does not need CParameterClient. "
192 "Please overload the SetParameterClient in the ";
193 szMsg += QString(metaObject()->className()) +
" . don't set it";
194 qCritical(log) << szMsg.toStdString().c_str();
203 m_pParameter->disconnect(
this);
217 return m_pPluginClient;
220void CConnecter::slotShowServerName()
225void CConnecter::slotUpdateName()
230QObject* CConnecter::createObject(
const QString& className, QObject* parent)
234#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
235 QMetaType::fromName(className.toStdString().c_str()).id();
237 QMetaType::type(className.toStdString().c_str());
239 if(QMetaType::UnknownType == type)
241 qCritical(log) << className <<
" is QMetaType::UnknownType";
245#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
246 (QObject*)QMetaType(type).create();
248 (QObject*)QMetaType::create(type);
252 qCritical(log) <<
"QMetaType::create fail: " << type;
263 QObject *obj = createObject(className);
264 Q_ASSERT_X(obj,
"Connecter", QString(
"Create object failed: " + className).toStdString().c_str());
272 if(-1 == obj->metaObject()->indexOfMethod(
"SetContext(void*)"))
275 szErr =
"The class " + className +
" is not method SetContext. It must be SetContext(void*) method.";
276 qCritical(log) << szErr;
277 Q_ASSERT_X(
false,
"Connecter", szErr.toStdString().c_str());
279 obj->metaObject()->invokeMethod(obj,
"SetContext", Q_ARG(
void*, pContext));
280 if(-1 < obj->metaObject()->indexOfMethod(
"SetConnecter(CConnecter*)"))
282 obj->metaObject()->invokeMethod(obj,
"SetConnecter", Q_ARG(
CConnecter*,
this));
285 if(obj->inherits(
"QDialog"))
287 QDialog* pDlg = qobject_cast<QDialog*>(obj);
288 pDlg->setAttribute(Qt::WA_DeleteOnClose);
290 pDlg, SLOT(reject()));
292 nRet = RC_SHOW_WINDOW(pDlg);
293 }
else if(obj->inherits(
"QWidget")) {
294 QWidget* pWdg = qobject_cast<QWidget*>(obj);
295 pWdg->setAttribute(Qt::WA_DeleteOnClose);
297 pWdg, SLOT(close()));
299 nRet = RC_SHOW_WINDOW(pWdg);
304 QMessageBox::StandardButtons buttons,
305 QMessageBox::StandardButton &nRet,
307 QString szCheckBoxContext)
309 QCheckBox* pBox =
nullptr;
310 QMessageBox msg(QMessageBox::Information,
311 szTitle, szMessage, buttons,
GetViewer());
312 if(!szCheckBoxContext.isEmpty())
314 pBox =
new QCheckBox(szCheckBoxContext);
316 pBox->setCheckable(
true);
317 msg.setCheckBox(pBox);
319 nRet = (QMessageBox::StandardButton)RC_SHOW_WINDOW(&msg);
321 checkBox = pBox->isChecked();
325 const QString &szMessage,
329 QString t = QInputDialog::getText(
nullptr,
335 if(ok && !t.isEmpty())
339void CConnecter::slotSettings()
void sigUpdateName(const QString &szName)
virtual void slotBlockShowWidget(const QString &className, int &nRet, void *pContext)
Blocks the background thread and displays the window in the foreground thread.
virtual const QIcon Icon() const
Icon.
virtual void slotBlockInputDialog(const QString &szTitle, const QString &szLable, const QString &szMessage, QString &szText)
Block background threads and display input dialogs in foreground threads (QInputDialog)
virtual int Load(QSettings &set)
Load parameters.
virtual int SetParameterClient(CParameterClient *pPara)
Set CParameterClient.
virtual int Clean()
Clean parameters and resource.
virtual QDialog * OnOpenDialogSettings(QWidget *parent=nullptr)=0
Open settgins dialog.
virtual int OpenDialogSettings(QWidget *parent=nullptr)
Open settings dialog.
virtual QWidget * GetViewer()=0
Get Viewer.
void sigDisconnected()
Successful disconnection signal.
virtual int Save(QSettings &set)
Save parameters.
virtual int SetParameter(CParameter *p)
Set parameters.
virtual const QString Description()
Description.
virtual const QString Protocol() const
Protocol.
virtual const QString Id()
Identity.
virtual QMenu * GetMenu(QWidget *parent=nullptr)
Get operate menu.
virtual void slotSetClipboard(QMimeData *data)
virtual int Initial()
Initial parameters and resource.
virtual const QString Name()
Name.
virtual void slotBlockShowMessageBox(const QString &szTitle, const QString &szMessage, QMessageBox::StandardButtons buttons, QMessageBox::StandardButton &nRet, bool &checkBox, QString szCheckBoxContext=QString())
Block background threads and display message dialogs in foreground threads (QMessageBox)
The parameters of client.
virtual int Save(QString szFile=QString(), bool bForce=true)
Save to file.
virtual int Load(QString szFile=QString())
Load from file.
virtual const QString DisplayName() const
The plugin display name.
virtual const QString Description() const =0
Plugin description.
virtual const QString Name() const =0
This name must be the same as the project name (${PROJECT_NAME}). The translation file (${PROJECT_NAM...
virtual const QString Protocol() const =0
Plugin Protocol.