X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fsnorenotificationbackend.h;h=02d48fec3112a73145f5976cc7c0df9153786c28;hp=10e40cf253df4ee6e2cbb1b5ec9d481611b164f9;hb=673ded0d543cbdc2cf6e746b6bee7c1d21af8f90;hpb=68878dc8366f2f4a0afe132847aad9a51a80cdbf diff --git a/src/qtui/snorenotificationbackend.h b/src/qtui/snorenotificationbackend.h index 10e40cf2..02d48fec 100644 --- a/src/qtui/snorenotificationbackend.h +++ b/src/qtui/snorenotificationbackend.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2011-2018 by Hannah von Reth * + * Copyright (C) 2011-2020 by Hannah von Reth * * vonreth@kde.org * * * * This program is free software; you can redistribute it and/or modify * @@ -21,39 +21,38 @@ #ifndef SNORENOTIFICATIONBACKEND_H_ #define SNORENOTIFICATIONBACKEND_H_ -#include "abstractnotificationbackend.h" +#include +#include +#include "abstractnotificationbackend.h" #include "settingspage.h" #include "ui_snorentificationconfigwidget.h" -#include -#include - class SystrayNotificationBackend; -class SnoreNotificationBackend : public AbstractNotificationBackend { +class SnoreNotificationBackend : public AbstractNotificationBackend +{ Q_OBJECT public: - SnoreNotificationBackend (QObject *parent); + SnoreNotificationBackend(QObject* parent); ~SnoreNotificationBackend(); - void notify(const Notification &); + void notify(const Notification&); void close(uint notificationId); - virtual SettingsPage *createConfigWidget() const; + virtual SettingsPage* createConfigWidget() const; public slots: void actionInvoked(Snore::Notification); private slots: - void setTraybackend(const QVariant &b); + void setTraybackend(const QVariant& b); private: - class ConfigWidget; #ifndef HAVE_KDE - SystrayNotificationBackend * m_systrayBackend = nullptr; + SystrayNotificationBackend* m_systrayBackend = nullptr; #endif QHash m_notificationIds; Snore::Icon m_icon; @@ -61,18 +60,19 @@ private: Snore::Alert m_alert; }; -class SnoreNotificationBackend::ConfigWidget : public SettingsPage { +class SnoreNotificationBackend::ConfigWidget : public SettingsPage +{ Q_OBJECT public: - ConfigWidget(QWidget *parent = 0); + ConfigWidget(QWidget* parent = 0); bool hasDefaults() const; void defaults(); void load(); void save(); private slots: - void useSnnoreChanged(bool); + void useSnoreChanged(bool); private: Ui::SnoreNotificationConfigWidget ui;