qtui: Hide "fallback" and "Override" if no system theme is configured
[quassel.git] / src / qtui / legacysystemtray.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This file is free software; you can redistribute it and/or modify     *
6  *   it under the terms of the GNU Library General Public License (LGPL)   *
7  *   as published by the Free Software Foundation; either version 2 of the *
8  *   License, or (at your option) any later version.                       *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #pragma once
22
23 #ifndef QT_NO_SYSTEMTRAYICON
24
25 #include <QString>
26
27 #ifdef HAVE_KDE4
28 #  include <KSystemTrayIcon>
29 #else
30 #  include <QSystemTrayIcon>
31 #endif
32
33 #include <QTimer>
34
35 #include "systemtray.h"
36
37 class LegacySystemTray : public SystemTray
38 {
39     Q_OBJECT
40
41 public:
42     explicit LegacySystemTray(QWidget *parent);
43
44     bool isSystemTrayAvailable() const override;
45
46 public slots:
47     void showMessage(const QString &title, const QString &message, MessageIcon icon = Information, int msTimeout = 10000, uint notificationId = 0) override;
48     void closeMessage(uint notificationId) override;
49
50 private slots:
51     void onModeChanged(Mode mode);
52     void onStateChanged(State state);
53     void onVisibilityChanged(bool isVisible);
54
55     void onBlinkTimeout();
56     void onActivated(QSystemTrayIcon::ActivationReason);
57     void onMessageClicked();
58
59     void updateIcon();
60     void updateToolTip();
61
62 private:
63     QTimer _blinkTimer;
64     bool _blinkState;
65     uint _lastMessageId;
66
67 #ifdef HAVE_KDE4
68     KSystemTrayIcon *_trayIcon;
69 #else
70     QSystemTrayIcon *_trayIcon;
71 #endif
72 };
73
74
75 // inlines
76
77
78
79
80 #endif /* QT_NO_SYSTEMTRAYICON */