File indexing completed on 2024-03-24 15:17:38

0001 /*
0002     SPDX-FileCopyrightText: 2011 Samikshan Bairagya <samikshan@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "ui_opssupernovae.h"
0010 
0011 #include <kconfigdialog.h>
0012 
0013 class KStars;
0014 
0015 /**
0016  * @class OpsSupernovae
0017  *
0018  * The Supernovae Tab of the Options window.  In this Tab the user can configure
0019  * supernovae options and select if supernovae should be drawn on the skymap.
0020  * Also the user is given the option to check for updates on startup. And whether
0021  * to be alerted on startup.
0022  *
0023  * @author Samikshan Bairagya
0024  * @version 1.0
0025  */
0026 class OpsSupernovae : public QFrame, public Ui::OpsSupernovae
0027 {
0028     Q_OBJECT
0029 
0030   public:
0031     explicit OpsSupernovae();
0032 
0033     ~OpsSupernovae() override = default;
0034 };