Lomiri
Loading...
Searching...
No Matches
Timer.cpp
1/*
2 * Copyright (C) 2015 Canonical Ltd.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 3.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17#include "Timer.h"
18
19namespace LomiriUtil {
20
21Timer::Timer(QObject *parent) : AbstractTimer(parent)
22{
23 m_timer.setSingleShot(true);
24 connect(&m_timer, &QTimer::timeout, this, &AbstractTimer::timeout);
25}
26
27int Timer::interval() const
28{
29 return m_timer.interval();
30}
31
32void Timer::setInterval(int msecs)
33{
34 m_timer.setInterval(msecs);
35}
36
37void Timer::start()
38{
39 m_timer.start();
40}
41
42void Timer::stop()
43{
44 m_timer.stop();
45}
46
47bool Timer::isRunning() const
48{
49 return m_timer.isActive();
50}
51
52bool Timer::isSingleShot() const
53{
54 return m_timer.isSingleShot();
55}
56
57void Timer::setSingleShot(bool value)
58{
59 m_timer.setSingleShot(value);
60}
61
62} // namespace LomiriUtil