File indexing completed on 2024-04-21 04:02:28

0001 /*
0002     This file is part of Killbots.
0003 
0004     SPDX-FileCopyrightText: 2007-2009 Parker Coates <coates@kde.org>
0005 
0006     SPDX-License-Identifier: GPL-2.0-or-later
0007 */
0008 
0009 #ifndef KILLBOTS_OPTIONSPAGE_H
0010 #define KILLBOTS_OPTIONSPAGE_H
0011 
0012 class KComboBox;
0013 
0014 class QCheckBox;
0015 class QSlider;
0016 #include <QWidget>
0017 
0018 namespace Killbots
0019 {
0020 class OptionsPage : public QWidget
0021 {
0022     Q_OBJECT
0023 
0024 public: // functions
0025     explicit OptionsPage(QWidget *parent = nullptr);
0026     ~OptionsPage() override;
0027 
0028 public: // data members
0029     QCheckBox *kcfg_PreventUnsafeMoves;
0030     KComboBox *kcfg_MiddleClickAction;
0031     KComboBox *kcfg_RightClickAction;
0032     QSlider *kcfg_AnimationSpeed;
0033 };
0034 }
0035 
0036 #endif