Added saving of alerts - unstable!!!
[kitchenalert] / src / alertsound.cpp
1 /**************************************************************************
2         This file is part of KitchenAlert v.0.09
3
4         Copyright (C) 2010  Heli Hyvättinen
5
6         Kitchen Alert is free software: you can redistribute it and/or modify
7         it under the terms of the GNU General Public License as published by
8         the Free Software Foundation, either version 3 of the License, or
9         (at your option) any later version.
10
11         This program is distributed in the hope that it will be useful,
12         but WITHOUT ANY WARRANTY; without even the implied warranty of
13         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14         GNU General Public License for more details.
15
16         You should have received a copy of the GNU General Public License
17         along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 **************************************************************************/
20
21
22
23
24
25 #include "alertsound.h"
26
27 #include <QDebug>
28 #include <QSettings>
29 #include <QList>
30
31
32
33
34 AlertSound::AlertSound(QObject *parent) :
35     QObject(parent)
36 {
37
38     defaultsound_ = "/opt/KitchenAlert/06capemaycloser_modifiedlouder.mp3";
39     QString filename;
40
41     QSettings settings("KitchenAlert","KitchenAlert");
42
43    // settings.clear(); //REMOVE THIS AFTER TESTING!!!!!!
44
45     bool useDefaultSound = settings.value("UseDefaultSound",true).toBool();
46     qDebug() << "In AlertSound constructor UseDefaultSound is " << useDefaultSound;
47     if (useDefaultSound == true)
48     {
49         filename = defaultsound_;
50     }
51     else
52     {
53         filename = settings.value("soundfile",defaultsound_).toString();
54     }
55     pSound_ = Phonon::createPlayer(Phonon::MusicCategory, Phonon::MediaSource(filename));
56
57
58     //TESTCODE!!!
59
60     QList<Phonon::AudioOutputDevice> audioOutputDevices =
61                  Phonon::BackendCapabilities::availableAudioOutputDevices();
62
63     foreach (Phonon::AudioOutputDevice device, audioOutputDevices)
64     {
65     qDebug() << device.name() << device.description();
66     }
67 }
68
69 void AlertSound::play()
70 {
71
72     //TESTCODE
73
74     Phonon::AudioOutput *audioOutput = new Phonon::AudioOutput(Phonon::MusicCategory, this);
75
76     Phonon::Path path = Phonon::createPath(pSound_, audioOutput);
77
78     audioOutput->setVolumeDecibel(0);
79
80     //TESTCODE ENDS
81
82     pSound_->play();
83     qDebug() << "Sound should be played now";
84 }
85
86 void AlertSound::stop()
87 {
88
89     pSound_->stop();
90 }
91
92 void AlertSound::setSound(QString filename)
93 {
94    QSettings settings("KitchenAlert","KitchenAlert");
95    settings.setValue("UseDefaultSound",false);
96    settings.setValue("soundfile",filename);
97    pSound_->setCurrentSource(filename);
98 }
99
100 void AlertSound::setDefaultSound()
101 {
102     QSettings settings ("KitchenAlert","KitchenAlert");
103     settings.setValue("UseDefaultSound",true);
104     pSound_->setCurrentSource(defaultsound_);
105 }