X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fsystraynotificationbackend.h;h=83006d21f3b171bedb274a933a90d26cd3ab5a36;hb=8426fae7e92dfb7608f66be926c68c304b97cb01;hp=64e6f9ce6140be24f3758edc710e26e7cad9294d;hpb=ba8a7d67ff9815f480531acab4a16cfa133929a5;p=quassel.git diff --git a/src/qtui/systraynotificationbackend.h b/src/qtui/systraynotificationbackend.h index 64e6f9ce..83006d21 100644 --- a/src/qtui/systraynotificationbackend.h +++ b/src/qtui/systraynotificationbackend.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2018 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -31,20 +31,20 @@ class SystrayNotificationBackend : public AbstractNotificationBackend Q_OBJECT public: - SystrayNotificationBackend(QObject *parent = 0); + SystrayNotificationBackend(QObject* parent = nullptr); - void notify(const Notification &); - void close(uint notificationId); - virtual SettingsPage *createConfigWidget() const; + void notify(const Notification&) override; + void close(uint notificationId) override; + SettingsPage* createConfigWidget() const override; protected: - virtual bool eventFilter(QObject *obj, QEvent *event); + bool eventFilter(QObject* obj, QEvent* event) override; private slots: - void notificationActivated(uint notificationId); - void notificationActivated(SystemTray::ActivationReason); + void onNotificationActivated(uint notificationId); + void onNotificationActivated(SystemTray::ActivationReason); - void showBubbleChanged(const QVariant &); + void showBubbleChanged(const QVariant&); void updateToolTip(); private: @@ -52,25 +52,24 @@ private: bool _showBubble; QList _notifications; - bool _blockActivation; + bool _blockActivation{false}; }; - class SystrayNotificationBackend::ConfigWidget : public SettingsPage { Q_OBJECT public: - ConfigWidget(QWidget *parent = 0); - void save(); - void load(); - bool hasDefaults() const; - void defaults(); + ConfigWidget(QWidget* parent = nullptr); + void save() override; + void load() override; + bool hasDefaults() const override; + void defaults() override; private slots: void widgetChanged(); private: - QCheckBox *_showBubbleBox; + QCheckBox* _showBubbleBox; bool _showBubble; };