1 /*
2     SPDX-FileCopyrightText: 2011 Samikshan Bairagya <samikshan@gmail.com>
3 
4     SPDX-License-Identifier: GPL-2.0-or-later
5 */
6 
7 #pragma once
8 
9 #include "ui_opssupernovae.h"
10 
11 #include <kconfigdialog.h>
12 
13 class KStars;
14 
15 /**
16  * @class OpsSupernovae
17  *
18  * The Supernovae Tab of the Options window.  In this Tab the user can configure
19  * supernovae options and select if supernovae should be drawn on the skymap.
20  * Also the user is given the option to check for updates on startup. And whether
21  * to be alerted on startup.
22  *
23  * @author Samikshan Bairagya
24  * @version 1.0
25  */
26 class OpsSupernovae : public QFrame, public Ui::OpsSupernovae
27 {
28     Q_OBJECT
29 
30   public:
31     explicit OpsSupernovae();
32 
33     ~OpsSupernovae() override = default;
34 };
35