Changeset 4671 in ntrip
- Timestamp:
- Sep 9, 2012, 9:57:07 AM (12 years ago)
- Location:
- trunk/BNC/src/rinex
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/graphwin.cpp
r4583 r4671 102 102 // ------ 103 103 _canvas = new QWidget(this); 104 QHBoxLayout* plotLayout = new QHBoxLayout(_canvas); 105 for (int ip = 0; ip < plots.size(); ip++) { 106 plotLayout->addWidget(plots[ip]); 104 if (plots.size() != 3) { 105 QHBoxLayout* plotLayout = new QHBoxLayout(_canvas); 106 for (int ip = 0; ip < plots.size(); ip++) { 107 plotLayout->addWidget(plots[ip]); 108 } 109 if (_colorScale) { 110 plotLayout->addWidget(_colorScale); 111 } 107 112 } 108 if (_colorScale) { 109 plotLayout->addWidget(_colorScale); 113 else { 114 QHBoxLayout* plotLayout = new QHBoxLayout(_canvas); 115 plotLayout->addWidget(plots[0]); 116 QVBoxLayout* hlpLayout = new QVBoxLayout; 117 hlpLayout->addWidget(plots[1]); 118 hlpLayout->addWidget(plots[2]); 119 plotLayout->addLayout(hlpLayout); 110 120 } 111 121 -
trunk/BNC/src/rinex/reqcanalyze.cpp
r4669 r4671 577 577 578 578 t_elePlot* plotZ = new t_elePlot(0, &_availDataMap); 579 plotZ->setTitle(title); 579 580 t_elePlot* plotD = new t_elePlot(0, &_availDataMap); 580 581 581 582 QVector<QWidget*> plots; 582 plots << plotA << plotZ ;583 plots << plotA << plotZ << plotD; 583 584 t_graphWin* graphWin = new t_graphWin(0, fileName, plots, 0, 0); 584 585
Note:
See TracChangeset
for help on using the changeset viewer.