Stellarium  0.16.1
TargetsDialog.hpp
1 /*
2  * Copyright (C) 2009 Timothy Reaves
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
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 _TARGETSDIALOG_HPP_
20 #define _TARGETSDIALOG_HPP_
21 
22 #include <QObject>
23 #include <QMap>
24 
25 #include "StelDialogLogBook.hpp"
26 #include "StelStyle.hpp"
27 
28 class Ui_TargetsDialogForm;
29 class QModelIndex;
30 class QSqlRecord;
31 class QSqlTableModel;
32 
34  Q_OBJECT
35 
36 public:
37  TargetsDialog(QMap<QString, QSqlTableModel *> theTableModels);
38  virtual ~TargetsDialog();
39  void languageChanged();
41  void styleChanged();
42  void updateStyle();
43 
44 public slots:
45  void aliasChanged();
46  void closeWindow();
47  void catalogNumberChanged();
48  void createTargetFromSelection();
49  void declinationChanged();
50  void deleteSelectedTarget();
51  void distanceChanged();
52  void insertNewTarget();
53  void magnitudeChanged();
54  void nameChanged();
55  void notesChanged();
56  void rightAscentionChanged();
57  void sizeChanged();
58  void targetSelected(const QModelIndex &index);
59  void targetTypeChanged(const QString &newValue);
60  void updateRTValues();
61 
62 protected:
64  virtual void createDialogContent();
65  QSqlRecord currentRecord();
66  void populateFormWithIndex(const QModelIndex &index);
67  void setupConnections();
68  void teardownConnections();
69 
70 private:
71  int lastRowNumberSelected;
72  Ui_TargetsDialogForm* ui;
73  QSqlTableModel *tableModel;
74  QSqlTableModel *typeTableModel;
75 
76 };
77 
78 #endif // _TARGETSDIALOG_HPP_
virtual void createDialogContent()
Initialize the dialog widgets and connect the signals/slots.
void styleChanged()
Notify that the application style changed.
void languageChanged()
Retranslate the content of the dialog.