本教程基于cef1
至于cef1与cef3的区别请参考
基于.net开发chrome核心浏览器【二】中的关于cef的介绍
http://blog.csdn.NET/tts2game/article/details/17260865
总结之前先将我的参考资料整理如下
1:嵌入Chrome cef到MFC CView http://blog.csdn.net/yhangleo/article/details/8482603
2:CEF嵌入到单文档mfc http://blog.csdn.net/xuezhe521/article/details/9067035
并将我在学习过程中搜索到的一些相关文章整理如下
CEF C++环境搭建 http://www.cnblogs.com/liulun/p/3681241.html
cef3资源下载网站 http://cefbuilds.com/
第一步:创建MFC单文档程序
第二步:编译cef库
如果这步您都想省略可直接到我的资源中下载调用即可
http://download.csdn.net/detail/farcall/7601487
如果在网络上搜索如何编译cef库会找到很多教程,大部分都是通过手动编译的方法,而对于我这样喜欢偷懒的人来说实在是不愿意那样搞,幸好我遇到了它...
到http://www.magpcss.net/cef_downloads/中找
http://www.magpcss.net/cef_downloads/index.php?query=label%3A~Deprecated+label%3ACEF1+label%3Abinary#list
中找到
下载之后用vs2010打开
会看到两个工程 其中上面的cefclient就是一个demo ,功能展示的很详细,暂且不表
我们编译libcef_dll_wrapper 然后会得到两个lib 既libcef.lib和libcef_dll_wrapper.lib
需要注意的是默认的配置下libcef_dll_wrapper.lib并不在cef_binary_1.1364.1123_window文件夹内
而是要在cef_binary_1.1364.1123_window上翻两个文件夹下的build中
这样我们需要准备的"原材料"就好了.
第三步:
1:将资源CEF中的lib.zip中的两个库放到你的工程下面,并添加引用(方法:右键你的工程-》属性-》连接-》输入-》附加依赖项,点击编辑,将这两个lib的名字(包括扩展名)复制到里面,用空行分割两个库的名称)。如果我们当前的工程是debug版本则libcef.lib和libcef_dll_wrapper.lib也要使用debug版本,如果是release版则也要使用release版对应
如果不是对应的版本则会出现这样的错误
2:将include.zip中的文件包括文件夹拷到你的工程下面,并添加应用(方法:右键你的工程-》添加-》存在的Item-》选中你复制进去的所有东西添加)
3:将add.zip中的文件包括local文件夹拷贝到你编译好的Debug目录下,没这些东西运行不起来。
3:将add.zip中的文件包括local文件夹拷贝到你编译好的Debug目录下,没这些东西运行不起来。
第四步:
在我们的工程中创建一个 cefclient的子类
- #pragma once
- #include <cef_client.h>
- class CWebClient
- : public CefClient
- , public CefLifeSpanHandler
- {
- protected:
- CefRefPtr<CefBrowser> m_Browser;
- public:
- CWebClient(void){};
- virtual ~CWebClient(void){};
- CefRefPtr<CefBrowser> GetBrowser() { return m_Browser; }
- virtual CefRefPtr<CefLifeSpanHandler> GetLifeSpanHandler() OVERRIDE
- { return this; }
- virtual void OnAfterCreated(CefRefPtr<CefBrowser> browser) OVERRIDE;
- // 添加CEF的SP虚函数
- IMPLEMENT_REFCOUNTING(CWebClient);
- IMPLEMENT_LOCKING(CWebClient);
- };
号外: 如果编译时遇到关于OnAfterCreated的什么错误(具体忘了),那么将
virtual void OnAfterCreated(CefRefPtr<CefBrowser> browser)OVERRIDE;
改为:
virtual void OnAfterCreated(CefRefPtr<CefBrowser> browser) {};
第五步:
在xxxView.h类中中定义
CefRefPtr<CWebClient>
m_cWebClient;
不要忘记包含头文件
#include "include/cef_app.h"
#include "WebClient.h"
并在WM_CREATE和WM_SIZE两个消息中分别做如下消息处理
#include "WebClient.h"
- <pre name="code" class="cpp">// CWebView message handlers
- int CWebView::OnCreate( LPCREATESTRUCT lpCreateStruct )
- {
- if ( CView::OnCreate(lpCreateStruct) == -1)
- return -1;
- CefRefPtr<CWebClient> client(new CWebClient());
- m_cWebClient = client;
- CefSettings cSettings;
- CefSettingsTraits::init( &cSettings);
- cSettings.multi_threaded_message_loop = true;
- CefRefPtr<CefApp> spApp;
- CefInitialize( cSettings, spApp);
- CefWindowInfo info;
- info.SetAsChild( m_hWnd, CRect(0, 0, 800, 600));
- CefBrowserSettings browserSettings;
- CefBrowser::CreateBrowser( info, static_cast<CefRefPtr<CefClient> >(client),
- "http://www.linyizxw.com", browserSettings);
- return 0;
- }
调整大小:
- void CWebView::OnSize( UINT nType, int cx, int cy )
- {
- CView::OnSize(nType, cx, cy);
- if(m_cWebClient.get())
- {
- CefRefPtr<CefBrowser> browser = m_cWebClient->GetBrowser();
- if(browser)
- {
- CefWindowHandle hwnd = browser->GetWindowHandle();
- RECT rect;
- this->GetClientRect(&rect);
- // ::SetWindowPos(hwnd, HWND_TOP, 0, 0, cx, cy, SWP_NOZORDER);
- ::MoveWindow( hwnd, 0, 0, cx, cy, true);
- }
- }
- }
第六步
编译成功后 将cef_binary_1.1364.1123_windows\cef_binary_1.1364.1123_windows下debug中的所有dll放到本项目的debug文件中,release程序对应使用release文件夹下的dll
总结:
环境
1:使用unicode字符集
2:在静态库中使用MFC
3:导入对应版本的libcef.lib和libcef_dll_wrapper.lib
4:多线程调试(/MTd)
其他参考资料
http://www.cnblogs.com/qinfengxiaoyue/archive/2013/02/01/2889668.html