Chromium Code Reviews| Index: ash/wm/overview/overview_window_drag_controller.h |
| diff --git a/ash/wm/overview/overview_window_drag_controller.h b/ash/wm/overview/overview_window_drag_controller.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..551b9fbf4c7eb697209347829bf6af8854a38473 |
| --- /dev/null |
| +++ b/ash/wm/overview/overview_window_drag_controller.h |
| @@ -0,0 +1,67 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef ASH_WM_OVERVIEW_OVERVIEW_WINDOW_DRAG_CONTROLLER_H_ |
| +#define ASH_WM_OVERVIEW_OVERVIEW_WINDOW_DRAG_CONTROLLER_H_ |
| + |
| +#include <memory> |
| + |
| +#include "ash/ash_export.h" |
| +#include "ash/wm/splitview/split_view_controller.h" |
| +#include "base/macros.h" |
| +#include "ui/gfx/geometry/point.h" |
| + |
| +namespace ash { |
| + |
| +class PhantomWindowController; |
| +class WindowSelector; |
| +class WindowSelectorItem; |
| + |
| +// The drag controller for an overview window item in overview mode. It updates |
| +// the position of the corresponding window item using transform while dragging |
| +// and shows/hides the phantom window accordingly. |
| +class ASH_EXPORT OverviewWindowDragController { |
| + public: |
| + explicit OverviewWindowDragController(WindowSelector* window_selector); |
| + ~OverviewWindowDragController(); |
| + |
| + void InitiateDrag(WindowSelectorItem* item, |
| + const gfx::Point& location_in_screen); |
| + void Drag(const gfx::Point& location_in_screen); |
| + void CompleteDrag(); |
| + |
| + WindowSelectorItem* item() { return item_; } |
| + |
| + private: |
| + void UpdatePhantomWindow(const gfx::Point& location_in_screen); |
| + |
| + SplitViewController::SnapPosition GetSnapPosition( |
| + const gfx::Point& location_in_screen); |
|
oshima
2017/07/14 18:43:11
nit: const?
xdai1
2017/07/18 17:36:44
Done.
|
| + |
| + void SnapWindow(SplitViewController::SnapPosition snap_position); |
| + |
| + WindowSelector* window_selector_; |
| + |
| + SplitViewController* split_view_controller_; |
| + |
| + // Shows a highlight of where the dragged window will end up. |
| + std::unique_ptr<PhantomWindowController> phantom_window_controller_; |
| + |
| + // The drag target window in the overview mode. |
| + WindowSelectorItem* item_ = nullptr; |
| + |
| + // The location of the previous mouse/touch/gesture event in screen. |
| + gfx::Point previous_event_location_; |
| + |
| + // Set to true once the bounds of |item_| change. |
| + bool did_move_ = false; |
| + |
| + SplitViewController::SnapPosition snap_position_ = SplitViewController::NONE; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(OverviewWindowDragController); |
| +}; |
| + |
| +} // namespace ash |
| + |
| +#endif // ASH_WM_OVERVIEW_OVERVIEW_WINDOW_DRAG_CONTROLLER_H_ |