1/***************************************************************************
2 * Copyright (C) 2005-2014 by the Quassel Project *
3 * devel@quassel-irc.org *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) version 3. *
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#ifndef SYSTRAYNOTIFICATIONBACKEND_H_
22#define SYSTRAYNOTIFICATIONBACKEND_H_
23
24#include "abstractnotificationbackend.h"
25#include "settingspage.h"
26#include "systemtray.h"
27
28class QCheckBox;
29
30class SystrayNotificationBackend : public AbstractNotificationBackend
31{
32 Q_OBJECT
33
34public:
35 SystrayNotificationBackend(QObject *parent = 0);
36
37 void notify(const Notification &);
38 void close(uint notificationId);
39 virtual SettingsPage *createConfigWidget() const;
40
41protected:
42 virtual bool eventFilter(QObject *obj, QEvent *event);
43
44private slots:
45 void notificationActivated(uint notificationId);
46 void notificationActivated(SystemTray::ActivationReason);
47
48 void animateChanged(const QVariant &);
49 void showBubbleChanged(const QVariant &);
50 void updateToolTip();
51
52private:
53 class ConfigWidget;
54
55 bool _showBubble;
56 bool _animate;
57 QList<Notification> _notifications;
58 bool _blockActivation;
59};
60
61
62class SystrayNotificationBackend::ConfigWidget : public SettingsPage
63{
64 Q_OBJECT
65
66public:
67 ConfigWidget(QWidget *parent = 0);
68 void save();
69 void load();
70 bool hasDefaults() const;
71 void defaults();
72
73private slots:
74 void widgetChanged();
75
76private:
77 QCheckBox *_showBubbleBox;
78 bool _showBubble;
79};
80
81
82#endif
83