Webview with GTK

Asked

Viewed 95 times

1

In Swift I have a webview which is basically a safari window, in C#. NET I have a webview which is practically a IE window. But in other cross-platform languages that use for example GTK for window generation, how do I create a webview? has how to use some plugin for this webview to be from Firefox just like C#. NET uses IE? Thanks from now.

  • In gtk you can use webkitgtk, I have no way to post an answer now, but if no one reply by tomorrow I post an example

1 answer

1


Yes! Just use the Firefox web engine. You need to understand that the web engine would be like an interpreter. When we enter an address in a given browser, it first converts the DNS (page domain) to the site IP (its original "address" on the network) and from what it discovered, it makes a connection to the server and the server returns to us (the client) codes. And the task of the engine is to interpret these codes.

I’ve never used the Firefox web engine, but I’ve heard of Webkit, which by the way is already well documented and works well with GTK+.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.