Kstars

sequenceeditor.h
1/*
2 SPDX-FileCopyrightText: 2024 Hy Murveit <hy@murveit.com>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "ui_sequenceeditorui.h"
10
11#include <QDialog>
12
13namespace Ekos
14{
15
16class Capture;
17
18class SequenceEditor : public QDialog, public Ui::SequenceEditorUI
19{
21
22 public:
23
24 SequenceEditor(QWidget *parent = nullptr);
25
26 void showEvent(QShowEvent* event) override;
27
28 public slots:
29
30 signals:
31
32 private slots:
33
34 private:
36 QVariantMap m_Settings;
37
38 // Disable all the widgets that aren't used in stand-alone mode.
39 void initStandAlone();
40
41 void onStandAloneShow();
42};
43
44}
Ekos is an advanced Astrophotography tool for Linux.
Definition align.cpp:79
Q_OBJECTQ_OBJECT
QObject * parent() const const
virtual bool event(QEvent *event) override
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 3 2024 11:49:50 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.