本文整理汇总了C++中QDBusConnectionInterface::lastError方法的典型用法代码示例。如果您正苦于以下问题:C++ QDBusConnectionInterface::lastError方法的具体用法?C++ QDBusConnectionInterface::lastError怎么用?C++ QDBusConnectionInterface::lastError使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QDBusConnectionInterface
的用法示例。
在下文中一共展示了QDBusConnectionInterface::lastError方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: run
void KGetRunner::run(const Plasma::RunnerContext& /*context*/, const Plasma::QueryMatch& /*match*/)
{
QDBusConnectionInterface* connection = QDBusConnection::sessionBus().interface();
if(connection->isServiceRegistered(KGET_DBUS_SERVICE)) {
// KGet is running. Make the call immediately.
showNewTransferDialog();
return;
}
// KGet is not running. Ask DBus to start it.
connection->startService(KGET_DBUS_SERVICE);
if(connection->lastError().type() != QDBusError::NoError) {
KNotification::event(KNotification::Error,
i18n("<p>KGet Runner could not communicate with KGet.</p><p style=\"font-size: small;\">Response from DBus:<br/>%1</p>", connection->lastError().message()),
KIcon("dialog-warning").pixmap(KIconLoader::SizeSmall)/*, 0, KNotification::Persistant*/);
return;
}
// Set a timer to make the call when KGet has been started.
// This might still fail if it takes too long to start KGet.
// For me, the 1000ms delay is mooooore than sufficient.
QTimer::singleShot(1000, this, SLOT(showNewTransferDialog()));
}