Kstars

pwizfovbrowse.h
1/*
2 SPDX-FileCopyrightText: 2011 Rafał Kułaga <rl.kulaga@gmail.com>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#ifndef PWIZFOVBROWSER_H
8#define PWIZFOVBROWSER_H
9
10#include "ui_pwizfovbrowse.h"
11
12class PrintingWizard;
13
14/**
15 * \class PWizFovBrowseUI
16 * \brief User interface for "Browse captured FOV images" step of Printing Wizard.
17 * \author Rafał Kułaga
18 */
19class PWizFovBrowseUI : public QFrame, public Ui::PWizFovBrowse
20{
22 public:
23 /**
24 * \brief Constructor.
25 */
26 explicit PWizFovBrowseUI(PrintingWizard *wizard, QWidget *parent = nullptr);
27
28 private slots:
29 /**
30 * \brief Slot: open FOV editor window.
31 */
32 void slotOpenFovEditor();
33
34 private:
35 PrintingWizard *m_ParentWizard;
36};
37
38#endif // PWIZFOVBROWSER_H
User interface for "Browse captured FOV images" step of Printing Wizard.
PWizFovBrowseUI(PrintingWizard *wizard, QWidget *parent=nullptr)
Constructor.
Class representing Printing Wizard for KStars printed documents (currently only finder charts).
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:03 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.