OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 UI_VIEWS_CONTROLS_TEXTFIELD_NATIVE_TEXTFIELD_VIEWS_H_ | 5 #ifndef UI_VIEWS_CONTROLS_TEXTFIELD_NATIVE_TEXTFIELD_VIEWS_H_ |
6 #define UI_VIEWS_CONTROLS_TEXTFIELD_NATIVE_TEXTFIELD_VIEWS_H_ | 6 #define UI_VIEWS_CONTROLS_TEXTFIELD_NATIVE_TEXTFIELD_VIEWS_H_ |
7 | 7 |
8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
9 #include "base/string16.h" | 9 #include "base/string16.h" |
10 #include "ui/base/events.h" | 10 #include "ui/base/events.h" |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 public TextfieldViewsModel::Delegate { | 49 public TextfieldViewsModel::Delegate { |
50 public: | 50 public: |
51 explicit NativeTextfieldViews(Textfield* parent); | 51 explicit NativeTextfieldViews(Textfield* parent); |
52 virtual ~NativeTextfieldViews(); | 52 virtual ~NativeTextfieldViews(); |
53 | 53 |
54 // View overrides: | 54 // View overrides: |
55 virtual gfx::NativeCursor GetCursor(const ui::MouseEvent& event) OVERRIDE; | 55 virtual gfx::NativeCursor GetCursor(const ui::MouseEvent& event) OVERRIDE; |
56 virtual bool OnMousePressed(const ui::MouseEvent& event) OVERRIDE; | 56 virtual bool OnMousePressed(const ui::MouseEvent& event) OVERRIDE; |
57 virtual bool OnMouseDragged(const ui::MouseEvent& event) OVERRIDE; | 57 virtual bool OnMouseDragged(const ui::MouseEvent& event) OVERRIDE; |
58 virtual void OnMouseReleased(const ui::MouseEvent& event) OVERRIDE; | 58 virtual void OnMouseReleased(const ui::MouseEvent& event) OVERRIDE; |
59 virtual ui::GestureStatus OnGestureEvent(const GestureEvent& event) OVERRIDE; | 59 virtual ui::GestureStatus OnGestureEvent( |
| 60 const ui::GestureEvent& event) OVERRIDE; |
60 virtual bool OnKeyPressed(const ui::KeyEvent& event) OVERRIDE; | 61 virtual bool OnKeyPressed(const ui::KeyEvent& event) OVERRIDE; |
61 virtual bool GetDropFormats( | 62 virtual bool GetDropFormats( |
62 int* formats, | 63 int* formats, |
63 std::set<ui::OSExchangeData::CustomFormat>* custom_formats) OVERRIDE; | 64 std::set<ui::OSExchangeData::CustomFormat>* custom_formats) OVERRIDE; |
64 virtual bool CanDrop(const ui::OSExchangeData& data) OVERRIDE; | 65 virtual bool CanDrop(const ui::OSExchangeData& data) OVERRIDE; |
65 virtual int OnDragUpdated(const DropTargetEvent& event) OVERRIDE; | 66 virtual int OnDragUpdated(const ui::DropTargetEvent& event) OVERRIDE; |
66 virtual int OnPerformDrop(const DropTargetEvent& event) OVERRIDE; | 67 virtual int OnPerformDrop(const ui::DropTargetEvent& event) OVERRIDE; |
67 virtual void OnDragDone() OVERRIDE; | 68 virtual void OnDragDone() OVERRIDE; |
68 virtual bool OnKeyReleased(const ui::KeyEvent& event) OVERRIDE; | 69 virtual bool OnKeyReleased(const ui::KeyEvent& event) OVERRIDE; |
69 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; | 70 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; |
70 virtual void OnFocus() OVERRIDE; | 71 virtual void OnFocus() OVERRIDE; |
71 virtual void OnBlur() OVERRIDE; | 72 virtual void OnBlur() OVERRIDE; |
72 | 73 |
73 // TouchSelectionClientView overrides: | 74 // TouchSelectionClientView overrides: |
74 virtual void SelectRect(const gfx::Point& start, | 75 virtual void SelectRect(const gfx::Point& start, |
75 const gfx::Point& end) OVERRIDE; | 76 const gfx::Point& end) OVERRIDE; |
76 | 77 |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 scoped_ptr<views::MenuRunner> context_menu_runner_; | 282 scoped_ptr<views::MenuRunner> context_menu_runner_; |
282 | 283 |
283 scoped_ptr<TouchSelectionController> touch_selection_controller_; | 284 scoped_ptr<TouchSelectionController> touch_selection_controller_; |
284 | 285 |
285 DISALLOW_COPY_AND_ASSIGN(NativeTextfieldViews); | 286 DISALLOW_COPY_AND_ASSIGN(NativeTextfieldViews); |
286 }; | 287 }; |
287 | 288 |
288 } // namespace views | 289 } // namespace views |
289 | 290 |
290 #endif // UI_VIEWS_CONTROLS_TEXTFIELD_NATIVE_TEXTFIELD_VIEWS_H_ | 291 #endif // UI_VIEWS_CONTROLS_TEXTFIELD_NATIVE_TEXTFIELD_VIEWS_H_ |
OLD | NEW |