source:
ntrip/trunk/GnssCenter/map_stations/map_stations.h@
5422
Last change on this file since 5422 was 5422, checked in by , 11 years ago | |
---|---|
File size: 853 bytes |
Rev | Line | |
---|---|---|
[5406] | 1 | #ifndef GnssCenter_MAP_STATIONS_H |
2 | #define GnssCenter_MAP_STATIONS_H | |
[4836] | 3 | |
4 | #include <QtGui> | |
5 | #include <QWhatsThis> | |
[5011] | 6 | #include "plugininterface.h" |
[4836] | 7 | |
[5420] | 8 | namespace GnssCenter { |
9 | class t_worldPlot; | |
10 | } | |
11 | ||
[5407] | 12 | class t_thriftClient; |
[5416] | 13 | class t_thriftResult; |
[4836] | 14 | |
[5001] | 15 | namespace GnssCenter { |
[4858] | 16 | |
[5420] | 17 | class t_map_stations : public QMainWindow { |
[4836] | 18 | Q_OBJECT |
19 | public: | |
[5406] | 20 | t_map_stations(); |
21 | ~t_map_stations(); | |
[5012] | 22 | |
[4836] | 23 | public slots: |
[5416] | 24 | void slotNewThriftResult(t_thriftResult*); |
[4836] | 25 | |
[5422] | 26 | private slots: |
27 | void slotStartThrift(); | |
28 | ||
[4836] | 29 | private: |
[5420] | 30 | t_worldPlot* _plot; |
[5410] | 31 | t_thriftClient* _thriftClient; |
[4836] | 32 | }; |
33 | ||
[5406] | 34 | class t_map_stationsFactory : public QObject, public t_pluginFactoryInterface { |
[5053] | 35 | Q_OBJECT |
36 | Q_INTERFACES(GnssCenter::t_pluginFactoryInterface) | |
37 | public: | |
[5406] | 38 | virtual QWidget* create() {return new t_map_stations();} |
[5407] | 39 | virtual QString getName() const {return QString("Map of Stations");} |
[5053] | 40 | }; |
41 | ||
[5001] | 42 | } // namespace GnssCenter |
[4858] | 43 | |
[4836] | 44 | #endif |
Note:
See TracBrowser
for help on using the repository browser.