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_opsekos.h"
10 
11 class KConfigDialog;
12 
13 /**
14  * @class OpsEkos
15  *
16  * Enables the user to set remote connection devices and options in addition to online and offline astrometry.net settings.
17  * The user can also select to enable or disable audiable alarms upon capturing FITS or when an operation is completed.
18  *
19  * @author Jasem Mutlaq
20  */
21 class OpsEkos : public QTabWidget, public Ui::OpsEkos
22 {
23         Q_OBJECT
24 
25     public:
26         explicit OpsEkos();
27         ~OpsEkos() = default;
28 
29     private:
30         KConfigDialog *m_ConfigDialog;
31 };
32