Kstars

opsterrain.h
1/*
2 SPDX-FileCopyrightText: 2021 Hy Murveit <hy@murveit.com>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "ui_opsterrain.h"
10#include <QFrame>
11#include <kconfigdialog.h>
12
13class KStars;
14
15/**
16 * @class OpsTerrain
17 * The terrain page enables to user to manage the options for the terrain overlay.
18 */
19class OpsTerrain : public QFrame, public Ui::OpsTerrain
20{
22
23 public:
24 explicit OpsTerrain();
25 virtual ~OpsTerrain() override = default;
26 void syncOptions();
27
28 private slots:
29 void slotApply();
30 void saveTerrainFilename();
31
32 private:
33 KConfigDialog *m_ConfigDialog { nullptr };
34};
35
This is the main window for KStars.
Definition kstars.h:91
The terrain page enables to user to manage the options for the terrain overlay.
Definition opsterrain.h:20
Q_OBJECTQ_OBJECT
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Jul 26 2024 11:59:52 by doxygen 1.11.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.