1 | // Part of BNC, a utility for retrieving decoding and |
---|
2 | // converting GNSS data streams from NTRIP broadcasters. |
---|
3 | // |
---|
4 | // Copyright (C) 2007 |
---|
5 | // German Federal Agency for Cartography and Geodesy (BKG) |
---|
6 | // http://www.bkg.bund.de |
---|
7 | // Czech Technical University Prague, Department of Geodesy |
---|
8 | // http://www.fsv.cvut.cz |
---|
9 | // |
---|
10 | // Email: euref-ip@bkg.bund.de |
---|
11 | // |
---|
12 | // This program is free software; you can redistribute it and/or |
---|
13 | // modify it under the terms of the GNU General Public License |
---|
14 | // as published by the Free Software Foundation, version 2. |
---|
15 | // |
---|
16 | // This program is distributed in the hope that it will be useful, |
---|
17 | // but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
18 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
19 | // GNU General Public License for more details. |
---|
20 | // |
---|
21 | // You should have received a copy of the GNU General Public License |
---|
22 | // along with this program; if not, write to the Free Software |
---|
23 | // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
---|
24 | |
---|
25 | #ifndef REQCDLG_H |
---|
26 | #define REQCDLG_H |
---|
27 | |
---|
28 | #include <QComboBox> |
---|
29 | #include <QDateTimeEdit> |
---|
30 | #include <QDialog> |
---|
31 | #include <QLineEdit> |
---|
32 | #include <QSpinBox> |
---|
33 | |
---|
34 | #include "bncconst.h" |
---|
35 | |
---|
36 | class reqcDlg : public QDialog { |
---|
37 | |
---|
38 | Q_OBJECT |
---|
39 | |
---|
40 | public: |
---|
41 | reqcDlg(QWidget* parent); |
---|
42 | ~reqcDlg(); |
---|
43 | |
---|
44 | public slots: |
---|
45 | void slotReqcTextChanged(); |
---|
46 | |
---|
47 | signals: |
---|
48 | |
---|
49 | private slots: |
---|
50 | void slotOK(); |
---|
51 | void slotWhatsThis(); |
---|
52 | |
---|
53 | protected: |
---|
54 | virtual void closeEvent(QCloseEvent *); |
---|
55 | |
---|
56 | private: |
---|
57 | void saveOptions(); |
---|
58 | |
---|
59 | QComboBox* _reqcRnxVersion; |
---|
60 | QSpinBox* _reqcSampling; |
---|
61 | QDateTimeEdit* _reqcStartDateTime; |
---|
62 | QDateTimeEdit* _reqcEndDateTime; |
---|
63 | QLineEdit* _reqcRunBy; |
---|
64 | QLineEdit* _reqcV2Priority; |
---|
65 | QLineEdit* _reqcUseObsTypes; |
---|
66 | QLineEdit* _reqcComment; |
---|
67 | QLineEdit* _reqcOldMarkerName; |
---|
68 | QLineEdit* _reqcNewMarkerName; |
---|
69 | QLineEdit* _reqcOldAntennaName; |
---|
70 | QLineEdit* _reqcNewAntennaName; |
---|
71 | QLineEdit* _reqcOldAntennaNumber; |
---|
72 | QLineEdit* _reqcNewAntennaNumber; |
---|
73 | QLineEdit* _reqcOldAntennadN; |
---|
74 | QLineEdit* _reqcNewAntennadN; |
---|
75 | QLineEdit* _reqcOldAntennadE; |
---|
76 | QLineEdit* _reqcNewAntennadE; |
---|
77 | QLineEdit* _reqcOldAntennadU; |
---|
78 | QLineEdit* _reqcNewAntennadU; |
---|
79 | QLineEdit* _reqcOldReceiverName; |
---|
80 | QLineEdit* _reqcNewReceiverName; |
---|
81 | QLineEdit* _reqcOldReceiverNumber; |
---|
82 | QLineEdit* _reqcNewReceiverNumber; |
---|
83 | QPushButton* _buttonOK; |
---|
84 | QPushButton* _buttonCancel; |
---|
85 | QPushButton* _buttonWhatsThis; |
---|
86 | }; |
---|
87 | |
---|
88 | #endif |
---|