470 lines
14 KiB
C++
470 lines
14 KiB
C++
// Copyright (c) 2008-2009 The Chromium Embedded Framework Authors.
|
|
// Portions copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "cef_context.h"
|
|
#include "browser_impl.h"
|
|
#include "printing/units.h"
|
|
|
|
#include "base/utf_string_conversions.h"
|
|
#include "base/win_util.h"
|
|
#include "skia/ext/vector_canvas.h"
|
|
#include "third_party/WebKit/WebKit/chromium/public/WebFrame.h"
|
|
#include "third_party/WebKit/WebKit/chromium/public/WebRect.h"
|
|
#include "third_party/WebKit/WebKit/chromium/public/WebSize.h"
|
|
#include "third_party/WebKit/WebKit/chromium/public/WebView.h"
|
|
|
|
#include <shellapi.h>
|
|
#include <shlwapi.h>
|
|
#include <wininet.h>
|
|
#include <winspool.h>
|
|
|
|
using WebKit::WebRect;
|
|
using WebKit::WebSize;
|
|
|
|
|
|
LPCTSTR CefBrowserImpl::GetWndClass()
|
|
{
|
|
return L"CefBrowserWindow";
|
|
}
|
|
|
|
LRESULT CALLBACK CefBrowserImpl::WndProc(HWND hwnd, UINT message,
|
|
WPARAM wParam, LPARAM lParam)
|
|
{
|
|
CefBrowserImpl* browser =
|
|
static_cast<CefBrowserImpl*>(win_util::GetWindowUserData(hwnd));
|
|
|
|
switch (message) {
|
|
case WM_COMMAND:
|
|
{
|
|
int wmId = LOWORD(wParam);
|
|
int wmEvent = HIWORD(wParam);
|
|
|
|
|
|
}
|
|
break;
|
|
|
|
case WM_DESTROY:
|
|
if (browser) {
|
|
// Clear the user data pointer.
|
|
win_util::SetWindowUserData(hwnd, NULL);
|
|
|
|
// Destroy the browser.
|
|
browser->UIT_DestroyBrowser();
|
|
}
|
|
return 0;
|
|
|
|
case WM_SIZE:
|
|
if (browser && browser->GetWebView()) {
|
|
// resize the web view window to the full size of the browser window
|
|
RECT rc;
|
|
GetClientRect(browser->GetMainWndHandle(), &rc);
|
|
MoveWindow(browser->GetWebViewWndHandle(), 0, 0, rc.right, rc.bottom,
|
|
TRUE);
|
|
}
|
|
return 0;
|
|
|
|
case WM_SETFOCUS:
|
|
if (browser && browser->GetWebView())
|
|
browser->GetWebView()->setFocus(true);
|
|
return 0;
|
|
|
|
case WM_KILLFOCUS:
|
|
if (browser && browser->GetWebView())
|
|
browser->GetWebView()->setFocus(false);
|
|
return 0;
|
|
|
|
case WM_ERASEBKGND:
|
|
return 0;
|
|
}
|
|
|
|
return DefWindowProc(hwnd, message, wParam, lParam);
|
|
}
|
|
|
|
CefWindowHandle CefBrowserImpl::GetWindowHandle()
|
|
{
|
|
Lock();
|
|
CefWindowHandle handle = window_info_.m_hWnd;
|
|
Unlock();
|
|
return handle;
|
|
}
|
|
|
|
gfx::NativeWindow CefBrowserImpl::GetMainWndHandle() const {
|
|
return window_info_.m_hWnd;
|
|
}
|
|
|
|
void CefBrowserImpl::UIT_CreateBrowser(const std::wstring& url)
|
|
{
|
|
REQUIRE_UIT();
|
|
|
|
// Create the new browser window
|
|
window_info_.m_hWnd = CreateWindowEx(window_info_.m_dwExStyle, GetWndClass(),
|
|
window_info_.m_windowName, window_info_.m_dwStyle,
|
|
window_info_.m_x, window_info_.m_y, window_info_.m_nWidth,
|
|
window_info_.m_nHeight, window_info_.m_hWndParent, window_info_.m_hMenu,
|
|
::GetModuleHandle(NULL), NULL);
|
|
DCHECK(window_info_.m_hWnd != NULL);
|
|
|
|
// Set window user data to this object for future reference from the window
|
|
// procedure
|
|
win_util::SetWindowUserData(window_info_.m_hWnd, this);
|
|
|
|
// Add a reference that will be released in UIT_DestroyBrowser().
|
|
AddRef();
|
|
|
|
// Add the new browser to the list maintained by the context
|
|
_Context->AddBrowser(this);
|
|
|
|
// Create the webview host object
|
|
webviewhost_.reset(
|
|
WebViewHost::Create(window_info_.m_hWnd, gfx::Rect(), delegate_.get(),
|
|
NULL, *_Context->web_preferences()));
|
|
delegate_->RegisterDragDrop();
|
|
|
|
// Size the web view window to the browser window
|
|
RECT cr;
|
|
GetClientRect(window_info_.m_hWnd, &cr);
|
|
SetWindowPos(GetWebViewWndHandle(), NULL, cr.left, cr.top, cr.right,
|
|
cr.bottom, SWP_NOZORDER | SWP_SHOWWINDOW);
|
|
|
|
if(handler_.get()) {
|
|
// Notify the handler that we're done creating the new window
|
|
handler_->HandleAfterCreated(this);
|
|
}
|
|
|
|
if(url.size() > 0) {
|
|
CefRefPtr<CefFrame> frame = GetMainFrame();
|
|
frame->AddRef();
|
|
UIT_LoadURL(frame, url.c_str());
|
|
}
|
|
}
|
|
|
|
void CefBrowserImpl::UIT_SetFocus(WebWidgetHost* host, bool enable)
|
|
{
|
|
REQUIRE_UIT();
|
|
if (!host)
|
|
return;
|
|
|
|
if (enable)
|
|
::SetFocus(host->view_handle());
|
|
else if (::GetFocus() == host->view_handle())
|
|
::SetFocus(NULL);
|
|
}
|
|
|
|
WebKit::WebWidget* CefBrowserImpl::UIT_CreatePopupWidget()
|
|
{
|
|
REQUIRE_UIT();
|
|
|
|
DCHECK(!popuphost_);
|
|
popuphost_ = WebWidgetHost::Create(NULL, popup_delegate_.get());
|
|
ShowWindow(GetPopupWndHandle(), SW_SHOW);
|
|
|
|
return popuphost_->webwidget();
|
|
}
|
|
|
|
void CefBrowserImpl::UIT_ClosePopupWidget()
|
|
{
|
|
REQUIRE_UIT();
|
|
|
|
PostMessage(GetPopupWndHandle(), WM_CLOSE, 0, 0);
|
|
popuphost_ = NULL;
|
|
}
|
|
|
|
|
|
static void WriteTextToFile(const std::string& data,
|
|
const std::wstring& file_path)
|
|
{
|
|
FILE* fp;
|
|
errno_t err = _wfopen_s(&fp, file_path.c_str(), L"wt");
|
|
if (err)
|
|
return;
|
|
fwrite(data.c_str(), 1, data.size(), fp);
|
|
fclose(fp);
|
|
}
|
|
|
|
bool CefBrowserImpl::UIT_ViewDocumentString(WebKit::WebFrame *frame)
|
|
{
|
|
REQUIRE_UIT();
|
|
|
|
DWORD dwRetVal;
|
|
DWORD dwBufSize = 512;
|
|
TCHAR lpPathBuffer[512];
|
|
UINT uRetVal;
|
|
TCHAR szTempName[512];
|
|
|
|
dwRetVal = GetTempPath(dwBufSize, // length of the buffer
|
|
lpPathBuffer); // buffer for path
|
|
if (dwRetVal > dwBufSize || (dwRetVal == 0))
|
|
return false;
|
|
|
|
// Create a temporary file.
|
|
uRetVal = GetTempFileName(lpPathBuffer, // directory for tmp files
|
|
TEXT("src"), // temp file name prefix
|
|
0, // create unique name
|
|
szTempName); // buffer for name
|
|
if (uRetVal == 0)
|
|
return false;
|
|
|
|
size_t len = wcslen(szTempName);
|
|
wcscpy(szTempName + len - 3, L"txt");
|
|
std::string markup = frame->contentAsMarkup().utf8();
|
|
WriteTextToFile(markup, szTempName);
|
|
|
|
int errorCode = (int)ShellExecute(GetMainWndHandle(), L"open", szTempName,
|
|
NULL, NULL, SW_SHOWNORMAL);
|
|
if(errorCode <= 32)
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
void CefBrowserImpl::UIT_PrintPage(int page_number, int total_pages,
|
|
const gfx::Size& canvas_size,
|
|
WebKit::WebFrame* frame) {
|
|
REQUIRE_UIT();
|
|
|
|
printing::PrintParams params;
|
|
const printing::PrintSettings &settings = print_context_.settings();
|
|
settings.RenderParams(¶ms);
|
|
|
|
const int src_size_x = canvas_size.width();
|
|
const int src_size_y = canvas_size.height();
|
|
|
|
const int dest_size_x = settings.page_setup_pixels().printable_area().width();
|
|
const int dest_size_y = settings.page_setup_pixels().printable_area().height();
|
|
|
|
print_context_.NewPage();
|
|
|
|
HDC hDC = print_context_.context();
|
|
BOOL res;
|
|
|
|
// Save the state to make sure the context this function call does not modify
|
|
// the device context.
|
|
int saved_state = SaveDC(hDC);
|
|
DCHECK_NE(saved_state, 0);
|
|
|
|
skia::VectorCanvas canvas(hDC, dest_size_x, dest_size_y);
|
|
|
|
//The hDC 0 coord is the left most printeable area and not physical area of the paper
|
|
//so subtract that out of our canvas translate.
|
|
const int left_margin_offset = settings.page_setup_pixels().effective_margins().left -
|
|
settings.page_setup_pixels().printable_area().x();
|
|
const int top_margin_offset = settings.page_setup_pixels().effective_margins().top -
|
|
settings.page_setup_pixels().printable_area().y();
|
|
|
|
// Adjust for the margin offset.
|
|
canvas.translate(static_cast<float>(left_margin_offset),
|
|
static_cast<float>(top_margin_offset));
|
|
|
|
// Apply the print scaling factor.
|
|
const float print_scale_x = static_cast<float>(settings.page_setup_pixels().content_area().width())
|
|
/ src_size_x;
|
|
const float print_scale_y = static_cast<float>(settings.page_setup_pixels().content_area().height())
|
|
/ src_size_y;
|
|
canvas.scale(print_scale_x, print_scale_y);
|
|
|
|
// Apply the WebKit scaling factor.
|
|
const float webkit_scale = frame->getPrintPageShrink(page_number);
|
|
if (webkit_scale <= 0) {
|
|
NOTREACHED() << "Printing page " << page_number << " failed.";
|
|
}
|
|
canvas.scale(webkit_scale, webkit_scale);
|
|
|
|
frame->printPage(page_number, &canvas);
|
|
|
|
res = RestoreDC(hDC, saved_state);
|
|
DCHECK_NE(res, 0);
|
|
|
|
if(handler_.get()) {
|
|
saved_state = SaveDC(hDC);
|
|
DCHECK_NE(saved_state, 0);
|
|
|
|
// Gather print header state information
|
|
RECT rect;
|
|
rect.left = left_margin_offset;
|
|
rect.top = settings.page_setup_pixels().effective_margins().header -
|
|
settings.page_setup_pixels().printable_area().y();
|
|
rect.right = left_margin_offset + settings.page_setup_pixels().content_area().width();
|
|
rect.bottom = settings.page_setup_pixels().printable_area().height() -
|
|
(settings.page_setup_pixels().effective_margins().footer -
|
|
(settings.page_setup_pixels().physical_size().height() -
|
|
settings.page_setup_pixels().printable_area().bottom()));
|
|
|
|
const double scale = static_cast<double>(settings.dpi()) /
|
|
static_cast<double>(settings.desired_dpi);
|
|
|
|
CefPrintInfo printInfo;
|
|
|
|
printInfo.m_hDC = hDC;
|
|
printInfo.m_Rect = rect;
|
|
printInfo.m_Scale = scale;
|
|
|
|
std::string spec = frame->url().spec();
|
|
std::wstring url = UTF8ToWide(spec);
|
|
std::wstring title = title_;
|
|
|
|
std::wstring topLeft, topCenter, topRight;
|
|
std::wstring bottomLeft, bottomCenter, bottomRight;
|
|
|
|
// allow the handler to format print header and/or footer
|
|
CefHandler::RetVal rv = handler_->HandlePrintHeaderFooter(this,
|
|
GetCefFrame(frame), printInfo, url, title, page_number+1, total_pages,
|
|
topLeft, topCenter, topRight, bottomLeft, bottomCenter, bottomRight);
|
|
|
|
if(rv != RV_HANDLED) {
|
|
// Draw handler-defined headers and/or footers.
|
|
LOGFONT lf;
|
|
memset(&lf, 0, sizeof(lf));
|
|
lf.lfHeight = (int)ceil(10. * scale);
|
|
lf.lfPitchAndFamily = FF_SWISS;
|
|
HFONT hFont = CreateFontIndirect(&lf);
|
|
|
|
HFONT hOldFont = (HFONT)SelectObject(hDC, hFont);
|
|
COLORREF hOldColor = SetTextColor(hDC, RGB(0,0,0));
|
|
int hOldBkMode = SetBkMode(hDC, TRANSPARENT);
|
|
|
|
// TODO(cef): Keep the header strings inside a reasonable bounding box
|
|
// so that they don't overlap each other.
|
|
if(topLeft.size() > 0) {
|
|
DrawText(hDC, topLeft.c_str(), topLeft.size(), &rect,
|
|
DT_LEFT | DT_TOP | DT_SINGLELINE | DT_END_ELLIPSIS
|
|
| DT_EXPANDTABS | DT_NOPREFIX);
|
|
}
|
|
if(topCenter.size() > 0) {
|
|
DrawText(hDC, topCenter.c_str(), topCenter.size(), &rect,
|
|
DT_CENTER | DT_TOP | DT_SINGLELINE | DT_END_ELLIPSIS
|
|
| DT_EXPANDTABS | DT_NOPREFIX);
|
|
}
|
|
if(topRight.size() > 0) {
|
|
DrawText(hDC, topRight.c_str(), topRight.size(), &rect,
|
|
DT_RIGHT | DT_TOP | DT_SINGLELINE | DT_END_ELLIPSIS
|
|
| DT_EXPANDTABS | DT_NOPREFIX);
|
|
}
|
|
if(bottomLeft.size() > 0) {
|
|
DrawText(hDC, bottomLeft.c_str(), bottomLeft.size(), &rect,
|
|
DT_LEFT | DT_BOTTOM | DT_SINGLELINE | DT_END_ELLIPSIS
|
|
| DT_EXPANDTABS | DT_NOPREFIX);
|
|
}
|
|
if(bottomCenter.size() > 0) {
|
|
DrawText(hDC, bottomCenter.c_str(), bottomCenter.size(), &rect,
|
|
DT_CENTER | DT_BOTTOM | DT_SINGLELINE | DT_END_ELLIPSIS
|
|
| DT_EXPANDTABS | DT_NOPREFIX);
|
|
}
|
|
if(bottomRight.size() > 0) {
|
|
DrawText(hDC, bottomRight.c_str(), bottomRight.size(), &rect,
|
|
DT_RIGHT | DT_BOTTOM | DT_SINGLELINE | DT_END_ELLIPSIS
|
|
| DT_EXPANDTABS | DT_NOPREFIX);
|
|
}
|
|
|
|
SetTextColor(hDC, hOldColor);
|
|
SelectObject(hDC, hOldFont);
|
|
DeleteObject(hFont);
|
|
SetBkMode(hDC, hOldBkMode);
|
|
}
|
|
|
|
res = RestoreDC(hDC, saved_state);
|
|
DCHECK_NE(res, 0);
|
|
}
|
|
|
|
print_context_.PageDone();
|
|
}
|
|
|
|
void CefBrowserImpl::UIT_PrintPages(WebKit::WebFrame* frame) {
|
|
REQUIRE_UIT();
|
|
|
|
print_context_.Init();
|
|
{
|
|
// Make a copy of settings.
|
|
printing::PrintSettings settings = print_context_.settings();
|
|
cef_print_options_t print_options;
|
|
settings.UpdatePrintOptions(print_options);
|
|
|
|
// Ask the handler if they want to update the print options.
|
|
if (handler_.get() && RV_HANDLED == handler_->HandlePrintOptions(this, print_options)) {
|
|
settings.UpdateFromPrintOptions(print_options);
|
|
print_context_.InitWithSettings(settings);
|
|
}
|
|
}
|
|
|
|
if(print_context_.AskUserForSettings(
|
|
GetMainWndHandle(), UIT_GetPagesCount(frame), false)
|
|
!= printing::PrintingContext::OK)
|
|
return;
|
|
|
|
printing::PrintParams params;
|
|
const printing::PrintSettings &settings = print_context_.settings();
|
|
|
|
settings.RenderParams(¶ms);
|
|
|
|
int page_count = 0;
|
|
gfx::Size canvas_size;
|
|
|
|
canvas_size.set_width(
|
|
printing::ConvertUnit(
|
|
settings.page_setup_pixels().content_area().width(),
|
|
static_cast<int>(params.dpi),
|
|
params.desired_dpi));
|
|
canvas_size.set_height(
|
|
printing::ConvertUnit(
|
|
settings.page_setup_pixels().content_area().height(),
|
|
static_cast<int>(params.dpi),
|
|
params.desired_dpi));
|
|
page_count = frame->printBegin(WebSize(canvas_size));
|
|
|
|
if (page_count) {
|
|
bool old_state = MessageLoop::current()->NestableTasksAllowed();
|
|
MessageLoop::current()->SetNestableTasksAllowed(false);
|
|
|
|
if (print_context_.NewDocument(title_) == printing::PrintingContext::OK) {
|
|
if(settings.ranges.size() > 0) {
|
|
for (unsigned x = 0; x < settings.ranges.size(); ++x) {
|
|
const printing::PageRange& range = settings.ranges[x];
|
|
for(int i = range.from; i <= range.to; ++i)
|
|
UIT_PrintPage(i, page_count, canvas_size, frame);
|
|
}
|
|
} else {
|
|
for(int i = 0; i < page_count; ++i)
|
|
UIT_PrintPage(i, page_count, canvas_size, frame);
|
|
}
|
|
print_context_.DocumentDone();
|
|
}
|
|
|
|
MessageLoop::current()->SetNestableTasksAllowed(old_state);
|
|
}
|
|
|
|
frame->printEnd();
|
|
}
|
|
|
|
int CefBrowserImpl::UIT_GetPagesCount(WebKit::WebFrame* frame)
|
|
{
|
|
REQUIRE_UIT();
|
|
|
|
printing::PrintParams params;
|
|
const printing::PrintSettings &settings = print_context_.settings();
|
|
|
|
settings.RenderParams(¶ms);
|
|
|
|
// The dbi will be 0 if no default printer is configured.
|
|
if(params.dpi == 0)
|
|
return 0;
|
|
|
|
int page_count = 0;
|
|
gfx::Size canvas_size;
|
|
|
|
canvas_size.set_width(
|
|
printing::ConvertUnit(
|
|
settings.page_setup_pixels().content_area().width(),
|
|
static_cast<int>(params.dpi),
|
|
params.desired_dpi));
|
|
canvas_size.set_height(
|
|
printing::ConvertUnit(
|
|
settings.page_setup_pixels().content_area().height(),
|
|
static_cast<int>(params.dpi),
|
|
params.desired_dpi));
|
|
page_count = frame->printBegin(WebSize(canvas_size));
|
|
frame->printEnd();
|
|
|
|
return page_count;
|
|
}
|