File indexing completed on 2024-03-24 15:16:42

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_opsekos.h"
0010 
0011 class KConfigDialog;
0012 
0013 /**
0014  * @class OpsEkos
0015  *
0016  * Enables the user to set remote connection devices and options in addition to online and offline astrometry.net settings.
0017  * The user can also select to enable or disable audiable alarms upon capturing FITS or when an operation is completed.
0018  *
0019  * @author Jasem Mutlaq
0020  */
0021 class OpsEkos : public QTabWidget, public Ui::OpsEkos
0022 {
0023         Q_OBJECT
0024 
0025     public:
0026         explicit OpsEkos();
0027         ~OpsEkos() = default;
0028 
0029     private:
0030         KConfigDialog *m_ConfigDialog;
0031 };