| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 ASH_SHELF_SHELF_WINDOW_TARGETER_H_ | 5 #ifndef ASH_SHELF_SHELF_WINDOW_TARGETER_H_ |
| 6 #define ASH_SHELF_SHELF_WINDOW_TARGETER_H_ | 6 #define ASH_SHELF_SHELF_WINDOW_TARGETER_H_ |
| 7 | 7 |
| 8 #include "ash/common/shelf/wm_shelf_observer.h" | 8 #include "ash/common/shelf/wm_shelf_observer.h" |
| 9 #include "ash/common/wm_window_observer.h" | |
| 10 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "ui/aura/window_observer.h" |
| 11 #include "ui/wm/core/easy_resize_window_targeter.h" | 11 #include "ui/wm/core/easy_resize_window_targeter.h" |
| 12 | 12 |
| 13 namespace ash { | 13 namespace ash { |
| 14 | 14 |
| 15 class WmShelf; | 15 class WmShelf; |
| 16 class WmWindow; |
| 16 | 17 |
| 17 // ShelfWindowTargeter makes it easier to resize windows with the mouse when the | 18 // ShelfWindowTargeter makes it easier to resize windows with the mouse when the |
| 18 // window-edge slightly overlaps with the shelf edge. The targeter also makes it | 19 // window-edge slightly overlaps with the shelf edge. The targeter also makes it |
| 19 // easier to drag the shelf out with touch while it is hidden. | 20 // easier to drag the shelf out with touch while it is hidden. |
| 20 class ShelfWindowTargeter : public ::wm::EasyResizeWindowTargeter, | 21 class ShelfWindowTargeter : public ::wm::EasyResizeWindowTargeter, |
| 21 public WmWindowObserver, | 22 public aura::WindowObserver, |
| 22 public WmShelfObserver { | 23 public WmShelfObserver { |
| 23 public: | 24 public: |
| 24 ShelfWindowTargeter(WmWindow* container, WmShelf* shelf); | 25 ShelfWindowTargeter(WmWindow* container, WmShelf* shelf); |
| 25 ~ShelfWindowTargeter() override; | 26 ~ShelfWindowTargeter() override; |
| 26 | 27 |
| 27 private: | 28 private: |
| 28 // WmWindowObserver: | 29 // aura::WindowObserver: |
| 29 void OnWindowDestroying(WmWindow* window) override; | 30 void OnWindowDestroying(aura::Window* window) override; |
| 30 | 31 |
| 31 // WmShelfObserver: | 32 // WmShelfObserver: |
| 32 void WillChangeVisibilityState(ShelfVisibilityState new_state) override; | 33 void WillChangeVisibilityState(ShelfVisibilityState new_state) override; |
| 33 | 34 |
| 34 WmShelf* shelf_; | 35 WmShelf* shelf_; |
| 35 | 36 |
| 36 DISALLOW_COPY_AND_ASSIGN(ShelfWindowTargeter); | 37 DISALLOW_COPY_AND_ASSIGN(ShelfWindowTargeter); |
| 37 }; | 38 }; |
| 38 | 39 |
| 39 } // namespace ash | 40 } // namespace ash |
| 40 | 41 |
| 41 #endif // ASH_SHELF_SHELF_WINDOW_TARGETER_H_ | 42 #endif // ASH_SHELF_SHELF_WINDOW_TARGETER_H_ |
| OLD | NEW |