Stellarium 0.12.4
StelDialog.hpp
1 /*
2  * Stellarium
3  * Copyright (C) 2008 Fabien Chereau
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  *
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 _STELDIALOG_HPP_
21 #define _STELDIALOG_HPP_
22 
23 #include <QObject>
24 
44 class StelDialog : public QObject
45 {
46  Q_OBJECT
47 public:
48  StelDialog(QObject* parent=NULL);
49  virtual ~StelDialog();
50 
51  bool visible() const;
52 
53 public slots:
64  virtual void retranslate() = 0;
66  void setVisible(bool);
68  void close();
69 signals:
70  void visibleChanged(bool);
71 
72 protected:
74  virtual void createDialogContent()=0;
75 
77  QWidget* dialog;
78  class CustomProxy* proxy;
79 };
80 
81 #endif // _STELDIALOG_HPP_