Kstars

opscalibration.h
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_opscalibration.h"
10
11class KConfigDialog;
12
13namespace Ekos
14{
15class InternalGuider;
16
17/**
18 * @class OpsCalibration
19 *
20 * Enables the user to set guide calibration options
21 *
22 * @author Jasem Mutlaq
23 */
24class OpsCalibration : public QFrame, public Ui::OpsCalibration
25{
27
28 public:
29 explicit OpsCalibration(InternalGuider *guiderObject);
30 virtual ~OpsCalibration() override = default;
31
32 protected:
33 void showEvent(QShowEvent *) override;
34
35 private slots:
36
37 void slotApply();
38
39 private:
40 KConfigDialog *m_ConfigDialog { nullptr };
41 InternalGuider *guider { nullptr };
42};
43}
Enables the user to set guide calibration options.
Ekos is an advanced Astrophotography tool for Linux.
Definition align.cpp:78
Q_OBJECTQ_OBJECT
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:19:02 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.