Kstars

opsimageoverlay.h
1/*
2 SPDX-FileCopyrightText: 2023 Hy Murveit <hy@murveit.com>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "ui_opsimageoverlay.h"
10#include <QFrame>
11#include <kconfigdialog.h>
12
13class KStars;
14namespace Ekos
15{
16class StellarSolverProfileEditor;
17}
18
19/**
20 * @class OpsImageOverlay
21 * The terrain page enables to user to manage the options for image overlays.
22 */
23class OpsImageOverlay : public QFrame, public Ui::OpsImageOverlay
24{
26
27 public:
28 explicit OpsImageOverlay();
29 virtual ~OpsImageOverlay() override = default;
30 void syncOptions();
31 QTableWidget *table();
32 QGroupBox *tableTitleBox();
33 QPlainTextEdit *statusDisplay();
34 QPushButton *solvePushButton();
35 QComboBox *solverProfile();
36
37 private slots:
38 void slotApply();
39
40 private:
41 KConfigDialog *m_ConfigDialog { nullptr };
43 QSharedPointer<KConfigDialog> m_EditorDialog;
44};
45
This is the main window for KStars.
Definition kstars.h:91
The terrain page enables to user to manage the options for image overlays.
Ekos is an advanced Astrophotography tool for Linux.
Definition align.cpp:79
Q_OBJECTQ_OBJECT
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Sat Apr 27 2024 22:13:27 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.