WebView with GTK

1

In Swift I have a webview which is basically a Safari window, in C # .NET I have a webview which is practically an IE window. But in the other crossplataform languages that use eg GTK for generating windows like that I create a webview? how to use some plugin for this webview to be in Firefox just as C # .NET uses IE? Thank you in advance.

    
asked by anonymous 27.03.2015 / 03:25

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 particular browser, it first converts the DNS (page domain) to the IP of the site (its original "address" on the network) and from what has been discovered, it makes a connection to the server and server returns the nodes (the client) codes. And the engine's job is to interpret those 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 +.

    
28.12.2015 / 23:30