Changeset 5692 in ntrip
- Timestamp:
- Jul 29, 2014, 3:23:00 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncwindow.cpp
r5691 r5692 78 78 Q_EXPORT_PLUGIN2(gnsscenter_bnc, t_bncFactory) 79 79 #endif 80 81 // Constructor82 ////////////////////////////////////////////////////////////////////////////83 t_pppWidgets::t_pppWidgets() {84 _dataSource = new QComboBox();85 _rinexObs = new qtFileChooser();86 _rinexNav = new qtFileChooser();87 _corrHostPort = new QLineEdit();88 _corrFile = new qtFileChooser();89 _crdFile = new qtFileChooser();90 _antexFile = new qtFileChooser();91 _logFile = new QLineEdit();92 _nmeaFile = new QLineEdit();93 _nmeaPort = new QLineEdit();94 _staTable = new QTableWidget();95 _lcGPS = new QComboBox();96 _lcGLONASS = new QComboBox();97 _lcGalileo = new QComboBox();98 _sigmaC1 = new QLineEdit();99 _sigmaL1 = new QLineEdit();100 _corrWaitTime = new QSpinBox();101 }102 80 103 81 // Constructor -
trunk/BNC/src/bncwindow.h
r5690 r5692 31 31 #include "bncgetthread.h" 32 32 #include "bnccaster.h" 33 #include "PPP/pppwidgets.h" 33 34 34 35 class bncAboutDlg : public QDialog { … … 55 56 class bncMapWin; 56 57 class t_postProcessing; 57 58 class t_pppWidgets {59 public:60 t_pppWidgets();61 QComboBox* _dataSource;62 qtFileChooser* _rinexObs;63 qtFileChooser* _rinexNav;64 QLineEdit* _corrHostPort;65 qtFileChooser* _corrFile;66 qtFileChooser* _crdFile;67 qtFileChooser* _antexFile;68 QLineEdit* _logFile;69 QLineEdit* _nmeaFile;70 QLineEdit* _nmeaPort;71 QTableWidget* _staTable;72 QComboBox* _lcGPS;73 QComboBox* _lcGLONASS;74 QComboBox* _lcGalileo;75 QLineEdit* _sigmaC1;76 QLineEdit* _sigmaL1;77 QSpinBox* _corrWaitTime;78 };79 58 80 59 class bncWindow : public QMainWindow { -
trunk/BNC/src/src.pri
r5679 r5692 58 58 RTCM3/clock_and_orbit/clock_orbit_rtcm.h \ 59 59 RTCM3/ephemeris.h RTCM3/timeutils.h \ 60 GPSS/gpssDecoder.h GPSS/hassDecoder.h 60 GPSS/gpssDecoder.h GPSS/hassDecoder.h \ 61 PPP/pppwidgets.h 61 62 62 63 HEADERS += serial/qextserialbase.h serial/qextserialport.h … … 86 87 RTCM3/clock_and_orbit/clock_orbit_rtcm.c \ 87 88 RTCM3/ephemeris.cpp RTCM3/timeutils.cpp \ 88 GPSS/gpssDecoder.cpp GPSS/hassDecoder.cpp 89 GPSS/gpssDecoder.cpp GPSS/hassDecoder.cpp \ 90 PPP/pppwidgets.cpp 89 91 90 92 SOURCES += serial/qextserialbase.cpp serial/qextserialport.cpp
Note:
See TracChangeset
for help on using the changeset viewer.