Changeset 8909 in ntrip
- Timestamp:
- Mar 22, 2020, 1:28:42 PM (5 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/bncmain.cpp
r8900 r8909 44 44 #include <QFile> 45 45 #include <iostream> 46 #include <QNetworkProxy> 46 47 47 48 #include "app.h" … … 376 377 } 377 378 else { // start non-gui Version 378 379 // 379 380 } 380 381 … … 382 383 383 384 bncSettings settings; 385 386 // Proxy Settings 387 // -------------- 388 QString proxyHost = settings.value("proxyHost").toString(); 389 int proxyPort = settings.value("proxyPort").toInt(); 390 if (!proxyHost.isEmpty()) { 391 QNetworkProxy proxy; 392 proxy.setType(QNetworkProxy::HttpProxy); 393 proxy.setHostName(proxyHost); 394 proxy.setPort(proxyPort); 395 QNetworkProxy::setApplicationProxy(proxy); 396 } 384 397 385 398 for (int ii = 1; ii < argc - 2; ii++) { … … 410 423 411 424 // Interactive Mode - open the main window 412 // --------------------------------------- 425 // ----------------------------------------- 413 426 if (interactive) { 414 427 -
trunk/BNC/src/map/bncmapwin.cpp
r8260 r8909 35 35 * Created: 08-Jun-2013 36 36 * 37 * Changes: 37 * Changes: A. Stuerze 38 38 * 39 39 * -----------------------------------------------------------------------*/ … … 56 56 _currLon = 8.66496871; // BKG longitude 57 57 58 #ifdef QT_WEBENGINE59 58 _webView = new QWebEngineView(this); 60 #else61 _webView = new QWebView(this);62 #endif63 59 64 60 connect(_webView, SIGNAL(loadFinished(bool)), this, SLOT(slotInitMap(bool))); … … 68 64 bncSettings settings; 69 65 _staID = settings.value("PPP/plotCoordinates").toByteArray(); 70 71 // Proxy Settings72 // --------------73 QString proxyHost = settings.value("proxyHost").toString();74 int proxyPort = settings.value("proxyPort").toInt();75 if (!proxyHost.isEmpty()) {76 QNetworkProxy proxy(QNetworkProxy::HttpProxy, proxyHost, proxyPort);77 _webView->page()->networkAccessManager()->setProxy(proxy);78 }79 66 80 67 loadHtmlPage(); … … 141 128 } 142 129 QString location = QString("%1, %2, %3, %4").arg(_currLat,0,'f',8).arg(_currLon,0,'f',8).arg(mapWinDotSize).arg(mapWinDotColor); 143 _webView->page()-> mainFrame()->evaluateJavaScript(QString("initialize( %1 )").arg(location));130 _webView->page()->runJavaScript(QString("gotoLocation( %1 )").arg(location)); 144 131 } 145 132 … … 168 155 169 156 QString location = QString("%1, %2").arg(_currLat,0,'f',8).arg(_currLon,0,'f',8); 170 _webView->page()-> mainFrame()->evaluateJavaScript(QString("gotoLocation( %1 )").arg(location));157 _webView->page()->runJavaScript(QString("gotoLocation( %1 )").arg(location)); 171 158 } 172 159 -
trunk/BNC/src/map/bncmapwin.h
r8264 r8909 25 25 #ifndef BNCMAPWIN_H 26 26 #define BNCMAPWIN_H 27 28 #ifdef QT_WEBENGINE 29 #include <QWebEngineView> 30 #include <QWebEnginePage> 31 #else 32 #include <QWebView> 33 #include <QWebFrame> 34 #endif 27 #include <QWebEngineView> 28 #include <QWebEnginePage> 35 29 #include <QLabel> 36 30 #include <QHBoxLayout> 37 31 #include <QByteArray> 38 32 #include <QDialog> 39 #include <QNetworkProxy>40 33 #include <QVector> 41 34 #include "bnctime.h" … … 63 56 void loadHtmlPage(); 64 57 void gotoLocation(double lat, double lon); 65 #ifdef QT_WEBENGINE66 58 QWebEngineView* _webView; 67 #else 68 QWebView* _webView; 69 #endif 70 QLabel* _statusLabel; 71 double _currLat; 72 double _currLon; 73 QByteArray _staID; 59 QWebEnginePage* _webPage; 60 QLabel* _statusLabel; 61 double _currLat; 62 double _currLon; 63 QByteArray _staID; 74 64 }; 75 65 -
trunk/BNC/src/src.pri
r8905 r8909 134 134 } 135 135 136 # Check QtWebKit Library Existence 137 # -------------------------------- 138 exists("$$[QT_INSTALL_LIBS]/*WebKit*") { 139 DEFINES += QT_WEBKIT 140 QT += webkit webkitwidgets 141 message("Configured with QtWebKit") 142 } 143 136 # Check QtWebEngineWidges Library Existence 137 # ----------------------------------------- 144 138 exists("$$[QT_INSTALL_LIBS]/*WebEngineWidgets*") { 145 139 DEFINES += QT_WEBENGINE … … 148 142 } 149 143 150 contains(DEFINES, QT_WEBENGINE) | contains(DEFINES, QT_WEBKIT){144 contains(DEFINES, QT_WEBENGINE) { 151 145 HEADERS += map/bncmapwin.h 152 146 SOURCES += map/bncmapwin.cpp … … 154 148 } 155 149 else { 156 message(" Neither QtWebEngine nor QtWebKit isavailable")150 message("QtWebEngineWidges Library is not available") 157 151 }
Note:
See TracChangeset
for help on using the changeset viewer.