Ignore:
Timestamp:
Sep 12, 2013, 4:05:11 PM (11 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GnssCenter/map_stations/map_stations.h

    r5416 r5420  
    66#include "plugininterface.h"
    77
    8 class QwtPlot;
    9 class QwtPlotZoomer;
     8namespace GnssCenter {
     9class t_worldPlot;
     10}
     11
    1012class t_thriftClient;
    1113class t_thriftResult;
     
    1315namespace GnssCenter {
    1416
    15 class t_map_stations : public QDialog {
     17class t_map_stations : public QMainWindow {
    1618 Q_OBJECT
    1719 public:
     
    2022
    2123 public slots:
    22   void slotNewPoint(const QString& name, double latDeg, double lonDeg);
    2324  void slotNewThriftResult(t_thriftResult*);
    2425
    25  private slots:
    26   void slotClose();
    27   void slotPrint();
    28   void slotWhatsThis();
    29 
    30  protected:
    31   virtual void closeEvent(QCloseEvent *);
    32   virtual void showEvent(QShowEvent *);
    33 
    3426 private:
    35   QwtPlot*        _mapPlot;
    36   QwtPlotZoomer*  _mapPlotZoomer;
    37   QPushButton*    _buttonClose;
    38   QPushButton*    _buttonPrint;
    39   QPushButton*    _buttonWhatsThis;
    40   double          _minPointLat;
    41   double          _maxPointLat;
    42   double          _minPointLon;
    43   double          _maxPointLon;
    44 
     27  t_worldPlot*    _plot;
    4528  t_thriftClient* _thriftClient;
    4629};
Note: See TracChangeset for help on using the changeset viewer.