// // Created by zpf on 2023/3/16. // #include "notification-settings-test.h" #include "popup-notification.h" NotificationSettingsTest::NotificationSettingsTest(QObject *parent) : QObject(parent) { UkuiNotification::ApplicationsSettingsMap &map = UkuiNotification::ApplicationsSettings::self()->getAllApplicationsSettings(); for(const QString &key : map.keys()) { initConnection(map.value(key)); } m_globalSettings = new UkuiNotification::NotificationGlobalSettings(this); connect(m_globalSettings, &UkuiNotification::NotificationGlobalSettings::scheduleTurnOnDNDChanged, this, [&](bool value){ qDebug() << "scheduleTurnOnDNDChanged" << value; }); connect(m_globalSettings, &UkuiNotification::NotificationGlobalSettings::scheduleTurnOnDNDTimeChanged, this, [&](QTime value){ qDebug() << "scheduleTurnOnDNDTimeChanged" << value; }); connect(m_globalSettings, &UkuiNotification::NotificationGlobalSettings::scheduleTurnOffDNDTimeChanged, this, [&](QTime value){ qDebug() << "scheduleTurnOffDNDTimeChanged" << value; }); connect(m_globalSettings, &UkuiNotification::NotificationGlobalSettings::DNDWhileMultiScreenChanged, this, [&](bool value){ qDebug() << "DNDWhileMultiScreenChanged" << value; }); connect(m_globalSettings, &UkuiNotification::NotificationGlobalSettings::DNDWhileFullScreenChanged, this, [&](bool value){ qDebug() << "DNDWhileFullScreenChanged" << value; }); connect(m_globalSettings, &UkuiNotification::NotificationGlobalSettings::notifyAlarmWhileDNDChanged, this, [&](bool value){ qDebug() << "notifyAlarmWhileDNDChanged" << value; }); connect(m_globalSettings, &UkuiNotification::NotificationGlobalSettings::receiveNotificationsFromAppsChanged, this, [&](bool value){ qDebug() << "receiveNotificationsFromAppsChanged" << value; }); } NotificationSettingsTest::~NotificationSettingsTest() { } void NotificationSettingsTest::initConnection(UkuiNotification::SingleApplicationSettings *setting) { connect(setting, &UkuiNotification::SingleApplicationSettings::allowNotifyChanged, this, [&](bool value){ qDebug() << "allowNotifyChanged" << value; }); connect(setting, &UkuiNotification::SingleApplicationSettings::allowSoundChanged, this, [&](bool value){ qDebug() << "allowSoundChanged" << value; }); connect(setting, &UkuiNotification::SingleApplicationSettings::showContentOnLockScreenChanged, this, [&](bool value){ qDebug() << "showContentOnLockScreenChanged" << value; }); connect(setting, &UkuiNotification::SingleApplicationSettings::showNotificationOnLockScreenChanged, this, [&](bool value){ qDebug() << "showNotificationOnLockScreenChanged" << value; }); connect(setting, &UkuiNotification::SingleApplicationSettings::popupStyleChanged, this, [&](UkuiNotification::SettingsProperty::Property value){ qDebug() << "popupStyleChanged" << value; }); connect(setting, &UkuiNotification::SingleApplicationSettings::uninstalled, this, [&](){ qDebug() << "uninstalled"; }); }