Rollback HTML render, C ++ code

I want to remove the HTML rendering, which will be used mainly for rendering operations.

If I can display HTML in HDC, that would be ideal.

I found HTMLayout , which is not bad. But it is not open source. But I wonder if there is a way to somehow access IE or the Mozilla / Gecko code, how realistic / difficult it will be, and maybe some pointers to how to do this.

This will be a regular direct C ++ directx application

Edit

Wow! Mozilla has an embed kit!

+4
source share
2 answers

Take a look at WebKit.

+1
source

Qt can do this, make QPainter. See for example http://doc.trolltech.com/4.6/qwebpage.html but not sure if it will be easy to use if you are not already using Qt.

0
source

Source: https://habr.com/ru/post/1301925/


All Articles