File indexing completed on 2024-04-28 15:09:53

0001 /*
0002     SPDX-FileCopyrightText: 2016 Jasem Mutlaq <mutlaqja@ikarustech.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "ui_opsdither.h"
0010 
0011 class KConfigDialog;
0012 
0013 namespace Ekos
0014 {
0015 /**
0016  * @class OpsDither
0017  *
0018  * Enables the user to set guide options
0019  *
0020  * @author Jasem Mutlaq
0021  */
0022 class OpsDither : public QFrame, public Ui::OpsDither
0023 {
0024         Q_OBJECT
0025 
0026     public:
0027         explicit OpsDither();
0028         virtual ~OpsDither() override = default;
0029 
0030     signals:
0031         void settingsUpdated();
0032 
0033     private:
0034         KConfigDialog *m_ConfigDialog { nullptr };
0035 
0036 };
0037 }