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

0001 /*
0002     SPDX-FileCopyrightText: 2020 Hy Murveit <hy@murveit.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "ui_opsgpg.h"
0010 
0011 class KConfigDialog;
0012 
0013 namespace Ekos
0014 {
0015 class InternalGuider;
0016 
0017 /**
0018  * @class OpsGPG
0019  *
0020  * Enables the user to set Gaussian Process Guider options
0021  *
0022  * @author Hy Murveit
0023  */
0024 class OpsGPG : public QFrame, public Ui::OpsGPG
0025 {
0026     Q_OBJECT
0027 
0028   public:
0029     explicit OpsGPG(InternalGuider *guiderObject);
0030     virtual ~OpsGPG() override = default;
0031 
0032   private slots:
0033     void slotApply();
0034 
0035   private:
0036     KConfigDialog *m_ConfigDialog { nullptr };
0037     InternalGuider *guider { nullptr };
0038 };
0039 }