mirror of https://github.com/cutefishos/statusbar
controlcenter: new DoNotDisturb
parent
8787990fc0
commit
ab879c0d39
@ -0,0 +1,60 @@
|
||||
/*
|
||||
* Copyright (C) 2021 - 2022 CutefishOS Team.
|
||||
*
|
||||
* Author: Reion Wong <reion@cutefishos.com>
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "notifications.h"
|
||||
|
||||
Notifications::Notifications(QObject *parent)
|
||||
: QObject(parent)
|
||||
, m_iface("com.cutefish.Notification",
|
||||
"/Notification",
|
||||
"com.cutefish.Notification", QDBusConnection::sessionBus())
|
||||
{
|
||||
m_doNotDisturb = m_iface.property("doNotDisturb").toBool();
|
||||
|
||||
QDBusConnection::sessionBus().connect("com.cutefish.Notification",
|
||||
"/Notification",
|
||||
"com.cutefish.Notification",
|
||||
"doNotDisturbChanged", this, SLOT(onDBusDoNotDisturbChanged()));
|
||||
}
|
||||
|
||||
bool Notifications::doNotDisturb() const
|
||||
{
|
||||
return m_doNotDisturb;
|
||||
}
|
||||
|
||||
void Notifications::setDoNotDisturb(bool enabled)
|
||||
{
|
||||
m_doNotDisturb = enabled;
|
||||
|
||||
QDBusInterface iface("com.cutefish.Notification",
|
||||
"/Notification",
|
||||
"com.cutefish.Notification", QDBusConnection::sessionBus());
|
||||
|
||||
if (iface.isValid()) {
|
||||
iface.asyncCall("setDoNotDisturb", enabled);
|
||||
}
|
||||
|
||||
emit doNotDisturbChanged();
|
||||
}
|
||||
|
||||
void Notifications::onDBusDoNotDisturbChanged()
|
||||
{
|
||||
m_doNotDisturb = m_iface.property("doNotDisturb").toBool();
|
||||
emit doNotDisturbChanged();
|
||||
}
|
||||
@ -0,0 +1,49 @@
|
||||
/*
|
||||
* Copyright (C) 2021 - 2022 CutefishOS Team.
|
||||
*
|
||||
* Author: Reion Wong <reion@cutefishos.com>
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef NOTIFICATIONS_H
|
||||
#define NOTIFICATIONS_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QDBusInterface>
|
||||
#include <QDBusPendingCall>
|
||||
|
||||
class Notifications : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_PROPERTY(bool doNotDisturb READ doNotDisturb WRITE setDoNotDisturb NOTIFY doNotDisturbChanged)
|
||||
|
||||
public:
|
||||
explicit Notifications(QObject *parent = nullptr);
|
||||
|
||||
bool doNotDisturb() const;
|
||||
void setDoNotDisturb(bool enabled);
|
||||
|
||||
private slots:
|
||||
void onDBusDoNotDisturbChanged();
|
||||
|
||||
signals:
|
||||
void doNotDisturbChanged();
|
||||
|
||||
private:
|
||||
QDBusInterface m_iface;
|
||||
bool m_doNotDisturb;
|
||||
};
|
||||
|
||||
#endif // NOTIFICATIONS_H
|
||||
Loading…
Reference in New Issue