Kstars

imagingplanneroptions.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_imagingplanneroptions.h"
10
11#include <QWidget>
12#include <QInputDialog>
13
14class ImagingPlannerOptionsUI : public QFrame, public Ui::ImagingPlannerOptions
15{
17
18 public:
19 explicit ImagingPlannerOptionsUI(QWidget *p = nullptr);
20};
21
22class ImagingPlannerOptions : public QDialog
23{
25
26 public:
27
28 explicit ImagingPlannerOptions(QWidget *parent);
29 virtual ~ImagingPlannerOptions() override = default;
30
31 protected:
32 void showEvent(QShowEvent *) override;
33
34 private slots:
35 void slotIndependentWindow(bool checked);
36 void slotCenterOnSkyMap(bool checked);
37
38 private:
39 ImagingPlannerOptionsUI *ui { nullptr };
40};
41
Q_OBJECTQ_OBJECT
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 18 2024 12:16:42 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.