Kstars

fitsdebayer.h
1/*
2 SPDX-FileCopyrightText: 2015 Jasem Mutlaq <mutlaqja@ikarustech.com>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "bayer.h"
10#include "ui_fitsdebayer.h"
11
12class FITSViewer;
13
14class debayerUI : public QDialog, public Ui::FITSDebayerDialog
15{
17
18 public:
19 explicit debayerUI(QDialog *parent = 0);
20};
21
22class FITSDebayer : public QDialog
23{
25
26 public:
27 explicit FITSDebayer(FITSViewer *parent);
28
29 virtual ~FITSDebayer() override = default;
30
31 void setBayerParams(BayerParams *param);
32
33 public slots:
34 void applyDebayer();
35
36 private:
37 FITSViewer *viewer { nullptr };
38 debayerUI *ui { nullptr };
39};
Primary window to view monochrome and color FITS images.
Definition fitsviewer.h:50
Q_OBJECTQ_OBJECT
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Jul 26 2024 11:59:52 by doxygen 1.11.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.