File indexing completed on 2024-04-21 03:42:04

0001 /*
0002     SPDX-FileCopyrightText: 2005 Michael Goettsche <michael.goettsche@kdemail.net>
0003     SPDX-FileCopyrightText: 2006 Anne-Marie Mahfouf <annemarie.mahfouf@free.fr>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 #ifndef TIMER_H_
0009 #define TIMER_H_
0010 
0011 #include <QWidget>
0012 #include "ui_timerui.h"
0013 
0014 /**
0015  * @short Timer widget in Settings dialog
0016  * @author Michael Goettsche <michael.goettsche@kdemail.net >
0017  * @version 0.1
0018  */
0019 
0020 class Timer : public QWidget
0021 {
0022 Q_OBJECT
0023 
0024 public:
0025      ///Constructor
0026     Timer();
0027 
0028 protected:
0029     Ui::timerui ui_timer;
0030 
0031 protected Q_SLOTS:
0032     ///When the QSlider value changes
0033     void sliderValueChanged();
0034 };
0035 
0036 
0037 #endif //TIMER_H_