blob: df13d15470bea45376a1576df37d4a1fe9757ecb (
plain)
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
|
// 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_DRAG_DROP_DRAG_DROP_CONTROLLER_H_
#define ASH_DRAG_DROP_DRAG_DROP_CONTROLLER_H_
#pragma once
#include "ash/ash_export.h"
#include "base/callback.h"
#include "ui/aura/client/drag_drop_client.h"
#include "ui/aura/event.h"
#include "ui/aura/event_filter.h"
#include "ui/aura/window_observer.h"
#include "ui/base/dragdrop/os_exchange_data.h"
#include "ui/base/events.h"
#include "ui/compositor/layer_animation_observer.h"
#include "ui/gfx/point.h"
namespace aura {
class Window;
}
namespace ui {
class LayerAnimationSequence;
}
namespace ash {
namespace test {
class DragDropControllerTest;
}
namespace internal {
class DragImageView;
class ASH_EXPORT DragDropController
: public aura::client::DragDropClient,
public aura::EventFilter,
public ui::ImplicitAnimationObserver,
public aura::WindowObserver {
public:
DragDropController();
virtual ~DragDropController();
void set_should_block_during_drag_drop(bool should_block_during_drag_drop) {
should_block_during_drag_drop_ = should_block_during_drag_drop;
}
// Overridden from aura::client::DragDropClient:
virtual int StartDragAndDrop(const ui::OSExchangeData& data,
const gfx::Point& root_location,
int operation) OVERRIDE;
virtual void DragUpdate(aura::Window* target,
const aura::LocatedEvent& event) OVERRIDE;
virtual void Drop(aura::Window* target,
const aura::LocatedEvent& event) OVERRIDE;
virtual void DragCancel() OVERRIDE;
virtual bool IsDragDropInProgress() OVERRIDE;
// Overridden from aura::EventFilter:
virtual bool PreHandleKeyEvent(aura::Window* target,
aura::KeyEvent* event) OVERRIDE;
virtual bool PreHandleMouseEvent(aura::Window* target,
aura::MouseEvent* event) OVERRIDE;
virtual ui::TouchStatus PreHandleTouchEvent(aura::Window* target,
aura::TouchEvent* event) OVERRIDE;
virtual ui::GestureStatus PreHandleGestureEvent(
aura::Window* target,
aura::GestureEvent* event) OVERRIDE;
// Overridden from aura::WindowObserver.
virtual void OnWindowDestroyed(aura::Window* window) OVERRIDE;
private:
friend class ash::test::DragDropControllerTest;
// Implementation of ImplicitAnimationObserver
virtual void OnImplicitAnimationsCompleted() OVERRIDE;
// Helper method to start drag widget flying back animation.
void StartCanceledAnimation();
// Helper method to reset everything.
void Cleanup();
scoped_ptr<DragImageView> drag_image_;
gfx::Point drag_image_offset_;
const ui::OSExchangeData* drag_data_;
int drag_operation_;
// Window that is currently under the drag cursor.
aura::Window* drag_window_;
gfx::Point drag_start_location_;
bool drag_drop_in_progress_;
// Indicates whether the caller should be blocked on a drag/drop session.
// Only be used for tests.
bool should_block_during_drag_drop_;
// Closure for quitting nested message loop.
base::Closure quit_closure_;
DISALLOW_COPY_AND_ASSIGN(DragDropController);
};
} // namespace internal
} // namespace ash
#endif // ASH_DRAG_DROP_DRAG_DROP_CONTROLLER_H_
|