QssParser: Interpret "oblique" as italic
[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 "systemtray.h"
34
35 class LegacySystemTray : public SystemTray
36 {
37     Q_OBJECT
38
39 public:
40     explicit LegacySystemTray(QWidget *parent);
41
42     bool isSystemTrayAvailable() const override;
43
44 public slots:
45     void showMessage(const QString &title, const QString &message, MessageIcon icon = Information, int msTimeout = 10000, uint notificationId = 0) override;
46     void closeMessage(uint notificationId) override;
47
48 private slots:
49     void onModeChanged(Mode mode);
50     void onVisibilityChanged(bool isVisible);
51
52     void onActivated(QSystemTrayIcon::ActivationReason);
53     void onMessageClicked();
54
55     void updateIcon();
56     void updateToolTip();
57
58 private:
59     uint _lastMessageId {0};
60
61 #ifdef HAVE_KDE4
62     KSystemTrayIcon *_trayIcon;
63 #else
64     QSystemTrayIcon *_trayIcon;
65 #endif
66 };
67
68 #endif /* QT_NO_SYSTEMTRAYICON */