Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1767)

Unified Diff: ash/wm/drag_window_resizer.h

Issue 11411344: Extract the code for supporing extended desktop from WorkspaceWindowResizer into DragWindowResizer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix win_aura error Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/wm/drag_window_controller.h ('k') | ash/wm/drag_window_resizer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/drag_window_resizer.h
diff --git a/ash/wm/drag_window_resizer.h b/ash/wm/drag_window_resizer.h
new file mode 100644
index 0000000000000000000000000000000000000000..3705bac55c736dfa0a76197153c39694671cd9fb
--- /dev/null
+++ b/ash/wm/drag_window_resizer.h
@@ -0,0 +1,77 @@
+// Copyright (c) 2012 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_DRAG_WINDOW_RESIZER_H_
+#define ASH_WM_DRAG_WINDOW_RESIZER_H_
+
+#include "ash/wm/window_resizer.h"
+#include "base/compiler_specific.h"
+#include "base/gtest_prod_util.h"
+#include "ui/gfx/point.h"
+
+namespace ash {
+namespace internal {
+
+class DragWindowController;
+
+// DragWindowResizer is a decorator of WindowResizer and adds the ability to
+// drag windows across displays.
+class ASH_EXPORT DragWindowResizer : public WindowResizer {
+ public:
+ virtual ~DragWindowResizer();
+
+ // Creates a new DragWindowResizer. The caller takes ownership of the
+ // returned object. The ownership of |window_resizer| is taken by the
+ // returned object. Returns NULL if not resizable.
+ static DragWindowResizer* Create(WindowResizer* window_resizer,
+ aura::Window* window,
+ const gfx::Point& location,
+ int window_component);
+
+ // WindowResizer overides:
+ virtual void Drag(const gfx::Point& location, int event_flags) OVERRIDE;
+ virtual void CompleteDrag(int event_flags) OVERRIDE;
+ virtual void RevertDrag() OVERRIDE;
+ virtual aura::Window* GetTarget() OVERRIDE;
+
+ const gfx::Point& GetInitialLocationInParentForTest() const {
+ return details_.initial_location_in_parent;
+ }
+
+ private:
+ FRIEND_TEST_ALL_PREFIXES(DragWindowResizerTest, DragWindowController);
+
+ // Creates DragWindowResizer that adds the ability of dragging windows across
+ // displays to |window_resizer|. This object takes the ownership of
+ // |window_resizer|.
+ explicit DragWindowResizer(WindowResizer* window_resizer,
+ const Details& details);
+
+ // Updates the bounds of the phantom window for window dragging. Set true on
+ // |in_original_root| if the pointer is still in |window()->GetRootWindow()|.
+ void UpdateDragWindow(const gfx::Rect& bounds, bool in_original_root);
+
+ // Returns true if we should allow the mouse pointer to warp.
+ bool ShouldAllowMouseWarp();
+
+ scoped_ptr<WindowResizer> window_resizer_;
+
+ // Shows a semi-transparent image of the window being dragged.
+ scoped_ptr<DragWindowController> drag_window_controller_;
+
+ const Details details_;
+
+ gfx::Point last_mouse_location_;
+
+ // If non-NULL the destructor sets this to true. Used to determine if this has
+ // been deleted.
+ bool* destroyed_;
+
+ DISALLOW_COPY_AND_ASSIGN(DragWindowResizer);
+};
+
+} // namespace internal
+} // namespace aura
+
+#endif // ASH_WM_DRAG_WINDOW_RESIZER_H_
« no previous file with comments | « ash/wm/drag_window_controller.h ('k') | ash/wm/drag_window_resizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698