OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_RENDERER_RENDER_WIDGET_H__ | 5 #ifndef CHROME_RENDERER_RENDER_WIDGET_H__ |
6 #define CHROME_RENDERER_RENDER_WIDGET_H__ | 6 #define CHROME_RENDERER_RENDER_WIDGET_H__ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/gfx/native_widget_types.h" | 10 #include "base/gfx/native_widget_types.h" |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 // IPC::Message::Sender | 63 // IPC::Message::Sender |
64 virtual bool Send(IPC::Message* msg); | 64 virtual bool Send(IPC::Message* msg); |
65 | 65 |
66 // WebWidgetDelegate | 66 // WebWidgetDelegate |
67 virtual gfx::NativeViewId GetContainingView(WebWidget* webwidget); | 67 virtual gfx::NativeViewId GetContainingView(WebWidget* webwidget); |
68 virtual void DidInvalidateRect(WebWidget* webwidget, const gfx::Rect& rect); | 68 virtual void DidInvalidateRect(WebWidget* webwidget, const gfx::Rect& rect); |
69 virtual void DidScrollRect(WebWidget* webwidget, int dx, int dy, | 69 virtual void DidScrollRect(WebWidget* webwidget, int dx, int dy, |
70 const gfx::Rect& clip_rect); | 70 const gfx::Rect& clip_rect); |
71 virtual void SetCursor(WebWidget* webwidget, const WebCursor& cursor); | 71 virtual void SetCursor(WebWidget* webwidget, const WebCursor& cursor); |
72 virtual void Show(WebWidget* webwidget, WindowOpenDisposition disposition); | 72 virtual void Show(WebWidget* webwidget, WindowOpenDisposition disposition); |
| 73 virtual void ShowWithItems(WebWidget* webwidget, |
| 74 const gfx::Rect& bounds, |
| 75 int item_height, |
| 76 int selected_index, |
| 77 const std::vector<MenuItem>& items); |
73 virtual void CloseWidgetSoon(WebWidget* webwidget); | 78 virtual void CloseWidgetSoon(WebWidget* webwidget); |
74 virtual void Focus(WebWidget* webwidget); | 79 virtual void Focus(WebWidget* webwidget); |
75 virtual void Blur(WebWidget* webwidget); | 80 virtual void Blur(WebWidget* webwidget); |
76 virtual void GetWindowRect(WebWidget* webwidget, gfx::Rect* rect); | 81 virtual void GetWindowRect(WebWidget* webwidget, gfx::Rect* rect); |
77 virtual void SetWindowRect(WebWidget* webwidget, const gfx::Rect& rect); | 82 virtual void SetWindowRect(WebWidget* webwidget, const gfx::Rect& rect); |
78 virtual void GetRootWindowRect(WebWidget* webwidget, gfx::Rect* rect); | 83 virtual void GetRootWindowRect(WebWidget* webwidget, gfx::Rect* rect); |
79 virtual void GetRootWindowResizerRect(WebWidget* webwidget, gfx::Rect* rect); | 84 virtual void GetRootWindowResizerRect(WebWidget* webwidget, gfx::Rect* rect); |
80 virtual void DidMove(WebWidget* webwidget, const WebPluginGeometry& move); | 85 virtual void DidMove(WebWidget* webwidget, const WebPluginGeometry& move); |
81 virtual void RunModal(WebWidget* webwidget) {} | 86 virtual void RunModal(WebWidget* webwidget) {} |
82 virtual bool IsHidden() { return is_hidden_; } | 87 virtual bool IsHidden(WebWidget* webwidget) { return is_hidden_; } |
83 virtual void ShowWithItems(WebWidget* webwidget, | 88 virtual WebKit::WebScreenInfo GetScreenInfo(WebWidget* webwidget); |
84 const gfx::Rect& bounds, | |
85 int item_height, | |
86 int selected_index, | |
87 const std::vector<MenuItem>& items); | |
88 | 89 |
89 // Close the underlying WebWidget. | 90 // Close the underlying WebWidget. |
90 void Close(); | 91 void Close(); |
91 | 92 |
92 protected: | 93 protected: |
93 // Friend RefCounted so that the dtor can be non-public. Using this class | 94 // Friend RefCounted so that the dtor can be non-public. Using this class |
94 // without ref-counting is an error. | 95 // without ref-counting is an error. |
95 friend class base::RefCounted<RenderWidget>; | 96 friend class base::RefCounted<RenderWidget>; |
96 | 97 |
97 RenderWidget(RenderThreadBase* render_thread, bool activatable); | 98 RenderWidget(RenderThreadBase* render_thread, bool activatable); |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 // Whether the window for this RenderWidget can be activated. | 262 // Whether the window for this RenderWidget can be activated. |
262 bool activatable_; | 263 bool activatable_; |
263 | 264 |
264 // Holds all the needed plugin window moves for a scroll. | 265 // Holds all the needed plugin window moves for a scroll. |
265 std::vector<WebPluginGeometry> plugin_window_moves_; | 266 std::vector<WebPluginGeometry> plugin_window_moves_; |
266 | 267 |
267 DISALLOW_EVIL_CONSTRUCTORS(RenderWidget); | 268 DISALLOW_EVIL_CONSTRUCTORS(RenderWidget); |
268 }; | 269 }; |
269 | 270 |
270 #endif // CHROME_RENDERER_RENDER_WIDGET_H__ | 271 #endif // CHROME_RENDERER_RENDER_WIDGET_H__ |
OLD | NEW |