Kstars

opsastrometry.h
1/*
2 SPDX-FileCopyrightText: 2017 Jasem Mutlaq <mutlaqja@ikarustech.com>
3 SPDX-FileCopyrightText: 2017 Robert Lancaster <rlancaste@gmail.com>
4
5 SPDX-License-Identifier: GPL-2.0-or-later
6*/
7
8#pragma once
9
10#include "ui_opsastrometry.h"
11
12#include <QWidget>
13
14class KConfigDialog;
15
16namespace Ekos
17{
18class Align;
19
20class OpsAstrometry : public QWidget, public Ui::OpsAstrometry
21{
23
24 public:
25
26 explicit OpsAstrometry(Align *parent);
27 virtual ~OpsAstrometry() override = default;
28
29 protected:
30 void showEvent(QShowEvent *) override;
31
32 private slots:
33 void slotUpdatePosition();
34 void slotUpdateScale();
35 void slotApply();
36
37 private:
38 KConfigDialog *m_ConfigDialog { nullptr };
39 Align *alignModule { nullptr };
40};
41}
Ekos is an advanced Astrophotography tool for Linux.
Definition align.cpp:78
Q_OBJECTQ_OBJECT
QObject * parent() const const
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.