Kstars

opsastap.h
1/*
2 SPDX-FileCopyrightText: 2019 Jasem Mutlaq <mutlaqja@ikarustech.com>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "ui_opsastap.h"
10
11#include <QWidget>
12
13class KConfigDialog;
14
15namespace Ekos
16{
17class Align;
18
19class OpsASTAP : public QWidget, public Ui::OpsASTAP
20{
22
23 public:
24 explicit OpsASTAP(Align *parent);
25 virtual ~OpsASTAP() override = default;
26
27 private slots:
28 void slotApply();
29 void slotSelectExecutable();
30
31 signals:
32 void settingsUpdated();
33
34 private:
35 KConfigDialog *m_ConfigDialog { nullptr };
36 Align *alignModule { nullptr };
37
38
39};
40}
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.