Version 0.2.1
[kitchenalert] / src / alertsound.cpp
1 /**************************************************************************
2         This file is part of KitchenAlert
3
4         Copyright (C) 2010-2011  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
33
34 AlertSound::AlertSound(QObject *parent) :
35     QObject(parent)
36 {
37
38     defaultsound_ = "/home/opt/KitchenAlert/DoorbellModifiedFinal.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
56
57
58       pSound_ = new QMediaPlayer;
59       pSound_->setMedia(QUrl::fromLocalFile(filename));
60 }
61
62 AlertSound::~AlertSound()
63 {
64
65     if (pSound_ != NULL)
66     {
67         delete pSound_;
68     }
69 }
70
71 void AlertSound::play()
72 {
73      pSound_->play();
74   //  qDebug() << "Sound should be played now";
75 }
76
77 void AlertSound::stop()
78 {
79
80     pSound_->stop();
81 //    qDebug() << pSound_->state();
82 //    qDebug() << "Sound stopped by AlertSound.";
83 }
84
85
86
87 void AlertSound::setSound(QString filename)
88 {
89
90    pSound_->setMedia(QUrl::fromLocalFile(filename));
91 }
92
93 void AlertSound::setDefaultSound()
94 {
95
96     pSound_->setMedia(QUrl::fromLocalFile(defaultsound_));
97 }