File indexing completed on 2023-05-30 10:45:28
0001 /* 0002 SPDX-FileCopyrightText: 2010 Peter Hedlund <peter.hedlund@kdemail.net> 0003 SPDX-License-Identifier: LGPL-2.0-only 0004 */ 0005 0006 #ifndef PREFTUTOR_H 0007 #define PREFTUTOR_H 0008 0009 #include "ui_preftutorbase.h" 0010 0011 /** 0012 @author Peter Hedlund 0013 */ 0014 class PrefTutor : public QWidget, public Ui::PrefTutorBase 0015 { 0016 Q_OBJECT 0017 public: 0018 explicit PrefTutor(QWidget *parent); 0019 0020 private Q_SLOTS: 0021 void timingChanged(int); 0022 void minChanged(int ); 0023 void maxChanged(int ); 0024 0025 }; 0026 0027 #endif