6eaf2662a4aae19d00ad5e92a1239586b82f839a
[quassel.git] / src / qtui / phononnotificationbackend.h
1 /***************************************************************************
2 *   Copyright (C) 2005-09 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 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, 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
31 class PhononNotificationBackend : public AbstractNotificationBackend
32 {
33     Q_OBJECT
34
35 public:
36     PhononNotificationBackend(QObject *parent = 0);
37     ~PhononNotificationBackend();
38
39     void notify(const Notification &);
40     void close(uint notificationId);
41     virtual SettingsPage *createConfigWidget() const;
42
43 private slots:
44     void enabledChanged(const QVariant &);
45     void audioFileChanged(const QVariant &);
46     void createMediaObject(const QString &name);
47
48 private:
49     class ConfigWidget;
50
51     bool _enabled;
52     Phonon::MediaObject *_media;
53 };
54
55
56 class PhononNotificationBackend::ConfigWidget : public SettingsPage
57 {
58     Q_OBJECT
59
60 public:
61     ConfigWidget(QWidget *parent = 0);
62     ~ConfigWidget();
63
64     void save();
65     void load();
66     bool hasDefaults() const;
67     void defaults();
68
69 private slots:
70     void widgetChanged();
71     void on_open_clicked();
72     void on_play_clicked();
73
74 private:
75     Ui::PhononNotificationConfigWidget ui;
76
77     bool enabled;
78     QString filename;
79     Phonon::MediaObject *audioPreview;
80 };
81
82
83 #endif