blob: 56ba30cc2ce3d41822c26a043f052a113017e207 [file] [log] [blame]
license.botbf09a502008-08-24 00:55:551// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commit09911bf2008-07-26 23:55:294
5#ifndef CHROME_RENDERER_RENDER_WIDGET_H__
6#define CHROME_RENDERER_RENDER_WIDGET_H__
7
8#include <vector>
9#include "base/basictypes.h"
[email protected]18bcc3c2009-01-27 21:39:1510#include "base/gfx/native_widget_types.h"
initial.commit09911bf2008-07-26 23:55:2911#include "base/gfx/point.h"
12#include "base/gfx/rect.h"
13#include "base/gfx/size.h"
14#include "base/ref_counted.h"
[email protected]674741932009-02-04 23:44:4615#include "base/shared_memory.h"
initial.commit09911bf2008-07-26 23:55:2916#include "chrome/common/ipc_channel.h"
[email protected]661eb9d2009-02-03 02:11:4817#include "skia/ext/platform_canvas.h"
[email protected]8085dbc82008-09-26 22:53:4418
initial.commit09911bf2008-07-26 23:55:2919#include "webkit/glue/webwidget_delegate.h"
20#include "webkit/glue/webcursor.h"
initial.commit09911bf2008-07-26 23:55:2921
[email protected]8085dbc82008-09-26 22:53:4422class RenderThreadBase;
[email protected]39008c02009-02-11 23:59:2523struct WebPluginGeometry;
[email protected]8085dbc82008-09-26 22:53:4424
initial.commit09911bf2008-07-26 23:55:2925// RenderWidget provides a communication bridge between a WebWidget and
26// a RenderWidgetHost, the latter of which lives in a different process.
27class RenderWidget : public IPC::Channel::Listener,
28 public IPC::Message::Sender,
29 virtual public WebWidgetDelegate,
30 public base::RefCounted<RenderWidget> {
31 public:
32 // Creates a new RenderWidget. The opener_id is the routing ID of the
[email protected]8085dbc82008-09-26 22:53:4433 // RenderView that this widget lives inside. The render_thread is any
[email protected]1d97d2e2008-12-18 23:39:0234 // RenderThreadBase implementation, mostly commonly g_render_thread.
[email protected]0ebf3872008-11-07 21:35:0335 static RenderWidget* Create(int32 opener_id,
36 RenderThreadBase* render_thread,
[email protected]cfd727f2009-01-09 20:21:1137 bool activatable);
initial.commit09911bf2008-07-26 23:55:2938
39 // The routing ID assigned by the RenderProcess. Will be MSG_ROUTING_NONE if
40 // not yet assigned a view ID, in which case, the process MUST NOT send
41 // messages with this ID to the parent.
42 int32 routing_id() const {
43 return routing_id_;
44 }
45
46 // May return NULL when the window is closing.
47 WebWidget* webwidget() const {
48 return webwidget_;
49 }
50
51 // Implementing RefCounting required for WebWidgetDelegate
52 virtual void AddRef() {
[email protected]037fce02009-01-22 01:42:1553 base::RefCounted<RenderWidget>::AddRef();
initial.commit09911bf2008-07-26 23:55:2954 }
55 virtual void Release() {
[email protected]037fce02009-01-22 01:42:1556 base::RefCounted<RenderWidget>::Release();
initial.commit09911bf2008-07-26 23:55:2957 }
58
59 // IPC::Channel::Listener
60 virtual void OnMessageReceived(const IPC::Message& msg);
61
62 // IPC::Message::Sender
63 virtual bool Send(IPC::Message* msg);
64
[email protected]8085dbc82008-09-26 22:53:4465 // True if the underlying IPC is currently sending data.
66 bool InSend() const;
67
initial.commit09911bf2008-07-26 23:55:2968 // WebWidgetDelegate
[email protected]18bcc3c2009-01-27 21:39:1569 virtual gfx::NativeViewId GetContainingView(WebWidget* webwidget);
initial.commit09911bf2008-07-26 23:55:2970 virtual void DidInvalidateRect(WebWidget* webwidget, const gfx::Rect& rect);
71 virtual void DidScrollRect(WebWidget* webwidget, int dx, int dy,
72 const gfx::Rect& clip_rect);
73 virtual void SetCursor(WebWidget* webwidget, const WebCursor& cursor);
74 virtual void Show(WebWidget* webwidget, WindowOpenDisposition disposition);
75 virtual void CloseWidgetSoon(WebWidget* webwidget);
76 virtual void Focus(WebWidget* webwidget);
77 virtual void Blur(WebWidget* webwidget);
[email protected]63bf66f2008-08-21 21:13:0178 virtual void GetWindowRect(WebWidget* webwidget, gfx::Rect* rect);
initial.commit09911bf2008-07-26 23:55:2979 virtual void SetWindowRect(WebWidget* webwidget, const gfx::Rect& rect);
[email protected]d4547452008-08-28 18:36:3780 virtual void GetRootWindowRect(WebWidget* webwidget, gfx::Rect* rect);
[email protected]c04b6362008-11-21 18:54:1981 virtual void GetRootWindowResizerRect(WebWidget* webwidget, gfx::Rect* rect);
initial.commit09911bf2008-07-26 23:55:2982 virtual void DidMove(WebWidget* webwidget, const WebPluginGeometry& move);
83 virtual void RunModal(WebWidget* webwidget) {}
[email protected]cec85882008-10-09 23:02:4284 virtual bool IsHidden() { return is_hidden_; }
initial.commit09911bf2008-07-26 23:55:2985
initial.commit09911bf2008-07-26 23:55:2986 // Close the underlying WebWidget.
87 void Close();
88
[email protected]661eb9d2009-02-03 02:11:4889 // Get the size of the paint buffer for the given rectangle, rounding up to
90 // the allocation granularity of the system.
91 static size_t GetPaintBufSize(const gfx::Rect& rect);
92
initial.commit09911bf2008-07-26 23:55:2993 protected:
[email protected]8085dbc82008-09-26 22:53:4494 // Friend RefCounted so that the dtor can be non-public. Using this class
95 // without ref-counting is an error.
96 friend class base::RefCounted<RenderWidget>;
97
[email protected]cfd727f2009-01-09 20:21:1198 RenderWidget(RenderThreadBase* render_thread, bool activatable);
[email protected]8085dbc82008-09-26 22:53:4499 virtual ~RenderWidget();
initial.commit09911bf2008-07-26 23:55:29100
101 // Initializes this view with the given opener. CompleteInit must be called
102 // later.
103 void Init(int32 opener_id);
104
105 // Finishes creation of a pending view started with Init.
[email protected]18bcc3c2009-01-27 21:39:15106 void CompleteInit(gfx::NativeViewId parent);
initial.commit09911bf2008-07-26 23:55:29107
[email protected]661eb9d2009-02-03 02:11:48108 // Paints the given rectangular region of the WebWidget into canvas (a
109 // shared memory segment returned by AllocPaintBuf on Windows). The caller
110 // must ensure that the given rect fits within the bounds of the WebWidget.
111 void PaintRect(const gfx::Rect& rect, skia::PlatformCanvas* canvas);
initial.commit09911bf2008-07-26 23:55:29112
113 void DoDeferredPaint();
114 void DoDeferredScroll();
115
116 // This method is called immediately after PaintRect but before the
117 // corresponding paint or scroll message is send to the widget host.
118 virtual void DidPaint() {}
119
120 // RenderWidget IPC message handlers
121 void OnClose();
[email protected]18bcc3c2009-01-27 21:39:15122 void OnCreatingNewAck(gfx::NativeViewId parent);
[email protected]f21c613a2009-02-12 14:46:17123 void OnResize(const gfx::Size& new_size, const gfx::Rect& resizer_rect);
initial.commit09911bf2008-07-26 23:55:29124 void OnWasHidden();
125 void OnWasRestored(bool needs_repainting);
[email protected]b7fce1f2008-08-14 05:01:07126 void OnPaintRectAck();
initial.commit09911bf2008-07-26 23:55:29127 void OnScrollRectAck();
128 void OnHandleInputEvent(const IPC::Message& message);
129 void OnMouseCaptureLost();
130 void OnSetFocus(bool enable);
131 void OnImeSetInputMode(bool is_active);
132 void OnImeSetComposition(int string_type, int cursor_position,
133 int target_start, int target_end,
134 const std::wstring& ime_string);
[email protected]ec7dc112008-08-06 05:30:12135 void OnMsgRepaint(const gfx::Size& size_to_paint);
initial.commit09911bf2008-07-26 23:55:29136
137 // True if a PaintRect_ACK message is pending.
138 bool paint_reply_pending() const {
139 return paint_reply_pending_;
140 }
141
142 // True if a ScrollRect_ACK message is pending.
143 bool scroll_reply_pending() const {
144 return current_scroll_buf_ != NULL;
145 }
146
[email protected]674741932009-02-04 23:44:46147 bool next_paint_is_resize_ack() const;
148 bool next_paint_is_restore_ack() const;
149 void set_next_paint_is_resize_ack();
150 void set_next_paint_is_restore_ack();
151 void set_next_paint_is_repaint_ack();
[email protected]ec7dc112008-08-06 05:30:12152
initial.commit09911bf2008-07-26 23:55:29153 // Called when a renderer process moves an input focus or updates the
154 // position of its caret.
155 // This function compares them with the previous values, and send them to
156 // the browser process only if they are updated.
157 // The browser process moves IME windows and context.
158 void UpdateIME();
159
160 // Tells the renderer it does not have focus. Used to prevent us from getting
161 // the focus on our own when the browser did not focus us.
162 void ClearFocus();
163
164 // Routing ID that allows us to communicate to the parent browser process
165 // RenderWidgetHost. When MSG_ROUTING_NONE, no messages may be sent.
166 int32 routing_id_;
167
168 scoped_refptr<WebWidget> webwidget_;
169
170 // Set to the ID of the view that initiated creating this view, if any. When
171 // the view was initiated by the browser (the common case), this will be
172 // MSG_ROUTING_NONE. This is used in determining ownership when opening
173 // child tabs. See RenderWidget::createWebViewWithRequest.
174 //
175 // This ID may refer to an invalid view if that view is closed before this
176 // view is.
177 int32 opener_id_;
178
[email protected]8085dbc82008-09-26 22:53:44179 // The thread that does our IPC.
180 RenderThreadBase* render_thread_;
181
initial.commit09911bf2008-07-26 23:55:29182 // The position where this view should be initially shown.
183 gfx::Rect initial_pos_;
184
185 // The window we are embedded within. TODO(darin): kill this.
[email protected]18bcc3c2009-01-27 21:39:15186 gfx::NativeViewId host_window_;
initial.commit09911bf2008-07-26 23:55:29187
188 // We store the current cursor object so we can avoid spamming SetCursor
189 // messages.
190 WebCursor current_cursor_;
191 // The size of the RenderWidget.
192 gfx::Size size_;
193
194 // Shared memory handles that are currently in use to transfer an image to
195 // the browser.
[email protected]176aa482008-11-14 03:25:15196 base::SharedMemory* current_paint_buf_;
197 base::SharedMemory* current_scroll_buf_;
initial.commit09911bf2008-07-26 23:55:29198
199 // The smallest bounding rectangle that needs to be re-painted. This is non-
200 // empty if a paint event is pending.
201 gfx::Rect paint_rect_;
202
203 // The clip rect for the pending scroll event. This is non-empty if a
204 // scroll event is pending.
205 gfx::Rect scroll_rect_;
206
[email protected]f21c613a2009-02-12 14:46:17207 // The area that must be reserved for drawing the resize corner.
208 gfx::Rect resizer_rect_;
209
initial.commit09911bf2008-07-26 23:55:29210 // The scroll delta for a pending scroll event.
211 gfx::Point scroll_delta_;
212
213 // Flags for the next ViewHostMsg_PaintRect message.
214 int next_paint_flags_;
215
216 // True if we are expecting a PaintRect_ACK message (i.e., that a PaintRect
217 // message has been sent).
218 bool paint_reply_pending_;
219
220 // Set to true if we should ignore RenderWidget::Show calls.
221 bool did_show_;
222
223 // Indicates that we shouldn't bother generated paint events.
224 bool is_hidden_;
225
226 // Indicates that we should be repainted when restored. This flag is set to
227 // true if we receive an invalidation / scroll event from webkit while our
228 // is_hidden_ flag is set to true. This is used to force a repaint once we
229 // restore to account for the fact that our host would not know about the
230 // invalidation / scroll event(s) from webkit while we are hidden.
231 bool needs_repainting_on_restore_;
232
233 // Indicates whether we have been focused/unfocused by the browser.
234 bool has_focus_;
235
236 // True if we have requested this widget be closed. No more messages will
237 // be sent, except for a Close.
238 bool closing_;
239
240 // Represents whether or not the IME of a browser process is active.
241 bool ime_is_active_;
242
243 // Represents the status of the selected edit control sent to a browser
244 // process last time.
245 // When a renderer process finishes rendering a region, it retrieves:
246 // * The identifier of the selected edit control;
247 // * Whether or not the selected edit control requires IME, and;
248 // * The position of the caret (or cursor).
249 // If the above values is updated, a renderer process sends an IPC message
250 // to a browser process. A browser process uses these values to
251 // activate/deactivate IME and set the position of IME windows.
252 bool ime_control_enable_ime_;
253 int ime_control_x_;
254 int ime_control_y_;
255 bool ime_control_new_state_;
256 bool ime_control_updated_;
[email protected]9f23f592008-11-17 08:36:34257 bool ime_control_busy_;
initial.commit09911bf2008-07-26 23:55:29258
[email protected]cfd727f2009-01-09 20:21:11259 // Whether the window for this RenderWidget can be activated.
260 bool activatable_;
[email protected]0ebf3872008-11-07 21:35:03261
initial.commit09911bf2008-07-26 23:55:29262 // Holds all the needed plugin window moves for a scroll.
263 std::vector<WebPluginGeometry> plugin_window_moves_;
264
265 DISALLOW_EVIL_CONSTRUCTORS(RenderWidget);
266};
267
[email protected]f21c613a2009-02-12 14:46:17268#endif // CHROME_RENDERER_RENDER_WIDGET_H__