Changeset 7963 in ntrip for trunk/BNC/src
- Timestamp:
- Jun 21, 2016, 9:32:45 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncwindow.cpp
r7961 r7963 885 885 // PPP 886 886 // --- 887 _pppWidgets._dataSource->setMaximumWidth(20*ww); 888 _pppWidgets._corrMount->setMaximumWidth(20*ww); 889 890 _pppWidgets._corrFile->setMaximumWidth(35*ww); 891 _pppWidgets._crdFile->setMaximumWidth(35*ww); 887 _pppWidgets._dataSource->setMaximumWidth(15*ww); 888 _pppWidgets._corrMount->setMaximumWidth(15*ww); 889 _pppWidgets._nmeaPath->setMaximumWidth(35*ww); 892 890 _pppWidgets._logPath->setMaximumWidth(35*ww); 893 891 _pppWidgets._snxtroPath->setMaximumWidth(35*ww); … … 898 896 QGridLayout* pppLayout1 = new QGridLayout(); 899 897 int ir = 0; 900 pppLayout1->addWidget(new QLabel("Precise Point Positioning - Input and Output. "), ir, 0, 1, 7, Qt::AlignLeft);898 pppLayout1->addWidget(new QLabel("Precise Point Positioning - Input and Output.<br>"), ir, 0, 1, 7, Qt::AlignLeft); 901 899 ++ir; 902 900 pppLayout1->addWidget(new QLabel("Data source"), ir, 0); 903 901 pppLayout1->addWidget(_pppWidgets._dataSource, ir, 1); 904 pppLayout1->addWidget(new QLabel(" RINEX Obs file"), ir, 3);905 pppLayout1->addWidget(_pppWidgets._ rinexObs, ir, 4, 1, 3);902 pppLayout1->addWidget(new QLabel(" Version 3 filenames"),ir, 4); 903 pppLayout1->addWidget(_pppWidgets._v3filenames, ir, 5, 1, 3); 906 904 ++ir; 907 905 pppLayout1->addWidget(new QLabel("Corrections stream"), ir, 0); 908 906 pppLayout1->addWidget(_pppWidgets._corrMount, ir, 1); 909 pppLayout1->addWidget(new QLabel(" RINEX Nav file"), ir, 3); 910 pppLayout1->addWidget(_pppWidgets._rinexNav, ir, 4, 1, 3); 907 pppLayout1->addWidget(new QLabel("Corrections file"), ir, 2); 908 pppLayout1->addWidget(_pppWidgets._corrFile, ir, 3); 909 pppLayout1->addWidget(new QLabel(" Logfile directory"), ir, 4); 910 pppLayout1->addWidget(_pppWidgets._logPath, ir, 5, 1, 3); 911 911 ++ir; 912 pppLayout1->addWidget(new QLabel("Corrections file"), ir, 0); 913 pppLayout1->addWidget(_pppWidgets._corrFile, ir, 1); 914 pppLayout1->addWidget(new QLabel(" ANTEX file"), ir, 3); 915 pppLayout1->addWidget(_pppWidgets._antexFile, ir, 4, 1, 3); 912 pppLayout1->addWidget(new QLabel("RINEX Obs file"), ir, 0); 913 pppLayout1->addWidget(_pppWidgets._rinexObs, ir, 1); 914 pppLayout1->addWidget(new QLabel("RINEX Nav file"), ir, 2); 915 pppLayout1->addWidget(_pppWidgets._rinexNav, ir, 3); 916 pppLayout1->addWidget(new QLabel(" NMEA directory"), ir, 4); 917 pppLayout1->addWidget(_pppWidgets._nmeaPath, ir, 5, 1, 3); 916 918 ++ir; 917 919 pppLayout1->addWidget(new QLabel("Coordinates file"), ir, 0); 918 920 pppLayout1->addWidget(_pppWidgets._crdFile, ir, 1); 921 pppLayout1->addWidget(new QLabel("ANTEX file"), ir, 2); 922 pppLayout1->addWidget(_pppWidgets._antexFile, ir, 3); 923 pppLayout1->addWidget(new QLabel(" SNX TRO directory"), ir, 4); 924 pppLayout1->addWidget(_pppWidgets._snxtroPath, ir, 5, 1, 3); 925 ++ir; 919 926 #ifdef USE_PPP 920 pppLayout1->addWidget(new QLabel(" BLQ file"), ir, 3);921 pppLayout1->addWidget(_pppWidgets._blqFile, ir, 4, 1, 3);927 pppLayout1->addWidget(new QLabel("BLQ file"), ir, 0); 928 pppLayout1->addWidget(_pppWidgets._blqFile, ir, 1); 922 929 #endif 930 pppLayout1->addWidget(new QLabel(" SNX TRO interval"), ir, 4); 931 pppLayout1->addWidget(_pppWidgets._snxtroIntr, ir, 5); 932 pppLayout1->addWidget(new QLabel(" SNX TRO sampling"), ir, 6); 933 pppLayout1->addWidget(_pppWidgets._snxtroSampl, ir, 7, Qt::AlignRight); 923 934 ++ir; 924 pppLayout1->addWidget(new QLabel("Logfile directory"), ir, 0); 925 pppLayout1->addWidget(_pppWidgets._logPath, ir, 1); 926 pppLayout1->addWidget(new QLabel(" NMEA directory"), ir, 3); 927 pppLayout1->addWidget(_pppWidgets._nmeaPath, ir, 4, 1, 3); 928 ++ir; 929 pppLayout1->addWidget(new QLabel("SNX TRO directory"), ir, 0); 930 pppLayout1->addWidget(_pppWidgets._snxtroPath, ir, 1); 931 pppLayout1->addWidget(new QLabel(" SNX TRO interval"), ir, 3); 932 pppLayout1->addWidget(_pppWidgets._snxtroIntr, ir, 4); 933 pppLayout1->addWidget(new QLabel(" SNX TRO sampling"), ir, 5); 934 pppLayout1->addWidget(_pppWidgets._snxtroSampl, ir, 6, Qt::AlignRight); 935 ++ir; 936 pppLayout1->addWidget(new QLabel("Version 3 filenames"), ir, 0); 937 pppLayout1->addWidget(_pppWidgets._v3filenames, ir, 1, 1, 3); 938 pppLayout1->addWidget(new QLabel(" SNX TRO AC"), ir, 3); 939 pppLayout1->addWidget(_pppWidgets._snxtroAc, ir, 4); 940 pppLayout1->addWidget(new QLabel(" SNX TRO solution"), ir, 5); 941 pppLayout1->addWidget(_pppWidgets._snxtroSol, ir, 6, Qt::AlignRight); 942 pppLayout1->setRowStretch(ir, 999); 943 935 pppLayout1->addWidget(new QLabel(" SNX TRO AC"), ir, 4); 936 pppLayout1->addWidget(_pppWidgets._snxtroAc, ir, 5); 937 pppLayout1->addWidget(new QLabel(" SNX TRO solution"), ir, 6); 938 pppLayout1->addWidget(_pppWidgets._snxtroSol, ir, 7, Qt::AlignRight); 939 pppLayout1->setRowStretch(ir+1, 999); 944 940 pppGroup1->setLayout(pppLayout1); 945 941
Note:
See TracChangeset
for help on using the changeset viewer.