File indexing completed on 2024-04-14 05:46:46

0001 /*
0002     SPDX-License-Identifier: GPL-2.0-or-later
0003 */
0004 
0005 #ifndef RSIBREAK_NOTIFICATOR_H
0006 #define RSIBREAK_NOTIFICATOR_H
0007 
0008 #include <QDebug>
0009 #include <QObject>
0010 
0011 class Notificator : public QObject
0012 {
0013     Q_OBJECT
0014 
0015 public slots:
0016 
0017     void onShortTimerReset();
0018 
0019     void onTimersReset();
0020 
0021     void onStartLongBreak();
0022 
0023     void onEndLongBreak();
0024 
0025     void onStartShortBreak();
0026 
0027     void onEndShortBreak();
0028 };
0029 
0030 #endif // RSIBREAK_NOTIFICATOR_H