| 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_WIDGET_ROOT_VIEW_H_ | 5 #ifndef UI_VIEWS_WIDGET_ROOT_VIEW_H_ |
| 6 #define UI_VIEWS_WIDGET_ROOT_VIEW_H_ | 6 #define UI_VIEWS_WIDGET_ROOT_VIEW_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 const char* GetClassName() const override; | 109 const char* GetClassName() const override; |
| 110 void SchedulePaintInRect(const gfx::Rect& rect) override; | 110 void SchedulePaintInRect(const gfx::Rect& rect) override; |
| 111 bool OnMousePressed(const ui::MouseEvent& event) override; | 111 bool OnMousePressed(const ui::MouseEvent& event) override; |
| 112 bool OnMouseDragged(const ui::MouseEvent& event) override; | 112 bool OnMouseDragged(const ui::MouseEvent& event) override; |
| 113 void OnMouseReleased(const ui::MouseEvent& event) override; | 113 void OnMouseReleased(const ui::MouseEvent& event) override; |
| 114 void OnMouseCaptureLost() override; | 114 void OnMouseCaptureLost() override; |
| 115 void OnMouseMoved(const ui::MouseEvent& event) override; | 115 void OnMouseMoved(const ui::MouseEvent& event) override; |
| 116 void OnMouseExited(const ui::MouseEvent& event) override; | 116 void OnMouseExited(const ui::MouseEvent& event) override; |
| 117 bool OnMouseWheel(const ui::MouseWheelEvent& event) override; | 117 bool OnMouseWheel(const ui::MouseWheelEvent& event) override; |
| 118 void SetMouseHandler(View* new_mouse_handler) override; | 118 void SetMouseHandler(View* new_mouse_handler) override; |
| 119 void GetAccessibleState(ui::AXViewState* state) override; | 119 void GetAccessibleNodeData(ui::AXNodeData* node_data) override; |
| 120 void UpdateParentLayer() override; | 120 void UpdateParentLayer() override; |
| 121 | 121 |
| 122 protected: | 122 protected: |
| 123 // Overridden from View: | 123 // Overridden from View: |
| 124 void ViewHierarchyChanged( | 124 void ViewHierarchyChanged( |
| 125 const ViewHierarchyChangedDetails& details) override; | 125 const ViewHierarchyChangedDetails& details) override; |
| 126 void VisibilityChanged(View* starting_from, bool is_visible) override; | 126 void VisibilityChanged(View* starting_from, bool is_visible) override; |
| 127 void OnPaint(gfx::Canvas* canvas) override; | 127 void OnPaint(gfx::Canvas* canvas) override; |
| 128 gfx::Vector2d CalculateOffsetToAncestorWithLayer( | 128 gfx::Vector2d CalculateOffsetToAncestorWithLayer( |
| 129 ui::Layer** layer_parent) override; | 129 ui::Layer** layer_parent) override; |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 // Tracks drag state for a view. | 233 // Tracks drag state for a view. |
| 234 View::DragInfo drag_info_; | 234 View::DragInfo drag_info_; |
| 235 | 235 |
| 236 DISALLOW_IMPLICIT_CONSTRUCTORS(RootView); | 236 DISALLOW_IMPLICIT_CONSTRUCTORS(RootView); |
| 237 }; | 237 }; |
| 238 | 238 |
| 239 } // namespace internal | 239 } // namespace internal |
| 240 } // namespace views | 240 } // namespace views |
| 241 | 241 |
| 242 #endif // UI_VIEWS_WIDGET_ROOT_VIEW_H_ | 242 #endif // UI_VIEWS_WIDGET_ROOT_VIEW_H_ |
| OLD | NEW |