2010-10-03 23:04:50 +02:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
#ifndef _WEBWIDGET_HOST_H
|
|
|
|
#define _WEBWIDGET_HOST_H
|
|
|
|
|
2011-05-20 22:52:47 +02:00
|
|
|
#include "include/internal/cef_string.h"
|
|
|
|
#include "include/internal/cef_types.h"
|
2010-10-03 23:04:50 +02:00
|
|
|
#include "base/basictypes.h"
|
|
|
|
#include "base/scoped_ptr.h"
|
2011-02-15 19:07:24 +01:00
|
|
|
#include "base/task.h"
|
2010-10-03 23:04:50 +02:00
|
|
|
#include "skia/ext/platform_canvas.h"
|
2011-02-15 19:07:24 +01:00
|
|
|
#include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
|
|
|
|
#include "ui/gfx/native_widget_types.h"
|
|
|
|
#include "ui/gfx/rect.h"
|
2011-03-24 21:36:47 +01:00
|
|
|
#include "webkit/plugins/npapi/webplugin.h"
|
|
|
|
#include <map>
|
2010-10-03 23:04:50 +02:00
|
|
|
|
|
|
|
namespace gfx {
|
2010-11-15 16:39:56 +01:00
|
|
|
class Rect;
|
2010-10-03 23:04:50 +02:00
|
|
|
class Size;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace WebKit {
|
|
|
|
class WebWidget;
|
|
|
|
class WebWidgetClient;
|
|
|
|
class WebKeyboardEvent;
|
|
|
|
struct WebScreenInfo;
|
|
|
|
}
|
|
|
|
|
2010-10-09 20:23:06 +02:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
#ifdef __OBJC__
|
|
|
|
@class NSEvent;
|
|
|
|
#else
|
|
|
|
class NSEvent;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// This class is a simple NativeView-based host for a WebWidget
|
2010-10-03 23:04:50 +02:00
|
|
|
class WebWidgetHost {
|
|
|
|
public:
|
2011-03-24 21:36:47 +01:00
|
|
|
class PaintDelegate {
|
|
|
|
public:
|
|
|
|
virtual void Paint(bool popup, const gfx::Rect& dirtyRect,
|
|
|
|
const void* buffer) =0;
|
|
|
|
};
|
|
|
|
|
2010-10-09 20:23:06 +02:00
|
|
|
// The new instance is deleted once the associated NativeView is destroyed.
|
2010-10-03 23:04:50 +02:00
|
|
|
// The newly created window should be resized after it is created, using the
|
|
|
|
// MoveWindow (or equivalent) function.
|
|
|
|
static WebWidgetHost* Create(gfx::NativeView parent_view,
|
2011-03-24 21:36:47 +01:00
|
|
|
WebKit::WebWidgetClient* client,
|
|
|
|
PaintDelegate* paint_delegate);
|
|
|
|
|
|
|
|
virtual ~WebWidgetHost();
|
2010-10-03 23:04:50 +02:00
|
|
|
|
|
|
|
#if defined(OS_MACOSX)
|
2010-10-09 20:23:06 +02:00
|
|
|
static void HandleEvent(gfx::NativeView view, NSEvent* event);
|
2010-10-03 23:04:50 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
gfx::NativeView view_handle() const { return view_; }
|
|
|
|
WebKit::WebWidget* webwidget() const { return webwidget_; }
|
|
|
|
|
|
|
|
void DidInvalidateRect(const gfx::Rect& rect);
|
|
|
|
void DidScrollRect(int dx, int dy, const gfx::Rect& clip_rect);
|
|
|
|
void ScheduleComposite();
|
2011-02-15 19:07:24 +01:00
|
|
|
void ScheduleAnimation();
|
2010-10-03 23:04:50 +02:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
void SetCursor(HCURSOR cursor);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void DiscardBackingStore();
|
|
|
|
// Allow clients to update the paint rect. For example, if we get a gdk
|
|
|
|
// expose or WM_PAINT event, we need to update the paint rect.
|
|
|
|
void UpdatePaintRect(const gfx::Rect& rect);
|
2011-03-24 21:36:47 +01:00
|
|
|
|
2010-10-03 23:04:50 +02:00
|
|
|
void Paint();
|
2011-03-24 21:36:47 +01:00
|
|
|
void InvalidateRect(const gfx::Rect& rect);
|
|
|
|
|
|
|
|
bool GetImage(int width, int height, void* buffer);
|
|
|
|
|
|
|
|
void SetSize(int width, int height);
|
|
|
|
void GetSize(int& width, int& height);
|
2010-10-03 23:04:50 +02:00
|
|
|
|
|
|
|
skia::PlatformCanvas* canvas() const { return canvas_.get(); }
|
|
|
|
|
|
|
|
WebKit::WebScreenInfo GetScreenInfo();
|
|
|
|
|
|
|
|
WebKit::WebKeyboardEvent GetLastKeyEvent() const { return last_key_event_; }
|
|
|
|
|
|
|
|
void PaintRect(const gfx::Rect& rect);
|
|
|
|
|
2010-11-22 18:49:46 +01:00
|
|
|
void SetTooltipText(const CefString& tooltip_text);
|
2010-10-03 23:04:50 +02:00
|
|
|
|
2011-03-24 21:36:47 +01:00
|
|
|
void SendKeyEvent(cef_key_type_t type, int key, int modifiers, bool sysChar,
|
|
|
|
bool imeChar);
|
|
|
|
void SendMouseClickEvent(int x, int y, cef_mouse_button_type_t type,
|
|
|
|
bool mouseUp, int clickCount);
|
|
|
|
void SendMouseMoveEvent(int x, int y, bool mouseLeave);
|
|
|
|
void SendMouseWheelEvent(int x, int y, int delta);
|
|
|
|
void SendFocusEvent(bool setFocus);
|
|
|
|
void SendCaptureLostEvent();
|
|
|
|
|
|
|
|
// Manage windowed plugins when window rendering is disabled.
|
|
|
|
bool HasWindowedPlugins() { return !plugin_map_.empty(); }
|
|
|
|
void AddWindowedPlugin(gfx::PluginWindowHandle handle);
|
|
|
|
void RemoveWindowedPlugin(gfx::PluginWindowHandle handle);
|
|
|
|
void MoveWindowedPlugin(const webkit::npapi::WebPluginGeometry& geometry);
|
|
|
|
gfx::PluginWindowHandle GetWindowedPluginAt(int x, int y);
|
|
|
|
|
|
|
|
// If window rendering is disabled paint messages are generated after all
|
|
|
|
// other pending messages have been processed.
|
|
|
|
void DoPaint();
|
|
|
|
|
2011-02-01 16:37:47 +01:00
|
|
|
void set_popup(bool popup) { popup_ = popup; }
|
|
|
|
bool popup() { return popup_; }
|
|
|
|
|
2011-03-24 21:36:47 +01:00
|
|
|
PaintDelegate* paint_delegate() { return paint_delegate_; }
|
|
|
|
|
2010-10-03 23:04:50 +02:00
|
|
|
protected:
|
|
|
|
WebWidgetHost();
|
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
|
|
|
// Per-class wndproc. Returns true if the event should be swallowed.
|
|
|
|
virtual bool WndProc(UINT message, WPARAM wparam, LPARAM lparam);
|
|
|
|
|
|
|
|
void Resize(LPARAM lparam);
|
2011-02-28 01:33:11 +01:00
|
|
|
virtual void MouseEvent(UINT message, WPARAM wparam, LPARAM lparam);
|
2010-10-03 23:04:50 +02:00
|
|
|
void WheelEvent(WPARAM wparam, LPARAM lparam);
|
|
|
|
void KeyEvent(UINT message, WPARAM wparam, LPARAM lparam);
|
|
|
|
void CaptureLostEvent();
|
|
|
|
void SetFocus(bool enable);
|
|
|
|
void OnNotify(WPARAM wparam, NMHDR* header);
|
|
|
|
|
|
|
|
static LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
|
|
|
|
#elif defined(OS_MACOSX)
|
|
|
|
// These need to be called from a non-subclass, so they need to be public.
|
|
|
|
public:
|
|
|
|
void Resize(const gfx::Rect& rect);
|
|
|
|
void MouseEvent(NSEvent *);
|
|
|
|
void WheelEvent(NSEvent *);
|
|
|
|
void KeyEvent(NSEvent *);
|
|
|
|
void SetFocus(bool enable);
|
|
|
|
protected:
|
2010-10-09 20:23:06 +02:00
|
|
|
#elif defined(TOOLKIT_USES_GTK)
|
2010-10-03 23:04:50 +02:00
|
|
|
public:
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
// This is needed on Linux because the GtkWidget creation is the same between
|
|
|
|
// both web view hosts and web widget hosts. The Windows code manages this by
|
|
|
|
// reusing the WndProc function (static, above). However, GTK doesn't use a
|
|
|
|
// single big callback function like that so we have a static function that
|
|
|
|
// sets up a GtkWidget correctly.
|
|
|
|
// parent: a GtkBox to pack the new widget at the end of
|
|
|
|
// host: a pointer to a WebWidgetHost (or subclass thereof)
|
|
|
|
// ---------------------------------------------------------------------------
|
2010-10-09 20:23:06 +02:00
|
|
|
static gfx::NativeView CreateWidget(gfx::NativeView parent_view,
|
2010-10-03 23:04:50 +02:00
|
|
|
WebWidgetHost* host);
|
|
|
|
void WindowDestroyed();
|
|
|
|
void Resize(const gfx::Size& size);
|
|
|
|
#endif
|
|
|
|
|
2010-10-09 20:23:06 +02:00
|
|
|
#if defined(OS_WIN)
|
2010-10-03 23:04:50 +02:00
|
|
|
void TrackMouseLeave(bool enable);
|
2010-10-09 20:23:06 +02:00
|
|
|
#endif
|
|
|
|
|
2010-10-03 23:04:50 +02:00
|
|
|
void ResetScrollRect();
|
2010-10-09 20:23:06 +02:00
|
|
|
|
2010-10-03 23:04:50 +02:00
|
|
|
void set_painting(bool value) {
|
|
|
|
#ifndef NDEBUG
|
|
|
|
painting_ = value;
|
|
|
|
#endif
|
|
|
|
}
|
2011-02-01 16:37:47 +01:00
|
|
|
|
2010-10-03 23:04:50 +02:00
|
|
|
void EnsureTooltip();
|
|
|
|
void ResetTooltip();
|
|
|
|
|
|
|
|
gfx::NativeView view_;
|
2011-03-24 21:36:47 +01:00
|
|
|
|
|
|
|
// The paint delegate is used instead of the view when window rendering is
|
|
|
|
// disabled.
|
|
|
|
PaintDelegate* paint_delegate_;
|
|
|
|
|
2010-10-03 23:04:50 +02:00
|
|
|
WebKit::WebWidget* webwidget_;
|
|
|
|
scoped_ptr<skia::PlatformCanvas> canvas_;
|
|
|
|
|
2011-02-01 16:37:47 +01:00
|
|
|
// True if this widget is a popup widget.
|
|
|
|
bool popup_;
|
|
|
|
|
2011-03-24 21:36:47 +01:00
|
|
|
// Specifies the portion of the webwidget that needs painting.
|
2010-10-03 23:04:50 +02:00
|
|
|
gfx::Rect paint_rect_;
|
|
|
|
|
2011-03-24 21:36:47 +01:00
|
|
|
// Specifies the portion of the webwidget that needs scrolling.
|
2010-10-03 23:04:50 +02:00
|
|
|
gfx::Rect scroll_rect_;
|
|
|
|
int scroll_dx_;
|
|
|
|
int scroll_dy_;
|
|
|
|
|
2011-03-24 21:36:47 +01:00
|
|
|
// Specifies the portion of the webwidget that has been invalidated when
|
|
|
|
// window rendering is disabled.
|
|
|
|
gfx::Rect update_rect_;
|
|
|
|
CancelableTask* update_task_;
|
|
|
|
|
|
|
|
// The map of windowed plugins that need to be drawn when window rendering is
|
|
|
|
// disabled.
|
|
|
|
typedef std::map<gfx::PluginWindowHandle,webkit::npapi::WebPluginGeometry>
|
|
|
|
PluginMap;
|
|
|
|
PluginMap plugin_map_;
|
|
|
|
|
2010-10-09 20:23:06 +02:00
|
|
|
#if defined(OS_WIN)
|
2010-10-03 23:04:50 +02:00
|
|
|
bool track_mouse_leave_;
|
2010-11-22 18:49:46 +01:00
|
|
|
std::wstring tooltip_text_;
|
2011-03-24 21:36:47 +01:00
|
|
|
gfx::NativeView tooltip_view_;
|
|
|
|
bool tooltip_showing_;
|
2010-10-09 20:23:06 +02:00
|
|
|
#endif
|
2010-10-03 23:04:50 +02:00
|
|
|
|
2010-10-09 20:23:06 +02:00
|
|
|
#if defined(TOOLKIT_USES_GTK)
|
|
|
|
// Since GtkWindow resize is asynchronous, we have to stash the dimensions,
|
|
|
|
// so that the backing store doesn't have to wait for sizing to take place.
|
|
|
|
gfx::Size logical_size_;
|
|
|
|
#endif
|
2010-10-03 23:04:50 +02:00
|
|
|
|
2010-10-09 20:23:06 +02:00
|
|
|
WebKit::WebKeyboardEvent last_key_event_;
|
2010-10-03 23:04:50 +02:00
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
bool painting_;
|
|
|
|
#endif
|
2011-02-15 19:07:24 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
ScopedRunnableMethodFactory<WebWidgetHost> factory_;
|
2010-10-03 23:04:50 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WEBWIDGET_HOST_H
|