X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsnorenotificationbackend.cpp;h=bdabcf13e3cc0b2a8fafe2abf17a81a09bef9670;hp=21bcee6dee3adee2a701131f6bc44d02ec33f86e;hb=900cce213a6ed000b7131a05a0dec7d04b35b023;hpb=68878dc8366f2f4a0afe132847aad9a51a80cdbf diff --git a/src/qtui/snorenotificationbackend.cpp b/src/qtui/snorenotificationbackend.cpp index 21bcee6d..bdabcf13 100644 --- a/src/qtui/snorenotificationbackend.cpp +++ b/src/qtui/snorenotificationbackend.cpp @@ -20,25 +20,25 @@ #include "snorenotificationbackend.h" +#include + #include #include #include +#include +#include + #include "client.h" +#include "icon.h" #include "networkmodel.h" #include "systraynotificationbackend.h" #include "qtui.h" -#include - - -#include -#include - SnoreNotificationBackend::SnoreNotificationBackend (QObject *parent) - : AbstractNotificationBackend(parent), - m_icon(QIcon::fromTheme("quassel", QIcon(":/icons/quassel.png"))) + : AbstractNotificationBackend(parent) + , m_icon(icon::get("quassel")) { Snore::SnoreCore::instance().loadPlugins( @@ -50,7 +50,7 @@ SnoreNotificationBackend::SnoreNotificationBackend (QObject *parent) m_application.hints().setValue("windows-app-id","QuasselProject.QuasselIRC"); m_application.hints().setValue("pushover-token", "arNtsi983QSZUqU3KAZrFLKHGFPkdL"); - connect(&Snore::SnoreCore::instance(), SIGNAL(actionInvoked(Snore::Notification)), this, SLOT(actionInvoked(Snore::Notification))); + connect(&Snore::SnoreCore::instance(), &Snore::SnoreCore::actionInvoked, this, &SnoreNotificationBackend::actionInvoked); m_alert = Snore::Alert(tr("Private Message"), m_icon); @@ -140,7 +140,7 @@ SnoreNotificationBackend::ConfigWidget::ConfigWidget(QWidget *parent) :SettingsPage("Internal", "SnoreNotification", parent) { ui.setupUi(this); - connect(ui.useSnoreCheckBox, SIGNAL(toggled(bool)), this, SLOT(useSnnoreChanged(bool))); + connect(ui.useSnoreCheckBox, &QCheckBox::toggled, this, &ConfigWidget::useSnoreChanged); } bool SnoreNotificationBackend::ConfigWidget::hasDefaults() const @@ -150,7 +150,7 @@ bool SnoreNotificationBackend::ConfigWidget::hasDefaults() const void SnoreNotificationBackend::ConfigWidget::defaults() { - useSnnoreChanged(false); + useSnoreChanged(false); ui.widget->reset(); } @@ -172,7 +172,7 @@ void SnoreNotificationBackend::ConfigWidget::save() load(); } -void SnoreNotificationBackend::ConfigWidget::useSnnoreChanged(bool b) +void SnoreNotificationBackend::ConfigWidget::useSnoreChanged(bool b) { ui.useSnoreCheckBox->setChecked(b); ui.widget->setEnabled(b);