Re: Euphoria bindings for webview

new topic     » goto parent     » topic index » view thread      » older message » newer message
ghaberek said...

Here is a wrapper I made for the webview library, which is a tiny cross-platform library for C/C++/Golang to build modern cross-platform GUIs.

Back in March the developer zserge migrated the Windows implementation from the classic MSHTML (Internet Explorer) to the new Chromium-based WebView2 control in the new version of Microsoft Edge.

It will also try to fallback onto the original EdgeHTML control if that's available.

Get it here: https://github.com/ghaberek/webview-euphoria

Example

include webview.e 
 
atom w = webview_create() 
webview_set_title( w, "Webview Example" ) 
webview_set_size( w, 480, 320 ) 
webview_navigate( w, "https://en.m.wikipedia.org/wiki/Main_Page" ) 
webview_run( w ) 
webview_destroy( w ) 

Screenshots

Windows Linux
https://raw.githubusercontent.com/ghaberek/webview-euphoria/main/screenshots/windows.png https://raw.githubusercontent.com/ghaberek/webview-euphoria/main/screenshots/linux.png

-Greg

Looks pretty neat. Would it work under Firefox?

new topic     » goto parent     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu