1 /*
2  * Stellarium
3  * Copyright (C) 2019 Alexander Wolf
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA  02110-1335, USA.
17 */
18 
19 #ifndef ASTROCALCEXTRAEPHEMERISDIALOG_HPP
20 #define ASTROCALCEXTRAEPHEMERISDIALOG_HPP
21 
22 #include "StelDialog.hpp"
23 
24 #include <QObject>
25 
26 class Ui_astroCalcExtraEphemerisDialogForm;
27 
28 //! @class AstroCalcExtraEphemerisDialog
29 class AstroCalcExtraEphemerisDialog : public StelDialog
30 {
31 	Q_OBJECT
32 
33 public:
34 	AstroCalcExtraEphemerisDialog();
35 	virtual ~AstroCalcExtraEphemerisDialog() Q_DECL_OVERRIDE;
36 
37 public slots:
38 	virtual void retranslate() Q_DECL_OVERRIDE;
39 
40 private slots:
41 	void setOptionStatus();
42 
43 protected:
44 	//! Initialize the dialog widgets and connect the signals/slots.
45 	virtual void createDialogContent() Q_DECL_OVERRIDE;
46 	Ui_astroCalcExtraEphemerisDialogForm *ui;
47 };
48 
49 #endif // ASTROCALCEXTRAEPHEMERISDIALOG_HPP
50