Search found 10 matches

by alopes
Thu Jul 23, 2020 4:30 pm
Forum: C++ Development
Topic: Pointer Events WxWidgets WebView
Replies: 7
Views: 846

Re: Pointer Events WxWidgets WebView

The issue was solved using the wxVebView with Edge chromium backend available in the wxWidgets 3.1.4
by alopes
Thu Jul 23, 2020 4:28 pm
Forum: Compiler / Linking / IDE Related
Topic: wxWidgets 3.1.4 Edge Chromium backend
Replies: 1
Views: 785

wxWidgets 3.1.4 Edge Chromium backend

I have a question regarding development of applications with the new wxWidgets wxWebView. The Visual Studio 2015, or newer, dependency on the wxWebView with Edge Chromium backend It is only when building the library or It's also required to use Visual Studio toolchain & ide when developing the a...
by alopes
Thu Jul 23, 2020 4:20 pm
Forum: Compiler / Linking / IDE Related
Topic: Edge (Chromium) backend build errror (3.1.4)
Replies: 6
Views: 1798

Re: Edge (Chromium) backend build errror (3.1.4)

Solved it by switching to visual studio.
Thanks for the support.
by alopes
Thu Jul 23, 2020 12:37 pm
Forum: Compiler / Linking / IDE Related
Topic: Edge (Chromium) backend build errror (3.1.4)
Replies: 6
Views: 1798

Re: Edge (Chromium) backend build errror (3.1.4)

Btw can you share the cmake build steps as I'm not experienced with it.
Thanks
by alopes
Thu Jul 23, 2020 12:32 pm
Forum: Compiler / Linking / IDE Related
Topic: Edge (Chromium) backend build errror (3.1.4)
Replies: 6
Views: 1798

Re: Edge (Chromium) backend build errror (3.1.4)

I followed the steps on the build, download the SDK, copy it to 3rdparty, enable it in setup.h and the only thing that it may be different from you is that I build the library with the following command C:\library\wxWidgets-3.1.4\build\msw>mingw32-make -f makefile.gcc BUILD=release SHARED=0 MONOLITH...
by alopes
Thu Jul 23, 2020 12:02 pm
Forum: Compiler / Linking / IDE Related
Topic: Edge (Chromium) backend build errror (3.1.4)
Replies: 6
Views: 1798

Edge (Chromium) backend build errror (3.1.4)

Hi, I'm trying to build the new 3.1.4 version of the wxWidgets lib and following the build steps on https://docs.wxwidgets.org/trunk/classwx_web_view.html i go the build error. In file included from ../../src/msw/webview_edge.cpp:30:0: ..\..\include/wx/msw/private/webview_edge.h:16:10: fa tal error:...
by alopes
Thu Jul 23, 2020 9:01 am
Forum: C++ Development
Topic: Pointer Events WxWidgets WebView
Replies: 7
Views: 846

Re: Pointer Events WxWidgets WebView

About the ChromiumEdge backend I wanted to use that before but was not successful. Does the solution you propose is by using the wxWebViewChromium (https://github.com/sjlamerton/wxWebViewChromium) ? Because that was the one i tried with the latest wxWidgets library and it didn't work. Btw thanks a l...
by alopes
Thu Jul 23, 2020 8:48 am
Forum: C++ Development
Topic: Pointer Events WxWidgets WebView
Replies: 7
Views: 846

Re: Pointer Events WxWidgets WebView

I'm using Windows 10 with the wxwidgets_3.
by alopes
Thu Jul 23, 2020 8:45 am
Forum: C++ Development
Topic: Pointer Events WxWidgets WebView
Replies: 7
Views: 846

Re: Pointer Events WxWidgets WebView

Oh sorry for not elaborating there, so basically in the webView when I for example move the mouse its triggered mousemove events that can be handled by the javascript program. Modern browsers triggers both mouse events and pointer events. The map I'm using uses pointer events for things like click t...
by alopes
Thu Jul 23, 2020 8:35 am
Forum: C++ Development
Topic: Pointer Events WxWidgets WebView
Replies: 7
Views: 846

Pointer Events WxWidgets WebView

I'm currently integrating a web based map engine (OpenLayers) with wxWidgets webView, the map currently expects pointer events but the the webView only triggers mouse events, I wanted to ask if the wxWebView supports pointer events and if yes how to enable them. I also tried using Pointer Events Pol...