b53541f0fdcfc082aec34796c19f498288767359
[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
30
31
32 AlertSound::AlertSound(QObject *parent) :
33     QObject(parent)
34 {
35
36     //THIS NEEDS TESTING: DOES IT REALLY CHANGE TUNE WHEN RESTARTING THE APPLICATION?
37
38     defaultsound_ = "/home/opt/KitchenAlert/Doorbell-old-tring-modified-multiplied-low-quality.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 AlertSound::~AlertSound()
59 {
60
61     if (pSound_ != NULL)
62     {
63         delete pSound_;
64     }
65 }
66
67 void AlertSound::play()
68 {
69     pSound_->stop(); //Just testing if stopping the previous alert will prevent the jammming of the sound (only partially, but since it helped some, keeping it even if the problem was solved otherwise)
70     pSound_->play();
71     qDebug() << "Sound should be played now";
72 }
73
74 void AlertSound::stop()
75 {
76
77     pSound_->stop();
78     qDebug() << pSound_->state();
79     qDebug() << "Sound stopped by AlertSound.";
80 }
81
82
83
84 void AlertSound::setSound(QString filename)
85 {
86    QSettings settings("KitchenAlert","KitchenAlert");
87    settings.setValue("UseDefaultSound",false);
88    settings.setValue("soundfile",filename);
89    pSound_->setCurrentSource(filename);
90 }
91
92 void AlertSound::setDefaultSound()
93 {
94     QSettings settings ("KitchenAlert","KitchenAlert");
95     settings.setValue("UseDefaultSound",true);
96     pSound_->setCurrentSource(defaultsound_);
97 }