Kstars

opsguide.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_opsguide.h"
10
11#include "guide.h"
12#include "stellarsolver.h"
13#include "parameters.h"
14
15class KConfigDialog;
16
17namespace Ekos
18{
19
20class StellarSolverProfileEditor;
21
22/**
23 * @class OpsGuide
24 *
25 * Enables the user to set guide options
26 *
27 * @author Jasem Mutlaq
28 */
29class OpsGuide : public QFrame, public Ui::OpsGuide
30{
32
33 public:
34 explicit OpsGuide();
35 virtual ~OpsGuide() override = default;
36 void loadOptionsProfiles();
37
38 signals:
39 void settingsUpdated();
40
41 private:
42 KConfigDialog *m_ConfigDialog { nullptr };
44 StellarSolverProfileEditor *optionsProfileEditor { nullptr };
45};
46}
Enables the user to set guide options.
Definition opsguide.h:30
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.