Changeset 5686 in ntrip
- Timestamp:
- Jul 29, 2014, 2:33:51 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncwindow.cpp
r5680 r5686 78 78 Q_EXPORT_PLUGIN2(gnsscenter_bnc, t_bncFactory) 79 79 #endif 80 81 // Constructor 82 //////////////////////////////////////////////////////////////////////////// 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 _sigmaC2 = new QLineEdit(); 100 _corrWaitTime = new QSpinBox(); 101 } 80 102 81 103 // Constructor … … 654 676 QWidget* ppp2group = new QWidget(); 655 677 QWidget* ppp3group = new QWidget(); 678 QWidget* pppGroup1 = new QWidget(); 679 QWidget* pppGroup2 = new QWidget(); 656 680 QWidget* reqcgroup = new QWidget(); 657 681 QWidget* cmbgroup = new QWidget(); … … 671 695 _aogroup->addTab(ppp2group,tr("PPP (2)")); 672 696 _aogroup->addTab(ppp3group,tr("PPP (3)")); 697 698 _aogroup->addTab(pppGroup1,tr("PPP NEW (1)")); 699 _aogroup->addTab(pppGroup2,tr("PPP NEW (2)")); 700 673 701 #ifdef USE_COMBINATION 674 702 _aogroup->addTab(cmbgroup,tr("Combine Corrections")); … … 1103 1131 ppp3Layout->addStretch(); 1104 1132 ppp3group->setLayout(ppp3Layout); 1133 1134 // PPP NEW 1135 // ------- 1136 QGridLayout* pppLayout1 = new QGridLayout(); 1137 ir = 0; 1138 pppLayout1->addWidget(new QLabel("<b>Precise Point Positioning</b>"), ir, 0, 1, 7, Qt::AlignLeft); 1139 1140 pppGroup1->setLayout(pppLayout1); 1141 1142 QGridLayout* pppLayout2 = new QGridLayout(); 1143 ir = 0; 1144 pppLayout2->addWidget(new QLabel("<b>Precise Point Positioning</b>"), ir, 0, 1, 7, Qt::AlignLeft); 1145 1146 pppGroup2->setLayout(pppLayout2); 1105 1147 1106 1148 // Reqc Processing -
trunk/BNC/src/bncwindow.h
r5680 r5686 55 55 class bncMapWin; 56 56 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* _sigmaC2; 77 QSpinBox* _corrWaitTime; 78 }; 57 79 58 80 class bncWindow : public QMainWindow { … … 273 295 QList<bncGetThread*> _threads; 274 296 297 t_pppWidgets _pppWidgets; 275 298 }; 276 299
Note:
See TracChangeset
for help on using the changeset viewer.