| 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_NATIVE_WIDGET_AURA_H_ | 5 #ifndef UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
| 6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ | 6 #define UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_vector.h" | 8 #include "base/memory/scoped_vector.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "ui/aura/client/activation_delegate.h" | 10 #include "ui/aura/client/activation_delegate.h" |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 | 128 |
| 129 // Overridden from views::InputMethodDelegate: | 129 // Overridden from views::InputMethodDelegate: |
| 130 virtual void DispatchKeyEventPostIME(const ui::KeyEvent& key) OVERRIDE; | 130 virtual void DispatchKeyEventPostIME(const ui::KeyEvent& key) OVERRIDE; |
| 131 | 131 |
| 132 // Overridden from aura::WindowDelegate: | 132 // Overridden from aura::WindowDelegate: |
| 133 virtual gfx::Size GetMinimumSize() const OVERRIDE; | 133 virtual gfx::Size GetMinimumSize() const OVERRIDE; |
| 134 virtual void OnBoundsChanged(const gfx::Rect& old_bounds, | 134 virtual void OnBoundsChanged(const gfx::Rect& old_bounds, |
| 135 const gfx::Rect& new_bounds) OVERRIDE; | 135 const gfx::Rect& new_bounds) OVERRIDE; |
| 136 virtual void OnFocus(aura::Window* old_focused_window) OVERRIDE; | 136 virtual void OnFocus(aura::Window* old_focused_window) OVERRIDE; |
| 137 virtual void OnBlur() OVERRIDE; | 137 virtual void OnBlur() OVERRIDE; |
| 138 virtual bool OnKeyEvent(ui::KeyEvent* event) OVERRIDE; | |
| 139 virtual gfx::NativeCursor GetCursor(const gfx::Point& point) OVERRIDE; | 138 virtual gfx::NativeCursor GetCursor(const gfx::Point& point) OVERRIDE; |
| 140 virtual int GetNonClientComponent(const gfx::Point& point) const OVERRIDE; | 139 virtual int GetNonClientComponent(const gfx::Point& point) const OVERRIDE; |
| 141 virtual bool ShouldDescendIntoChildForEventHandling( | 140 virtual bool ShouldDescendIntoChildForEventHandling( |
| 142 aura::Window* child, | 141 aura::Window* child, |
| 143 const gfx::Point& location) OVERRIDE; | 142 const gfx::Point& location) OVERRIDE; |
| 144 virtual bool OnMouseEvent(ui::MouseEvent* event) OVERRIDE; | |
| 145 virtual ui::TouchStatus OnTouchEvent(ui::TouchEvent* event) OVERRIDE; | |
| 146 virtual ui::EventResult OnGestureEvent( | |
| 147 ui::GestureEvent* event) OVERRIDE; | |
| 148 virtual bool CanFocus() OVERRIDE; | 143 virtual bool CanFocus() OVERRIDE; |
| 149 virtual void OnCaptureLost() OVERRIDE; | 144 virtual void OnCaptureLost() OVERRIDE; |
| 150 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; | 145 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; |
| 151 virtual void OnDeviceScaleFactorChanged(float device_scale_factor) OVERRIDE; | 146 virtual void OnDeviceScaleFactorChanged(float device_scale_factor) OVERRIDE; |
| 152 virtual void OnWindowDestroying() OVERRIDE; | 147 virtual void OnWindowDestroying() OVERRIDE; |
| 153 virtual void OnWindowDestroyed() OVERRIDE; | 148 virtual void OnWindowDestroyed() OVERRIDE; |
| 154 virtual void OnWindowTargetVisibilityChanged(bool visible) OVERRIDE; | 149 virtual void OnWindowTargetVisibilityChanged(bool visible) OVERRIDE; |
| 155 virtual bool HasHitTestMask() const OVERRIDE; | 150 virtual bool HasHitTestMask() const OVERRIDE; |
| 156 virtual void GetHitTestMask(gfx::Path* mask) const OVERRIDE; | 151 virtual void GetHitTestMask(gfx::Path* mask) const OVERRIDE; |
| 157 | 152 |
| 153 // Overridden from ui::EventHandler: |
| 154 virtual ui::EventResult OnKeyEvent(ui::KeyEvent* event) OVERRIDE; |
| 155 virtual ui::EventResult OnMouseEvent(ui::MouseEvent* event) OVERRIDE; |
| 156 virtual ui::TouchStatus OnTouchEvent(ui::TouchEvent* event) OVERRIDE; |
| 157 virtual ui::EventResult OnGestureEvent(ui::GestureEvent* event) OVERRIDE; |
| 158 |
| 158 // Overridden from aura::client::ActivationDelegate: | 159 // Overridden from aura::client::ActivationDelegate: |
| 159 virtual bool ShouldActivate(const ui::Event* event) OVERRIDE; | 160 virtual bool ShouldActivate(const ui::Event* event) OVERRIDE; |
| 160 virtual void OnActivated() OVERRIDE; | 161 virtual void OnActivated() OVERRIDE; |
| 161 virtual void OnLostActive() OVERRIDE; | 162 virtual void OnLostActive() OVERRIDE; |
| 162 | 163 |
| 163 // Overridden from aura::client::DragDropDelegate: | 164 // Overridden from aura::client::DragDropDelegate: |
| 164 virtual void OnDragEntered(const ui::DropTargetEvent& event) OVERRIDE; | 165 virtual void OnDragEntered(const ui::DropTargetEvent& event) OVERRIDE; |
| 165 virtual int OnDragUpdated(const ui::DropTargetEvent& event) OVERRIDE; | 166 virtual int OnDragUpdated(const ui::DropTargetEvent& event) OVERRIDE; |
| 166 virtual void OnDragExited() OVERRIDE; | 167 virtual void OnDragExited() OVERRIDE; |
| 167 virtual int OnPerformDrop(const ui::DropTargetEvent& event) OVERRIDE; | 168 virtual int OnPerformDrop(const ui::DropTargetEvent& event) OVERRIDE; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 | 207 |
| 207 scoped_ptr<DropHelper> drop_helper_; | 208 scoped_ptr<DropHelper> drop_helper_; |
| 208 int last_drop_operation_; | 209 int last_drop_operation_; |
| 209 | 210 |
| 210 DISALLOW_COPY_AND_ASSIGN(NativeWidgetAura); | 211 DISALLOW_COPY_AND_ASSIGN(NativeWidgetAura); |
| 211 }; | 212 }; |
| 212 | 213 |
| 213 } // namespace views | 214 } // namespace views |
| 214 | 215 |
| 215 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ | 216 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
| OLD | NEW |