Implement core-side highlights
[quassel.git] / src / qtui / qtmultimedianotificationbackend.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2015 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 PHONONNOTIFICATIONBACKEND_H_
22 #define PHONONNOTIFICATIONBACKEND_H_
23
24 #include <memory>
25
26 #include <QMediaPlayer>
27
28 #include "abstractnotificationbackend.h"
29 #include "settingspage.h"
30
31 #include "ui_qtmultimedianotificationconfigwidget.h"
32
33 class QtMultimediaNotificationBackend : public AbstractNotificationBackend
34 {
35     Q_OBJECT
36
37 public:
38     QtMultimediaNotificationBackend(QObject *parent = 0);
39
40     void notify(const Notification &) override;
41     void close(uint notificationId) override;
42     virtual SettingsPage *createConfigWidget() const override;
43
44 private slots:
45     void enabledChanged(const QVariant &);
46     void audioFileChanged(const QVariant &);
47     void createMediaObject(const QString &name);
48
49 private:
50     class ConfigWidget;
51
52     bool _enabled;
53     std::unique_ptr<QMediaPlayer> _media;
54 };
55
56
57 class QtMultimediaNotificationBackend::ConfigWidget : public SettingsPage
58 {
59     Q_OBJECT
60
61 public:
62     ConfigWidget(QWidget *parent = 0);
63
64     void save() override;
65     void load() override;
66     bool hasDefaults() const override;
67     void defaults() override;
68
69 private slots:
70     void widgetChanged();
71     void on_open_clicked();
72     void on_play_clicked();
73
74 private:
75     Ui::QtMultimediaNotificationConfigWidget ui;
76
77     bool _enabled;
78     bool _audioAvailable;
79     QString _filename;
80     std::unique_ptr<QMediaPlayer> _audioPreview;
81 };
82
83
84 #endif