Kstars

opsindi.h
1/*
2 SPDX-FileCopyrightText: 2005 Jasem Mutlaq <mutlaqja@ikarustech.com>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "ui_opsindi.h"
10
11class KStars;
12class KConfigDialog;
13
14/**
15 * @class OpsINDI
16 *
17 * Enables the user to change several INDI options including default ports for common devices,
18 * time and location source, and options pertaining to FITSViewer tool.
19 *
20 * @author Jasem Mutlaq
21 */
22class OpsINDI : public QFrame, public Ui::OpsINDI
23{
25
26 public:
27 OpsINDI();
28 virtual ~OpsINDI() override = default;
29
30 private slots:
31 void saveFITSDirectory();
32 void saveDriversDirectory();
33 void slotShowLogFiles();
34 void toggleINDIInternal();
35 void toggleDriversInternal();
36 void verifyINDIServer();
37 void saveINDIHubAgent();
38
39 private:
40 KConfigDialog *m_ConfigDialog { nullptr };
41};
This is the main window for KStars.
Definition kstars.h:91
Enables the user to change several INDI options including default ports for common devices,...
Definition opsindi.h:23
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.