How to embed WebKit into my C/C++/Win32 application?(如何将 WebKit 嵌入到我的 C/C++/Win32 应用程序中?)
问题描述
我发现的解决方案无关紧要:
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 博客的一些有趣进展
这篇关于如何将 WebKit 嵌入到我的 C/C++/Win32 应用程序中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将 WebKit 嵌入到我的 C/C++/Win32 应用程序中?
基础教程推荐
- 如何更改 SysDateTimePick32 或 CDateTimeCtrl 的背景颜色? 2022-01-01
- c++ STL设置差异 2022-01-01
- C++:获取传递给函数的多维数组的行大小 2021-01-01
- 如何在 C++ 中正确使用命名空间? 2022-01-01
- 如何部分禁用 cmake C/C++ 自定义编译器检查 2021-01-01
- 将不可复制的闭包对象传递给 std::function 参数 2021-01-01
- 随机插入/删除的综合向量与链表基准 2022-01-01
- 为什么我们不能使用“虚拟继承"?在 COM 中? 2022-01-01
- 提升 ASIO 流缓冲 2021-01-01
- 与 CAS 的原子交换(使用 gcc 同步内置函数) 2022-01-01
