I have a library for Haskell that can accept a regular web application, run it on a local server and open a window displaying this application using QtWebkit. The code for the Qt interface is very short. However, I would like to avoid Qt overhead for Windows users.
It seems that the best option would be to have an alternative to this QtWebkit-based C ++ file, which instead uses the MSHTML library on Windows. Unfortunately, I have almost no experience with specific Windows libraries. It seems like I need to use the IWebBrowser2 interface , but this seems mostly speculative.
If someone can point me in the right direction, I would be very obliged. The final trick here is that it must compile with MinGW. Not sure how many complications in this case.
thank
source
share