1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
// Copyright (c) 2011 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.
#include "ash/drag_drop/drag_drop_controller.h"
#include "ash/drag_drop/drag_image_view.h"
#include "base/message_loop.h"
#include "ui/aura/client/drag_drop_delegate.h"
#include "ui/aura/root_window.h"
#include "ui/aura/window.h"
#include "ui/aura_shell/shell.h"
#include "ui/base/dragdrop/drag_drop_types.h"
#include "ui/base/dragdrop/os_exchange_data_provider_aura.h"
#include "ui/gfx/point.h"
#include "ui/gfx/rect.h"
#include "ui/views/widget/native_widget_aura.h"
namespace aura_shell {
namespace internal {
using aura::RootWindow;
namespace {
const gfx::Point kDragDropWidgetOffset(0, 0);
}
////////////////////////////////////////////////////////////////////////////////
// DragDropController, public:
DragDropController::DragDropController()
: aura::EventFilter(RootWindow::GetInstance()),
drag_image_(NULL),
drag_data_(NULL),
drag_operation_(0),
dragged_window_(NULL),
drag_drop_in_progress_(false),
should_block_during_drag_drop_(true) {
Shell::GetInstance()->AddRootWindowEventFilter(this);
aura::client::SetDragDropClient(this);
}
DragDropController::~DragDropController() {
Shell::GetInstance()->RemoveRootWindowEventFilter(this);
Cleanup();
}
int DragDropController::StartDragAndDrop(const ui::OSExchangeData& data,
int operation) {
DCHECK(!drag_drop_in_progress_);
aura::Window* capture_window = RootWindow::GetInstance()->capture_window();
if (capture_window)
RootWindow::GetInstance()->ReleaseCapture(capture_window);
drag_drop_in_progress_ = true;
drag_data_ = &data;
drag_operation_ = operation;
gfx::Point location = RootWindow::GetInstance()->last_mouse_location();
const ui::OSExchangeDataProviderAura& provider =
static_cast<const ui::OSExchangeDataProviderAura&>(data.provider());
drag_image_.reset(new DragImageView);
drag_image_->SetImage(provider.drag_image());
drag_image_->SetScreenBounds(gfx::Rect(location.Add(kDragDropWidgetOffset),
drag_image_->GetPreferredSize()));
drag_image_->SetWidgetVisible(true);
dragged_window_ = NULL;
if (should_block_during_drag_drop_) {
MessageLoopForUI::current()->RunWithDispatcher(
RootWindow::GetInstance()->GetDispatcher());
}
return drag_operation_;
}
void DragDropController::DragUpdate(aura::Window* target,
const aura::MouseEvent& event) {
aura::client::DragDropDelegate* delegate = NULL;
if (target != dragged_window_) {
if (dragged_window_ &&
(delegate = aura::client::GetDragDropDelegate(dragged_window_))) {
delegate->OnDragExited();
}
dragged_window_ = target;
if ((delegate = aura::client::GetDragDropDelegate(dragged_window_))) {
aura::DropTargetEvent e(*drag_data_, event.location(), drag_operation_);
delegate->OnDragEntered(e);
}
} else {
if ((delegate = aura::client::GetDragDropDelegate(dragged_window_))) {
aura::DropTargetEvent e(*drag_data_, event.location(), drag_operation_);
int op = delegate->OnDragUpdated(e);
gfx::NativeCursor cursor = (op == ui::DragDropTypes::DRAG_NONE)?
aura::kCursorMove : aura::kCursorHand;
RootWindow::GetInstance()->SetCursor(cursor);
}
}
DCHECK(drag_image_.get());
if (drag_image_->visible()) {
drag_image_->SetScreenPosition(RootWindow::GetInstance()->
last_mouse_location().Add(kDragDropWidgetOffset));
}
}
void DragDropController::Drop(aura::Window* target,
const aura::MouseEvent& event) {
aura::client::DragDropDelegate* delegate = NULL;
DCHECK(target == dragged_window_);
if ((delegate = aura::client::GetDragDropDelegate(dragged_window_))) {
aura::DropTargetEvent e(*drag_data_, event.location(), drag_operation_);
drag_operation_ = delegate->OnPerformDrop(e);
// TODO(varunjain): if drag_op is 0, do drag widget flying back animation
}
Cleanup();
if (should_block_during_drag_drop_)
MessageLoop::current()->Quit();
}
void DragDropController::DragCancel() {
// TODO(varunjain): Do drag widget flying back animation
Cleanup();
drag_operation_ = 0;
if (should_block_during_drag_drop_)
MessageLoop::current()->Quit();
}
bool DragDropController::IsDragDropInProgress() {
return drag_drop_in_progress_;
}
bool DragDropController::PreHandleKeyEvent(aura::Window* target,
aura::KeyEvent* event) {
return false;
}
bool DragDropController::PreHandleMouseEvent(aura::Window* target,
aura::MouseEvent* event) {
if (!drag_drop_in_progress_)
return false;
switch (event->type()) {
case ui::ET_MOUSE_DRAGGED:
DragUpdate(target, *event);
break;
case ui::ET_MOUSE_RELEASED:
Drop(target, *event);
break;
case ui::ET_MOUSE_EXITED:
DragCancel();
break;
default:
NOTREACHED();
break;
}
return true;
}
ui::TouchStatus DragDropController::PreHandleTouchEvent(
aura::Window* target,
aura::TouchEvent* event) {
return ui::TOUCH_STATUS_UNKNOWN;
}
////////////////////////////////////////////////////////////////////////////////
// DragDropController, private:
void DragDropController::Cleanup() {
drag_image_.reset();
drag_data_ = NULL;
drag_drop_in_progress_ = false;
}
} // namespace internal
} // namespace aura_shell
|