Stellarium 0.13.3
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  Q_PROPERTY(bool visible READ visible WRITE setVisible NOTIFY visibleChanged)
48 public:
49  StelDialog(QObject* parent=NULL);
50  virtual ~StelDialog();
51 
52  bool visible() const;
53 
54 public slots:
65  virtual void retranslate() = 0;
67  void setVisible(bool);
69  void close();
70 signals:
71  void visibleChanged(bool);
72 
73 protected:
75  virtual void createDialogContent()=0;
76 
78  QWidget* dialog;
79  class CustomProxy* proxy;
80 
81 #ifdef Q_OS_WIN
82  void installKineticScrolling(QList<QWidget *> addscroll);
84 #endif
85 };
86 
87 #endif // _STELDIALOG_HPP_
void close()
Closes the window (the window widget is not deleted, just not visible).
virtual void createDialogContent()=0
Initialize the dialog widgets and connect the signals/slots.
Base class for all the GUI windows in Stellarium.
Definition: StelDialog.hpp:44
void setVisible(bool)
On the first call with "true" populates the window contents.
QWidget * dialog
The main dialog.
Definition: StelDialog.hpp:78
virtual void retranslate()=0
Retranslate the content of the dialog.