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 PHONONNOTIFICATIONBACKEND_H_
22#define PHONONNOTIFICATIONBACKEND_H_
23
24#include <phonon/mediaobject.h>
25
26#include "abstractnotificationbackend.h"
27#include "settingspage.h"
28
29#include "ui_phononnotificationconfigwidget.h"
30
31class PhononNotificationBackend : public AbstractNotificationBackend
32{
33 Q_OBJECT
34
35public:
36 PhononNotificationBackend(QObject *parent = 0);
37 ~PhononNotificationBackend();
38
39 void notify(const Notification &);
40 void close(uint notificationId);
41 virtual SettingsPage *createConfigWidget() const;
42
43private slots:
44 void enabledChanged(const QVariant &);
45 void audioFileChanged(const QVariant &);
46 void createMediaObject(const QString &name);
47
48private:
49 class ConfigWidget;
50
51 bool _enabled;
52 bool _audioAvailable;
53 Phonon::MediaObject *_media;
54};
55
56
57class PhononNotificationBackend::ConfigWidget : public SettingsPage
58{
59 Q_OBJECT
60
61public:
62 ConfigWidget(QWidget *parent = 0);
63 ~ConfigWidget();
64
65 void save();
66 void load();
67 bool hasDefaults() const;
68 void defaults();
69
70private slots:
71 void widgetChanged();
72 void on_open_clicked();
73 void on_play_clicked();
74
75private:
76 Ui::PhononNotificationConfigWidget ui;
77
78 bool enabled;
79 bool _audioAvailable;
80 QString filename;
81 Phonon::MediaObject *audioPreview;
82};
83
84
85#endif
86