matrixion/src/dock/Dock.h

28 lines
620 B
C
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include <QObject>
#if defined(NHEKO_DBUS_SYS)
#include <QDBusServiceWatcher>
#include <QtDBus/QDBusArgument>
#include <QtDBus/QDBusInterface>
#endif
2022-10-10 15:38:29 +03:00
class Dock final : public QObject
{
Q_OBJECT
public:
Dock(QObject *parent = nullptr);
public slots:
void setUnreadCount(const int count);
private:
#if defined(NHEKO_DBUS_SYS)
void unitySetNotificationCount(const int count);
QDBusServiceWatcher *unityServiceWatcher = nullptr;
bool unityServiceAvailable = false;
#endif
};