mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Rename CEF1 files from /trunk to /trunk/cef1 (issue #564).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@570 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
69
cef1/libcef/webview_host_gtk.cc
Normal file
69
cef1/libcef/webview_host_gtk.cc
Normal file
@@ -0,0 +1,69 @@
|
||||
// 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 <gtk/gtk.h>
|
||||
|
||||
#include "libcef/webview_host.h"
|
||||
#include "libcef/browser_webview_delegate.h"
|
||||
|
||||
#include "base/logging.h"
|
||||
#include "third_party/WebKit/Source/WebKit/chromium/public/gtk/WebInputEventFactory.h"
|
||||
#include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
|
||||
#include "third_party/WebKit/Source/WebKit/chromium/public/WebView.h"
|
||||
#include "ui/gfx/rect.h"
|
||||
#include "ui/gfx/size.h"
|
||||
#include "webkit/glue/webpreferences.h"
|
||||
#include "webkit/plugins/npapi/gtk_plugin_container.h"
|
||||
|
||||
using WebKit::WebDevToolsAgentClient;
|
||||
using WebKit::WebKeyboardEvent;
|
||||
using WebKit::WebInputEvent;
|
||||
using WebKit::WebInputEventFactory;
|
||||
using WebKit::WebView;
|
||||
|
||||
// static
|
||||
WebViewHost* WebViewHost::Create(GtkWidget* parent_view,
|
||||
const gfx::Rect& rect,
|
||||
BrowserWebViewDelegate* delegate,
|
||||
PaintDelegate* paint_delegate,
|
||||
WebDevToolsAgentClient* dev_tools_client,
|
||||
const WebPreferences& prefs) {
|
||||
WebViewHost* host = new WebViewHost(delegate);
|
||||
|
||||
host->view_ = WebWidgetHost::CreateWidget(parent_view, host);
|
||||
host->plugin_container_manager_.set_host_widget(host->view_);
|
||||
|
||||
#if defined(WEBKIT_HAS_WEB_AUTO_FILL_CLIENT)
|
||||
host->webwidget_ = WebView::create(delegate, NULL);
|
||||
#else
|
||||
host->webwidget_ = WebView::create(delegate);
|
||||
#endif
|
||||
host->webview()->setDevToolsAgentClient(dev_tools_client);
|
||||
host->webview()->setPermissionClient(delegate);
|
||||
prefs.Apply(host->webview());
|
||||
host->webview()->initializeMainFrame(delegate);
|
||||
host->webwidget_->layout();
|
||||
|
||||
return host;
|
||||
}
|
||||
|
||||
WebView* WebViewHost::webview() const {
|
||||
return static_cast<WebView*>(webwidget_);
|
||||
}
|
||||
|
||||
void WebViewHost::CreatePluginContainer(gfx::PluginWindowHandle id) {
|
||||
plugin_container_manager_.CreatePluginContainer(id);
|
||||
}
|
||||
|
||||
void WebViewHost::DestroyPluginContainer(gfx::PluginWindowHandle id) {
|
||||
plugin_container_manager_.DestroyPluginContainer(id);
|
||||
}
|
||||
|
||||
void WebViewHost::KeyEvent(GdkEventKey* event) {
|
||||
WebKeyboardEvent keyboard_event(WebInputEventFactory::keyboardEvent(event));
|
||||
if (delegate_->OnKeyboardEvent(keyboard_event, false))
|
||||
return;
|
||||
|
||||
WebWidgetHost::KeyEvent(event);
|
||||
}
|
Reference in New Issue
Block a user