Stellarium  0.16.1
GreatRedSpotDialog.hpp
1 /*
2  * Stellarium
3  *
4  * Copyright (C) 2016 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  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
18 */
19 
20 #ifndef _GREATREDSPOTDIALOG_HPP_
21 #define _GREATREDSPOTDIALOG_HPP_
22 
23 #include <QObject>
24 #include <QDateTime>
25 #include "StelDialog.hpp"
26 #include "SolarSystem.hpp"
27 
28 class Ui_GreatRedSpotDialogForm;
29 
31 {
32  Q_OBJECT
33 
34 public:
36  virtual ~GreatRedSpotDialog();
37 
38 public slots:
39  void retranslate();
40  void setVisible(bool);
41 
42 private slots:
43  void setGrsJD(QDateTime dt);
44  void openRecentGrsMeasurement();
45 
46 protected:
48  virtual void createDialogContent();
49  Ui_GreatRedSpotDialogForm *ui;
50 
51 };
52 
53 #endif // _GREATREDSPOTDIALOG_HPP_
Base class for all the GUI windows in Stellarium.
Definition: StelDialog.hpp:72
virtual void createDialogContent()
Initialize the dialog widgets and connect the signals/slots.