177a9a2a6b31704b8dd035436aa7e16563a94df1
[kitchenalert] / src / timer.cpp
1 /**************************************************************************
2         KitchenAlert
3
4         Copyright (C) 2010  Heli Hyvättinen
5
6         This file is part of KitchenAlert.
7
8         Kitchen Alert is free software: you can redistribute it and/or modify
9         it under the terms of the GNU General Public License as published by
10         the Free Software Foundation, either version 3 of the License, or
11         (at your option) any later version.
12
13         This program is distributed in the hope that it will be useful,
14         but WITHOUT ANY WARRANTY; without even the implied warranty of
15         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16         GNU General Public License for more details.
17
18         You should have received a copy of the GNU General Public License
19         along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21 **************************************************************************/
22
23
24
25
26
27 #include "timer.h"
28 #include "currentalertstablemodel.h"
29 #include <qdebug.h>
30
31 Timer::Timer(QObject *parent) :
32     QObject(parent)
33 {
34     _originalTime = 0;
35
36     _actualTimer.setInterval(1000); // 1 s
37     connect(&_actualTimer, SIGNAL(timeout()), this, SLOT(secondPassed()));
38
39     alerting_ = false;
40 }
41
42
43 int Timer::getOriginalTimeInSeconds()
44 {
45     return _originalTime;
46 }
47
48 void Timer::setOriginalTimeInSeconds(int seconds)
49 {
50 _originalTime = seconds;
51 }
52
53 int Timer::getRemainingTimeInSeconds()
54 {
55     return _remainingTime;
56 }
57
58 QString Timer::getAlertText()
59 {
60     return _alertText;
61 }
62
63 void Timer::setAlertText(QString text)
64 {
65     _alertText = text;
66 }
67
68 void Timer::secondPassed()
69 {
70     _remainingTime--;
71
72
73     if (_remainingTime == 0)
74     {
75         alerting_ = true;
76         alertSound_.play();
77         emit alert(whereAmI());
78 //        qDebug() << "alerting";
79     }
80
81     emit remainingTimeChanged(); //after alerting in case of alert so that status gets updated immediately
82 }
83
84 void Timer::start()
85 {
86     _remainingTime = _originalTime;
87     _actualTimer.start();
88
89
90
91     if (_originalTime == 0) //a 00:00:00 alert has to  be checked here, since it's already negative when checked for the next time
92     {
93         alerting_  = true;
94         alertSound_.play();
95         emit alert(whereAmI());
96         qDebug () << "Alerting 00:00:00 from row: " << whereAmI().row();
97     }
98
99     else
100     {
101         alerting_ = false;
102         alertSound_.stop();
103     }
104
105 }
106
107
108 void Timer::stop()
109 {
110     _actualTimer.stop();
111     _remainingTime = 0; //Stopped timer shows 00:00:00 (which unfortunately makes it red...)
112
113     alerting_ = false;
114     alertSound_.stop();
115 }
116
117 void Timer::snooze()
118 {
119     _remainingTime = 120;
120
121     alerting_ = false;
122     alertSound_.stop();
123 }
124
125
126 bool Timer::isAlerting()
127 {
128     return alerting_;
129 }
130
131 QModelIndex Timer::whereAmI()
132 {
133
134
135    QObject * p_parent = parent();
136
137
138    CurrentAlertsTableModel* p_parentModel = qobject_cast<CurrentAlertsTableModel *> (p_parent);
139
140    if (p_parentModel == NULL) //If no parent or parent is not of right class, return an invalid index
141         return QModelIndex();
142
143
144   return p_parentModel->giveIndexForTimer(this);
145
146
147 }
148