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 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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/memory/scoped_vector.h" | 9 #include "base/memory/scoped_vector.h" |
10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 virtual gfx::Size GetMinimumSize() const OVERRIDE; | 124 virtual gfx::Size GetMinimumSize() const OVERRIDE; |
125 virtual void OnBoundsChanged(const gfx::Rect& old_bounds, | 125 virtual void OnBoundsChanged(const gfx::Rect& old_bounds, |
126 const gfx::Rect& new_bounds) OVERRIDE; | 126 const gfx::Rect& new_bounds) OVERRIDE; |
127 virtual void OnFocus() OVERRIDE; | 127 virtual void OnFocus() OVERRIDE; |
128 virtual void OnBlur() OVERRIDE; | 128 virtual void OnBlur() OVERRIDE; |
129 virtual bool OnKeyEvent(aura::KeyEvent* event) OVERRIDE; | 129 virtual bool OnKeyEvent(aura::KeyEvent* event) OVERRIDE; |
130 virtual gfx::NativeCursor GetCursor(const gfx::Point& point) OVERRIDE; | 130 virtual gfx::NativeCursor GetCursor(const gfx::Point& point) OVERRIDE; |
131 virtual int GetNonClientComponent(const gfx::Point& point) const OVERRIDE; | 131 virtual int GetNonClientComponent(const gfx::Point& point) const OVERRIDE; |
132 virtual bool OnMouseEvent(aura::MouseEvent* event) OVERRIDE; | 132 virtual bool OnMouseEvent(aura::MouseEvent* event) OVERRIDE; |
133 virtual ui::TouchStatus OnTouchEvent(aura::TouchEvent* event) OVERRIDE; | 133 virtual ui::TouchStatus OnTouchEvent(aura::TouchEvent* event) OVERRIDE; |
| 134 virtual bool CanFocus() OVERRIDE; |
134 virtual bool ShouldActivate(aura::Event* event) OVERRIDE; | 135 virtual bool ShouldActivate(aura::Event* event) OVERRIDE; |
135 virtual void OnActivated() OVERRIDE; | 136 virtual void OnActivated() OVERRIDE; |
136 virtual void OnLostActive() OVERRIDE; | 137 virtual void OnLostActive() OVERRIDE; |
137 virtual void OnCaptureLost() OVERRIDE; | 138 virtual void OnCaptureLost() OVERRIDE; |
138 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; | 139 virtual void OnPaint(gfx::Canvas* canvas) OVERRIDE; |
139 virtual void OnWindowDestroying() OVERRIDE; | 140 virtual void OnWindowDestroying() OVERRIDE; |
140 virtual void OnWindowDestroyed() OVERRIDE; | 141 virtual void OnWindowDestroyed() OVERRIDE; |
141 virtual void OnWindowVisibilityChanged(bool visible) OVERRIDE; | 142 virtual void OnWindowVisibilityChanged(bool visible) OVERRIDE; |
142 | 143 |
143 // Overridden from aura::WindowDragDropDelegate: | 144 // Overridden from aura::WindowDragDropDelegate: |
(...skipping 29 matching lines...) Expand all Loading... |
173 scoped_ptr<DesktopObserverImpl> desktop_observer_; | 174 scoped_ptr<DesktopObserverImpl> desktop_observer_; |
174 | 175 |
175 scoped_ptr<DropHelper> drop_helper_; | 176 scoped_ptr<DropHelper> drop_helper_; |
176 | 177 |
177 DISALLOW_COPY_AND_ASSIGN(NativeWidgetAura); | 178 DISALLOW_COPY_AND_ASSIGN(NativeWidgetAura); |
178 }; | 179 }; |
179 | 180 |
180 } // namespace views | 181 } // namespace views |
181 | 182 |
182 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ | 183 #endif // UI_VIEWS_WIDGET_NATIVE_WIDGET_AURA_H_ |
OLD | NEW |