MCPcopy Create free account
hub / github.com/KangLin/RabbitRemoteControl / Details

Method Details

Src/Manager.cpp:664–689  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

662#endif
663
664const QString CManager::Details() const
665{
666 QString szDetail;
667#if HAVE_QTERMWIDGET
668 szDetail += COperateTerminal::Details();
669#endif
670#ifdef HAVE_LIBSSH
671 CChannelSSH channel(nullptr, nullptr);
672 szDetail += channel.GetDetails();
673#endif
674#if HAVE_QTKEYCHAIN
675 szDetail += "- QtKeyChain\n" +
676 QString(" - ") + tr("Version:")
677 + " 0x" + QString::number(QTKEYCHAIN_VERSION, 16) + "\n";
678#endif
679
680 if(!szDetail.isEmpty()) {
681 szDetail = "## " + tr("Dependency libraries") + "\n" + szDetail;
682 }
683
684 if(m_pParameterPlugin)
685 szDetail += m_pParameterPlugin->GetGlobalParameters()->m_Database.Details();
686
687 szDetail += m_szDetails;
688 return szDetail;
689}
690
691void CManager::slotCaptureAllKeyboard()
692{

Callers 2

AppendPluginMethod · 0.45

Calls 3

GetDetailsMethod · 0.45
isEmptyMethod · 0.45
GetGlobalParametersMethod · 0.45

Tested by

no test coverage detected