volcamwidgets  2019 march
volcamwidgets biblioteca
stationsmap.h
Ir a la documentación de este archivo.
1 
10 #ifndef STATIONSMAP_H
11 #define STATIONSMAP_H
12 
13 #include <QWidget>
14 #include <QtWidgets>
15 #include <QUrl>
16 #include <QtMath>
17 #include <QWebView>
18 #include "imagenes_wc.h"
19 
20 namespace Ui {
21 class stationsMap;
22 }
23 
24 class stationsMap : public QWidget
25 {
26  Q_OBJECT
27 
28 public:
29  explicit stationsMap(QWidget *parent = 0);
30  ~stationsMap();
31 
32  QWebView *webView_mapa;
33 
34  ImgsWC_params getImgwcp() const;
35  void setImgwcp(const ImgsWC_params &value);
36 
37  QList<int> getParamsRelated() const;
38  void setParamsRelated(const QList<int> &value);
39 
40  QStringList getImgwc_toshow() const;
41  void setImgwc_toshow(const QStringList &value);
42 
43 
44 private:
45  Ui::stationsMap *ui;
46 
47  QList <int> paramsRelated;
48  ImgsWC_params imgwcp;
49 
50 public slots:
51  void refreshmap();
52 };
53 
54 #endif // STATIONSMAP_H
QWebView * webView_mapa
Definition: stationsmap.h:32
Definition: measuresmap.h:20
stationsMap(QWidget *parent=0)
Definition: stationsmap.cpp:4
void setParamsRelated(const QList< int > &value)
Definition: stationsmap.cpp:30
QList< int > getParamsRelated() const
Definition: stationsmap.cpp:25
void setImgwc_toshow(const QStringList &value)
ImgsWC_params getImgwcp() const
Definition: stationsmap.cpp:35
Definition: stationsmap.h:24
void refreshmap()
Definition: stationsmap.cpp:46
void setImgwcp(const ImgsWC_params &value)
Definition: stationsmap.cpp:39
~stationsMap()
Definition: stationsmap.cpp:20
QStringList getImgwc_toshow() const