Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ |
| 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 171 virtual ui::TextInputType GetTextInputType() const OVERRIDE; | 171 virtual ui::TextInputType GetTextInputType() const OVERRIDE; |
| 172 virtual gfx::Rect GetCaretBounds() OVERRIDE; | 172 virtual gfx::Rect GetCaretBounds() OVERRIDE; |
| 173 virtual bool HasCompositionText() OVERRIDE; | 173 virtual bool HasCompositionText() OVERRIDE; |
| 174 virtual bool GetTextRange(ui::Range* range) OVERRIDE; | 174 virtual bool GetTextRange(ui::Range* range) OVERRIDE; |
| 175 virtual bool GetCompositionTextRange(ui::Range* range) OVERRIDE; | 175 virtual bool GetCompositionTextRange(ui::Range* range) OVERRIDE; |
| 176 virtual bool GetSelectionRange(ui::Range* range) OVERRIDE; | 176 virtual bool GetSelectionRange(ui::Range* range) OVERRIDE; |
| 177 virtual bool SetSelectionRange(const ui::Range& range) OVERRIDE; | 177 virtual bool SetSelectionRange(const ui::Range& range) OVERRIDE; |
| 178 virtual bool DeleteRange(const ui::Range& range) OVERRIDE; | 178 virtual bool DeleteRange(const ui::Range& range) OVERRIDE; |
| 179 virtual bool GetTextFromRange( | 179 virtual bool GetTextFromRange( |
| 180 const ui::Range& range, | 180 const ui::Range& range, |
| 181 const base::Callback<void(const string16&)>& callback) OVERRIDE; | 181 string16* text, |
| 182 ui::Range* actual_range) OVERRIDE; | |
| 182 virtual void OnInputMethodChanged() OVERRIDE; | 183 virtual void OnInputMethodChanged() OVERRIDE; |
| 183 virtual bool ChangeTextDirectionAndLayoutAlignment( | 184 virtual bool ChangeTextDirectionAndLayoutAlignment( |
| 184 base::i18n::TextDirection direction) OVERRIDE; | 185 base::i18n::TextDirection direction) OVERRIDE; |
| 185 virtual views::View* GetOwnerViewOfTextInputClient() OVERRIDE; | 186 virtual views::View* GetOwnerViewOfTextInputClient() OVERRIDE; |
| 186 | 187 |
| 187 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) | 188 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) |
| 188 virtual void AcceleratedSurfaceNew( | 189 virtual void AcceleratedSurfaceNew( |
| 189 int32 width, | 190 int32 width, |
| 190 int32 height, | 191 int32 height, |
| 191 uint64* surface_id, | 192 uint64* surface_id, |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 286 // removed from the list on an ET_TOUCH_RELEASED event. | 287 // removed from the list on an ET_TOUCH_RELEASED event. |
| 287 WebKit::WebTouchEvent touch_event_; | 288 WebKit::WebTouchEvent touch_event_; |
| 288 | 289 |
| 289 // The current text input type. | 290 // The current text input type. |
| 290 ui::TextInputType text_input_type_; | 291 ui::TextInputType text_input_type_; |
| 291 | 292 |
| 292 string16 selection_text_; | 293 string16 selection_text_; |
| 293 size_t selection_text_offset_; | 294 size_t selection_text_offset_; |
| 294 ui::Range selection_range_; | 295 ui::Range selection_range_; |
| 295 gfx::Rect selection_start_rect_; | 296 gfx::Rect selection_start_rect_; |
| 296 gfx::Rect selection_end_rect_; | 297 gfx::Rect selection_end_rect_; |
|
James Su
2011/10/25 19:15:03
Can you please add some comment describing the mea
Peng
2011/10/25 22:01:21
Done.
| |
| 297 | 298 |
| 298 // Indicates if there is onging composition text. | 299 // Indicates if there is onging composition text. |
| 299 bool has_composition_text_; | 300 bool has_composition_text_; |
| 300 | 301 |
| 301 string16 tooltip_text_; | 302 string16 tooltip_text_; |
| 302 | 303 |
| 303 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) | 304 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) |
| 304 std::vector< base::Callback<void(void)> > on_compositing_ended_callbacks_; | 305 std::vector< base::Callback<void(void)> > on_compositing_ended_callbacks_; |
| 305 #endif | 306 #endif |
| 306 | 307 |
| 307 scoped_ptr<views::TouchSelectionController> touch_selection_controller_; | 308 scoped_ptr<views::TouchSelectionController> touch_selection_controller_; |
| 308 ScopedRunnableMethodFactory<RenderWidgetHostViewViews> | 309 ScopedRunnableMethodFactory<RenderWidgetHostViewViews> |
| 309 update_touch_selection_; | 310 update_touch_selection_; |
| 310 | 311 |
| 311 #if defined(TOUCH_UI) | 312 #if defined(TOUCH_UI) |
| 312 // used to register for keyboard visiblity notificatons. | 313 // used to register for keyboard visiblity notificatons. |
| 313 content::NotificationRegistrar registrar_; | 314 content::NotificationRegistrar registrar_; |
| 314 gfx::Rect keyboard_rect_; | 315 gfx::Rect keyboard_rect_; |
| 315 #endif | 316 #endif |
| 316 | 317 |
| 317 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) | 318 #if defined(UI_COMPOSITOR_IMAGE_TRANSPORT) |
| 318 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> > | 319 std::map<uint64, scoped_refptr<AcceleratedSurfaceContainerLinux> > |
| 319 accelerated_surface_containers_; | 320 accelerated_surface_containers_; |
| 320 #endif | 321 #endif |
| 321 | 322 |
| 322 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews); | 323 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewViews); |
| 323 }; | 324 }; |
| 324 | 325 |
| 325 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ | 326 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_VIEWS_H_ |
| OLD | NEW |