How to embed a web browser control in a cross-platform application?

browser, cross-platform, embed, macos, webbrowser-control

Solution

Why not to use embedded Webkit?

Problem

I need to write quickly this application: a simple window that wraps a web browser control, that runs html pages. The Browser UI (e.g. Navigation buttons) should be suppressed. As a .net developer, I would embed the WebBrowser OCX in a Windows Form. But this has to run on Mac as well! I found the following cross-platform candidates. Which one would you choose (in terms of simplicity, stableness, community support, etc.): wxWidgets: http://www.kirix.com/labs/wxwebconnect.html QT: http://www.youtube.com/watch?v=Ee8eRwjbcFk&feature=related MONO: http://www.mono-project.com/WebBrowser

Original source