1 /*
2     SPDX-FileCopyrightText: 2016 Jasem Mutlaq <mutlaqja@ikarustech.com>
3 
4     SPDX-License-Identifier: GPL-2.0-or-later
5 */
6 
7 #pragma once
8 
9 #include "ui_opsdither.h"
10 #include "guide.h"
11 #include "ksutils.h"
12 #include "kspaths.h"
13 
14 class KConfigDialog;
15 
16 namespace Ekos
17 {
18 /**
19  * @class OpsDither
20  *
21  * Enables the user to set guide options
22  *
23  * @author Jasem Mutlaq
24  */
25 class OpsDither : public QFrame, public Ui::OpsDither
26 {
27         Q_OBJECT
28 
29     public:
30         explicit OpsDither();
31         virtual ~OpsDither() override = default;
32 
33     signals:
34         void settingsUpdated();
35 
36     private:
37         KConfigDialog *m_ConfigDialog { nullptr };
38 
39 };
40 }
41