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 应用程序中?
基础教程推荐
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- CString 到 char* 2021-01-01
