Kstars

manualrotator.h
1/* Ekos Alignment Manual Rotator
2 SPDX-FileCopyrightText: 2021 Rick Bassham
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5 */
6
7#pragma once
8
9#include "ui_manualrotator.h"
10#include "ekos/ekos.h"
11
12namespace Ekos
13{
14
15class Align;
16
17class ManualRotator : public QDialog, public Ui::ManualRotator
18{
20
21 public:
22 explicit ManualRotator(Align *parent);
23 ~ManualRotator();
24
25 void setRotatorDiff(double current, double target, double diff);
26
27private:
28
29 signals:
30 void newLog(const QString &);
31 void captureAndSolve();
32
33 private:
34
35 Align *m_AlignInstance {nullptr};
36};
37}
Ekos is an advanced Astrophotography tool for Linux.
Definition align.cpp:78
Q_OBJECTQ_OBJECT
QObject * parent() const const
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.