Kstars

opsprograms.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_opsprograms.h"
11
12#include <QWidget>
13
14class KConfigDialog;
15
16namespace Ekos
17{
18class Align;
19
20class OpsPrograms : public QWidget, public Ui::OpsPrograms
21{
23
24 public:
25 explicit OpsPrograms(Align *parent);
26 virtual ~OpsPrograms() override = default;
27
28 protected:
29 private slots:
30 void loadDefaultPaths(int option);
31 void slotApply();
32
33 signals:
34 void settingsUpdated();
35
36 private:
37 KConfigDialog *m_ConfigDialog { nullptr };
38 Align *alignModule { nullptr };
39
40
41};
42}
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.