Changeset 5482 in ntrip


Ignore:
Timestamp:
Sep 18, 2013, 2:14:51 PM (11 years ago)
Author:
mervart
Message:
 
Location:
trunk/GnssCenter/monitor
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/GnssCenter/monitor/monitor.cpp

    r5481 r5482  
    4747  setCentralWidget(_tabWidget);
    4848
    49   // World Plot
    50   // ----------
    51   _plot = new t_worldPlot();
    52   _tabWidget->addTab(_plot, "Stations");
     49  // World Plots
     50  // -----------
     51  _plotStations = new t_worldPlot();
     52  _tabWidget->addTab(_plotStations, "Stations");
     53
     54  _plotSatellites = new t_worldPlot();
     55  _tabWidget->addTab(_plotSatellites, "Satellites");
    5356
    5457  // Tool Bar
     
    222225      }
    223226    }
    224     _plot->slotNewPoints(points);
     227    _plotStations->slotNewPoints(points);
    225228
    226229    QListIterator<t_worldPlot::t_point*> it(points);
  • trunk/GnssCenter/monitor/monitor.h

    r5480 r5482  
    4040  QAction*                      _actStartThrift;
    4141  QAction*                      _actStopThrift;
    42   t_worldPlot*                  _plot;
    4342  QString                       _host;
    4443  QString                       _port;
    4544  t_thriftClient*               _thriftClient;
     45  t_worldPlot*                  _plotStations;
     46  t_worldPlot*                  _plotSatellites;
    4647  std::vector<t_thriftResult*>* _results;
    4748};
Note: See TracChangeset for help on using the changeset viewer.