Stellarium 0.12.3
SupernovaeDialog.hpp
1 /*
2  * Stellarium Historical Supernovae Plug-in GUI
3  *
4  * Copyright (C) 2012 Alexander Wolf
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
19 */
20 
21 #ifndef _SUPERNOVAEDIALOG_HPP_
22 #define _SUPERNOVAEDIALOG_HPP_
23 
24 #include <QObject>
25 #include "StelDialog.hpp"
26 #include "Supernovae.hpp"
27 
28 class Ui_supernovaeDialog;
29 class QTimer;
30 
32 {
33  Q_OBJECT
34 
35 public:
38 
39 protected:
41  void createDialogContent();
42 
43 public slots:
44  void retranslate();
45  void refreshUpdateValues(void);
46 
47 private slots:
48  void setUpdateValues(int days);
49  void setUpdatesEnabled(int checkState);
50  void updateStateReceiver(Supernovae::UpdateState state);
51  void updateCompleteReceiver();
52  void restoreDefaults(void);
53  void saveSettings(void);
54  void updateJSON(void);
55 
56 private:
57  Ui_supernovaeDialog* ui;
58  void setAboutHtml(void);
59  void updateGuiFromSettings(void);
60  QTimer* updateTimer;
61 
62 };
63 
64 #endif // _SUPERNOVAEDIALOG_HPP_