如何将 WebKit 嵌入到我的 C/C++/Win32 应用程序中?

2021-12-18 00:00:00 embedding c webkit winapi c++

我发现的解决方案无关紧要:

The solutions I have found are irrelevant:

  • 有人在 Delphi 项目中使用了 WebKit
  • 有人将它与 Java 一起使用
  • 有 QtWebKit(关于:空白演示应用程序需要 44 兆字节)
  • .net 端口
  • GTK+ 端口

我需要一个指南,如何在 Win32 下将 WebKit 实例嵌入到纯 C/C++ 应用程序中.

I need a guide how to embed WebKit instance into a pure C/C++ application under Win32.

推荐答案

Brent Fulgham 投入了大量工作来制作 WebKit 的 Windows Cairo 端口,它不依赖于 Apple 的专有后端内容(例如 CoreGraphics、CoreFoundation、CFNetwork).我相信这就是你所追求的.详细信息并没有完全整理在一个地方,但有 Trac wiki 中的一些信息 和Brent 的博客上还有其他一些内容.

Brent Fulgham has put lots of work into producing a Windows Cairo port of WebKit, which doesn't rely on Apple's proprietary backend stuff (e.g. CoreGraphics, CoreFoundation, CFNetwork). I believe that is what you are after. The details aren't entirely collated in one place, but there is some information in the Trac wiki and other bits are dotted around on Brent's blog.

编辑:链接到 Brent 在 sourceforge 上的项目

编辑 2:新闻Brent 博客的一些有趣进展

相关文章