Lomiri
Loading...
Searching...
No Matches
Timer.h
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#ifndef LOMIRIUTIL_TIMER_H
18#define LOMIRIUTIL_TIMER_H
19
20#include "ElapsedTimer.h"
21
22#include <QObject>
23#include <QPointer>
24#include <QTimer>
25
26namespace LomiriUtil {
27
29class AbstractTimer : public QObject
30{
31 Q_OBJECT
32public:
33 AbstractTimer(QObject *parent) : QObject(parent) {}
34 virtual int interval() const = 0;
35 virtual void setInterval(int msecs) = 0;
36 virtual void start() = 0;
37 virtual void stop() = 0;
38 virtual bool isRunning() const = 0;
39 virtual bool isSingleShot() const = 0;
40 virtual void setSingleShot(bool value) = 0;
41Q_SIGNALS:
42 void timeout();
43};
44
46class Timer : public AbstractTimer
47{
48 Q_OBJECT
49public:
50 Timer(QObject *parent = nullptr);
51
52 int interval() const override;
53 void setInterval(int msecs) override;
54 void start() override;
55 void stop() override;
56 bool isRunning() const override;
57 bool isSingleShot() const override;
58 void setSingleShot(bool value) override;
59private:
60 QTimer m_timer;
61};
62
63class AbstractTimerFactory
64{
65public:
66 virtual ~AbstractTimerFactory() {}
67 virtual AbstractTimer *create(QObject *parent = nullptr) = 0;
68};
69
70class TimerFactory : public AbstractTimerFactory
71{
72public:
73 AbstractTimer *create(QObject *parent = nullptr) override { return new Timer(parent); }
74};
75
76} // namespace LomiriUtil
77
78#endif // LOMIRIUTIL_TIMER_H