Alignment works + scrolls to the alerting timer
[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_ = "/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 void AlertSound::play()
59 {
60     pSound_->stop(); //Just testing if stopping the previous alert will prevent the jammming of the sound
61     pSound_->play();
62     qDebug() << "Sound should be played now";
63 }
64
65 void AlertSound::stop()
66 {
67
68     pSound_->stop();
69 }
70
71
72
73 void AlertSound::setSound(QString filename)
74 {
75    QSettings settings("KitchenAlert","KitchenAlert");
76    settings.setValue("UseDefaultSound",false);
77    settings.setValue("soundfile",filename);
78    pSound_->setCurrentSource(filename);
79 }
80
81 void AlertSound::setDefaultSound()
82 {
83     QSettings settings ("KitchenAlert","KitchenAlert");
84     settings.setValue("UseDefaultSound",true);
85     pSound_->setCurrentSource(defaultsound_);
86 }