Kstars

opsadvanced.h
1/*
2 SPDX-FileCopyrightText: 2004 Jason Harris <jharris@30doradus.org>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "ui_opsadvanced.h"
10
11/**
12 * @class OpsAdvanced
13 * The Advanced Tab of the Options window. In this Tab the user can configure
14 * advanced behaviors of the program, including:
15 * @li Whether some objects are hidden when the map is moving (and which objects)
16 * @li Whether positions are corrected for atmospheric refraction
17 * @li Whether a slewing animation is used to move the Focus position
18 * @li Whether centered objects are automatically labeled
19 * @li whether a "transient" label is attached when the mouse "hovers" at an object.
20 * @li whether to enable verbose debug output to a file which could be useful in troubleshooting any issues in KStars.
21 *
22 * @author Jason Harris, Jasem Mutlaq
23 * @version 1.1
24 */
25
26class OpsAdvanced : public QFrame, public Ui::OpsAdvanced
27{
29
30 public:
32 virtual ~OpsAdvanced() override = default;
33
34 private slots:
35 void slotChangeTimeScale(float newScale);
36 void slotToggleHideOptions();
37 void slotToggleVerbosityOptions();
38 void slotToggleOutputOptions();
39 void slotShowLogFiles();
40 void slotApply();
41 void slotPurge();
42};
The Advanced Tab of the Options window.
Definition opsadvanced.h:27
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:03 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.