mirror of https://github.com/procxx/kepka.git
Implement SkipAudio and SkipToast on Linux
This commit is contained in:
parent
3fb6bbeae4
commit
7aadaca62e
|
@ -16,6 +16,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include <QtCore/QVersionNumber>
|
#include <QtCore/QVersionNumber>
|
||||||
#include <QtDBus/QDBusConnection>
|
#include <QtDBus/QDBusConnection>
|
||||||
#include <QtDBus/QDBusReply>
|
#include <QtDBus/QDBusReply>
|
||||||
|
#include <QtDBus/QDBusError>
|
||||||
#include <QtDBus/QDBusMetaType>
|
#include <QtDBus/QDBusMetaType>
|
||||||
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
|
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
|
||||||
|
|
||||||
|
@ -28,6 +29,7 @@ namespace {
|
||||||
constexpr auto kService = "org.freedesktop.Notifications"_cs;
|
constexpr auto kService = "org.freedesktop.Notifications"_cs;
|
||||||
constexpr auto kObjectPath = "/org/freedesktop/Notifications"_cs;
|
constexpr auto kObjectPath = "/org/freedesktop/Notifications"_cs;
|
||||||
constexpr auto kInterface = kService;
|
constexpr auto kInterface = kService;
|
||||||
|
constexpr auto kPropertiesInterface = "org.freedesktop.DBus.Properties"_cs;
|
||||||
|
|
||||||
std::vector<QString> GetServerInformation() {
|
std::vector<QString> GetServerInformation() {
|
||||||
std::vector<QString> serverInformation;
|
std::vector<QString> serverInformation;
|
||||||
|
@ -75,6 +77,30 @@ QStringList GetCapabilities() {
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Inhibited() {
|
||||||
|
auto message = QDBusMessage::createMethodCall(
|
||||||
|
kService.utf16(),
|
||||||
|
kObjectPath.utf16(),
|
||||||
|
kPropertiesInterface.utf16(),
|
||||||
|
qsl("Get"));
|
||||||
|
|
||||||
|
message.setArguments({
|
||||||
|
qsl("org.freedesktop.Notifications"),
|
||||||
|
qsl("Inhibited")
|
||||||
|
});
|
||||||
|
|
||||||
|
const QDBusReply<QVariant> reply = QDBusConnection::sessionBus().call(
|
||||||
|
message);
|
||||||
|
|
||||||
|
if (reply.isValid()) {
|
||||||
|
return reply.value().toBool();
|
||||||
|
} else if (reply.error().type() != QDBusError::InvalidArgs) {
|
||||||
|
LOG(("Native notification error: %1").arg(reply.error().message()));
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
QVersionNumber ParseSpecificationVersion(
|
QVersionNumber ParseSpecificationVersion(
|
||||||
const std::vector<QString> &serverInformation) {
|
const std::vector<QString> &serverInformation) {
|
||||||
if (serverInformation.size() >= 4) {
|
if (serverInformation.size() >= 4) {
|
||||||
|
@ -332,6 +358,26 @@ const QDBusArgument &operator>>(
|
||||||
}
|
}
|
||||||
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
|
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
|
||||||
|
|
||||||
|
bool SkipAudio() {
|
||||||
|
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
||||||
|
if (Supported()) {
|
||||||
|
return Inhibited();
|
||||||
|
}
|
||||||
|
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool SkipToast() {
|
||||||
|
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
||||||
|
if (Supported()) {
|
||||||
|
return Inhibited();
|
||||||
|
}
|
||||||
|
#endif // !TDESKTOP_DISABLE_DBUS_INTEGRATION
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
bool Supported() {
|
bool Supported() {
|
||||||
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
#ifndef TDESKTOP_DISABLE_DBUS_INTEGRATION
|
||||||
static const auto Available = QDBusInterface(
|
static const auto Available = QDBusInterface(
|
||||||
|
|
|
@ -19,14 +19,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
namespace Platform {
|
namespace Platform {
|
||||||
namespace Notifications {
|
namespace Notifications {
|
||||||
|
|
||||||
inline bool SkipAudio() {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
inline bool SkipToast() {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
inline void FlashBounce() {
|
inline void FlashBounce() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue