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
|
// 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 "views/events/event.h"
#include "views/view.h"
#include "views/widget/root_view.h"
namespace views {
////////////////////////////////////////////////////////////////////////////////
// Event, protected:
Event::Event(ui::EventType type, int flags)
: type_(type),
time_stamp_(base::Time::NowFromSystemTime()),
flags_(flags) {
Init();
}
Event::Event(NativeEvent native_event, ui::EventType type, int flags)
: type_(type),
time_stamp_(base::Time::NowFromSystemTime()),
flags_(flags) {
InitWithNativeEvent(native_event);
}
Event::Event(NativeEvent2 native_event_2, ui::EventType type, int flags,
FromNativeEvent2 from_native)
: native_event_2_(native_event_2),
type_(type),
time_stamp_(base::Time::NowFromSystemTime()),
flags_(flags) {
InitWithNativeEvent2(native_event_2, from_native);
}
////////////////////////////////////////////////////////////////////////////////
// LocatedEvent, protected:
// TODO(msw): Kill this legacy constructor when we update uses.
LocatedEvent::LocatedEvent(ui::EventType type, const gfx::Point& location,
int flags)
: Event(type, flags),
location_(location) {
}
LocatedEvent::LocatedEvent(const LocatedEvent& model, View* source,
View* target)
: Event(model),
location_(model.location_) {
if (target)
View::ConvertPointToView(source, target, &location_);
}
LocatedEvent::LocatedEvent(const LocatedEvent& model, RootView* root)
: Event(model),
location_(model.location_) {
View::ConvertPointFromWidget(root, &location_);
}
////////////////////////////////////////////////////////////////////////////////
// KeyEvent, public:
KeyEvent::KeyEvent(ui::EventType type, ui::KeyboardCode key_code,
int event_flags)
: Event(type, event_flags),
key_code_(key_code) {
}
////////////////////////////////////////////////////////////////////////////////
// MouseEvent, public:
// TODO(msw): Kill this legacy constructor when we update uses.
MouseEvent::MouseEvent(ui::EventType type,
View* source,
View* target,
const gfx::Point &l,
int flags)
: LocatedEvent(MouseEvent(type, l.x(), l.y(), flags), source, target) {
}
MouseEvent::MouseEvent(const MouseEvent& model, View* source, View* target)
: LocatedEvent(model, source, target) {
}
////////////////////////////////////////////////////////////////////////////////
// TouchEvent, public:
#if defined(TOUCH_UI)
TouchEvent::TouchEvent(ui::EventType type, int x, int y, int flags,
int touch_id)
: LocatedEvent(type, gfx::Point(x, y), flags),
touch_id_(touch_id) {
}
TouchEvent::TouchEvent(ui::EventType type,
View* source,
View* target,
const gfx::Point& l,
int flags,
int touch_id)
: LocatedEvent(TouchEvent(type, l.x(), l.y(), flags, touch_id), source,
target),
touch_id_(touch_id) {
}
TouchEvent::TouchEvent(const TouchEvent& model, View* source, View* target)
: LocatedEvent(model, source, target),
touch_id_(model.touch_id_) {
}
#endif
////////////////////////////////////////////////////////////////////////////////
// MouseWheelEvent, public:
// This value matches windows WHEEL_DELTA.
// static
const int MouseWheelEvent::kWheelDelta = 120;
} // namespace views
|