X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Flegacysystemtray.h;h=83ff201256c3ece58d1d2176b2f0e2af07f01fa6;hb=518cd2bc478ab3675a60ec46d3ef183cace0cae7;hp=8ef478eb61bab2cada9cb3feb170e6bb62688b1f;hpb=ab7ef4d24f62b5848b628482b7762ebfc0b53e1a;p=quassel.git diff --git a/src/qtui/legacysystemtray.h b/src/qtui/legacysystemtray.h index 8ef478eb..83ff2012 100644 --- a/src/qtui/legacysystemtray.h +++ b/src/qtui/legacysystemtray.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2018 by the Quassel Project * + * Copyright (C) 2005-2020 by the Quassel Project * * devel@quassel-irc.org * * * * This file is free software; you can redistribute it and/or modify * @@ -22,22 +22,26 @@ #ifndef QT_NO_SYSTEMTRAYICON -#include -#include +# include +# include -#include "systemtray.h" +# include "systemtray.h" class LegacySystemTray : public SystemTray { Q_OBJECT public: - explicit LegacySystemTray(QWidget *parent); + explicit LegacySystemTray(QWidget* parent); bool isSystemTrayAvailable() const override; public slots: - void showMessage(const QString &title, const QString &message, MessageIcon icon = Information, int msTimeout = 10000, uint notificationId = 0) override; + void showMessage(const QString& title, + const QString& message, + MessageIcon icon = Information, + int msTimeout = 10000, + uint notificationId = 0) override; void closeMessage(uint notificationId) override; private slots: @@ -51,9 +55,9 @@ private slots: void updateToolTip(); private: - uint _lastMessageId {0}; + uint _lastMessageId{0}; - QSystemTrayIcon *_trayIcon; + QSystemTrayIcon* _trayIcon; }; #endif /* QT_NO_SYSTEMTRAYICON */