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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
|
// Copyright (c) 2013 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 "ui/message_center/views/message_popup_collection.h"
#include <set>
#include "base/bind.h"
#include "base/i18n/rtl.h"
#include "base/logging.h"
#include "base/memory/weak_ptr.h"
#include "base/run_loop.h"
#include "base/time/time.h"
#include "base/timer/timer.h"
#include "ui/base/accessibility/accessibility_types.h"
#include "ui/base/animation/animation_delegate.h"
#include "ui/base/animation/slide_animation.h"
#include "ui/gfx/screen.h"
#include "ui/message_center/message_center.h"
#include "ui/message_center/message_center_style.h"
#include "ui/message_center/notification.h"
#include "ui/message_center/notification_list.h"
#include "ui/message_center/views/notification_view.h"
#include "ui/message_center/views/toast_contents_view.h"
#include "ui/views/background.h"
#include "ui/views/layout/fill_layout.h"
#include "ui/views/view.h"
#include "ui/views/views_delegate.h"
#include "ui/views/widget/widget.h"
#include "ui/views/widget/widget_delegate.h"
namespace message_center {
namespace {
// Timeout between the last user-initiated close of the toast and the moment
// when normal layout/update of the toast stack continues. If the last toast was
// just closed, the timeout is shorter.
const int kMouseExitedDeferTimeoutMs = 200;
const int kToastMargin = kMarginBetweenItems;
} // namespace.
MessagePopupCollection::MessagePopupCollection(gfx::NativeView parent,
MessageCenter* message_center,
MessageCenterTray* tray)
: parent_(parent),
message_center_(message_center),
tray_(tray),
defer_counter_(0),
latest_toast_entered_(NULL),
user_is_closing_toasts_by_clicking_(false) {
DCHECK(message_center_);
defer_timer_.reset(new base::OneShotTimer<MessagePopupCollection>);
DoUpdateIfPossible();
message_center_->AddObserver(this);
}
MessagePopupCollection::~MessagePopupCollection() {
message_center_->RemoveObserver(this);
CloseAllWidgets();
}
void MessagePopupCollection::RemoveToast(ToastContentsView* toast) {
for (Toasts::iterator iter = toasts_.begin(); iter != toasts_.end(); ++iter) {
if ((*iter) == toast) {
toasts_.erase(iter);
break;
}
}
}
void MessagePopupCollection::UpdateWidgets() {
NotificationList::PopupNotifications popups =
message_center_->GetPopupNotifications();
if (popups.empty()) {
CloseAllWidgets();
return;
}
gfx::Point base_position = GetWorkAreaBottomRight();
#if defined(OS_CHROMEOS)
// In ChromeOS, RTL UI language mirrors the whole desktop layout, so the toast
// widgets should be at the bottom-left instead of bottom right.
if (base::i18n::IsRTL())
base_position.set_x(work_area_.x() + kToastMargin);
#endif
int bottom = toasts_.empty() ?
base_position.y() : toasts_.back()->origin().y();
bottom -= kToastMargin;
// Iterate in the reverse order to keep the oldest toasts on screen. Newer
// items may be ignored if there are no room to place them.
for (NotificationList::PopupNotifications::const_reverse_iterator iter =
popups.rbegin(); iter != popups.rend(); ++iter) {
if (FindToast((*iter)->id()))
continue;
MessageView* view =
NotificationView::Create(*(*iter),
message_center_,
tray_,
true, // Create expanded.
true); // Create top-level notification.
int view_height = ToastContentsView::GetToastSizeForView(view).height();
if (bottom - view_height - kToastMargin < 0) {
delete view;
break;
}
ToastContentsView* toast = new ToastContentsView(
*iter, AsWeakPtr(), message_center_);
toast->CreateWidget(parent_);
toast->SetContents(view);
toasts_.push_back(toast);
gfx::Point origin(base_position.x() - kToastMargin, bottom);
#if defined(OS_CHROMEOS)
if (base::i18n::IsRTL())
origin.set_x(base_position.x() + toast->GetPreferredSize().width());
#endif
toast->RevealWithAnimation(origin);
bottom -= view_height + kToastMargin;
message_center_->DisplayedNotification((*iter)->id());
if (views::ViewsDelegate::views_delegate) {
views::ViewsDelegate::views_delegate->NotifyAccessibilityEvent(
toast, ui::AccessibilityTypes::EVENT_ALERT);
}
}
}
void MessagePopupCollection::OnMouseEntered(ToastContentsView* toast_entered) {
// Sometimes we can get two MouseEntered/MouseExited in a row when animating
// toasts. So we need to keep track of which one is the currently active one.
latest_toast_entered_ = toast_entered;
message_center_->PausePopupTimers();
if (user_is_closing_toasts_by_clicking_)
defer_timer_->Stop();
}
void MessagePopupCollection::OnMouseExited(ToastContentsView* toast_exited) {
// If we're exiting a toast after entering a different toast, then ignore
// this mouse event.
if (toast_exited != latest_toast_entered_)
return;
latest_toast_entered_ = NULL;
if (user_is_closing_toasts_by_clicking_) {
defer_timer_->Start(
FROM_HERE,
base::TimeDelta::FromMilliseconds(kMouseExitedDeferTimeoutMs),
this,
&MessagePopupCollection::OnDeferTimerExpired);
} else {
message_center_->RestartPopupTimers();
}
}
void MessagePopupCollection::CloseAllWidgets() {
for (Toasts::iterator iter = toasts_.begin(); iter != toasts_.end();) {
// the toast can be removed from toasts_ during CloseWithAnimation().
Toasts::iterator curiter = iter++;
(*curiter)->CloseWithAnimation(true);
}
DCHECK(toasts_.empty());
}
gfx::Point MessagePopupCollection::GetWorkAreaBottomRight() {
if (!work_area_.IsEmpty())
return work_area_.bottom_right();
if (!parent_) {
// On Win+Aura, we don't have a parent since the popups currently show up
// on the Windows desktop, not in the Aura/Ash desktop. This code will
// display the popups on the primary display.
gfx::Screen* screen = gfx::Screen::GetNativeScreen();
work_area_ = screen->GetPrimaryDisplay().work_area();
} else {
gfx::Screen* screen = gfx::Screen::GetScreenFor(parent_);
work_area_ = screen->GetDisplayNearestWindow(parent_).work_area();
}
return work_area_.bottom_right();
}
void MessagePopupCollection::RepositionWidgets() {
int bottom = GetWorkAreaBottomRight().y() - kToastMargin;
for (Toasts::iterator iter = toasts_.begin(); iter != toasts_.end();) {
Toasts::iterator curr = iter++;
gfx::Rect bounds((*curr)->bounds());
bounds.set_y(bottom - bounds.height());
// The notification may scrolls the top boundary of the screen due to image
// load and such notifications should disappear. Do not call
// CloseWithAnimation, we don't want to show the closing animation, and we
// don't want to mark such notifications as shown. See crbug.com/233424
if (bounds.y() >= 0)
(*curr)->SetBoundsWithAnimation(bounds);
else
(*curr)->CloseWithAnimation(false);
bottom -= bounds.height() + kToastMargin;
}
}
void MessagePopupCollection::RepositionWidgetsWithTarget() {
if (toasts_.empty())
return;
// No widgets above.
if (toasts_.back()->origin().y() > target_top_edge_)
return;
Toasts::reverse_iterator iter = toasts_.rbegin();
for (; iter != toasts_.rend(); ++iter) {
if ((*iter)->origin().y() > target_top_edge_)
break;
}
--iter;
int slide_length = target_top_edge_ - (*iter)->origin().y();
for (; ; --iter) {
gfx::Rect bounds((*iter)->bounds());
bounds.set_y(bounds.y() + slide_length);
(*iter)->SetBoundsWithAnimation(bounds);
if (iter == toasts_.rbegin())
break;
}
}
void MessagePopupCollection::OnNotificationAdded(
const std::string& notification_id) {
DoUpdateIfPossible();
}
void MessagePopupCollection::OnNotificationRemoved(
const std::string& notification_id,
bool by_user) {
// Find a toast.
Toasts::iterator iter = toasts_.begin();
for (; iter != toasts_.end(); ++iter) {
if ((*iter)->id() == notification_id)
break;
}
if (iter == toasts_.end())
return;
target_top_edge_ = (*iter)->bounds().y();
(*iter)->CloseWithAnimation(true);
if (by_user) {
RepositionWidgetsWithTarget();
// [Re] start a timeout after which the toasts re-position to their
// normal locations after tracking the mouse pointer for easy deletion.
// This provides a period of time when toasts are easy to remove because
// they re-position themselves to have Close button right under the mouse
// pointer. If the user continue to remove the toasts, the delay is reset.
// Once user stopped removing the toasts, the toasts re-populate/rearrange
// after the specified delay.
if (!user_is_closing_toasts_by_clicking_) {
user_is_closing_toasts_by_clicking_ = true;
IncrementDeferCounter();
}
}
}
void MessagePopupCollection::OnDeferTimerExpired() {
user_is_closing_toasts_by_clicking_ = false;
DecrementDeferCounter();
message_center_->RestartPopupTimers();
}
void MessagePopupCollection::OnNotificationUpdated(
const std::string& notification_id) {
// Find a toast.
Toasts::iterator toast_iter = toasts_.begin();
for (; toast_iter != toasts_.end(); ++toast_iter) {
if ((*toast_iter)->id() == notification_id)
break;
}
if (toast_iter == toasts_.end())
return;
NotificationList::PopupNotifications notifications =
message_center_->GetPopupNotifications();
bool updated = false;
for (NotificationList::PopupNotifications::iterator iter =
notifications.begin(); iter != notifications.end(); ++iter) {
if ((*iter)->id() != notification_id)
continue;
MessageView* view =
NotificationView::Create(*(*iter),
message_center_,
tray_,
true, // Create expanded.
true); // Create top-level notification.
(*toast_iter)->SetContents(view);
updated = true;
}
// OnNotificationUpdated() can be called when a notification is excluded from
// the popup notification list but still remains in the full notification
// list. In that case the widget for the notification has to be closed here.
if (!updated)
(*toast_iter)->CloseWithAnimation(true);
if (user_is_closing_toasts_by_clicking_)
RepositionWidgetsWithTarget();
else
DoUpdateIfPossible();
}
void MessagePopupCollection::SetWorkAreaForTest(const gfx::Rect& work_area) {
work_area_ = work_area;
}
ToastContentsView* MessagePopupCollection::FindToast(
const std::string& notification_id) {
for (Toasts::iterator iter = toasts_.begin(); iter != toasts_.end(); ++iter) {
if ((*iter)->id() == notification_id)
return *iter;
}
return NULL;
}
void MessagePopupCollection::IncrementDeferCounter() {
defer_counter_++;
}
void MessagePopupCollection::DecrementDeferCounter() {
defer_counter_--;
DCHECK(defer_counter_ >= 0);
DoUpdateIfPossible();
}
// This is the main sequencer of tasks. It does a step, then waits for
// all started transitions to play out before doing the next step.
// First, remove all expired toasts.
// Then, reposition widgets (the reposition on close happens before all
// deferred tasks are even able to run)
// Then, see if there is vacant space for new toasts.
void MessagePopupCollection::DoUpdateIfPossible() {
if (defer_counter_ > 0)
return;
RepositionWidgets();
if (defer_counter_ > 0)
return;
// Reposition could create extra space which allows additional widgets.
UpdateWidgets();
if (defer_counter_ > 0)
return;
// Test support. Quit the test run loop when no more updates are deferred,
// meaining th echeck for updates did not cause anything to change so no new
// transition animations were started.
if (run_loop_for_test_.get())
run_loop_for_test_->Quit();
}
views::Widget* MessagePopupCollection::GetWidgetForTest(const std::string& id) {
for (Toasts::iterator iter = toasts_.begin(); iter != toasts_.end(); ++iter) {
if ((*iter)->id() == id)
return (*iter)->GetWidget();
}
return NULL;
}
void MessagePopupCollection::RunLoopForTest() {
run_loop_for_test_.reset(new base::RunLoop());
run_loop_for_test_->Run();
run_loop_for_test_.reset();
}
gfx::Rect MessagePopupCollection::GetToastRectAt(size_t index) {
DCHECK(defer_counter_ == 0) << "Fetching the bounds with animations active.";
size_t i = 0;
for (Toasts::iterator iter = toasts_.begin(); iter != toasts_.end(); ++iter) {
if (i++ == index) {
views::Widget* widget = (*iter)->GetWidget();
if (widget)
return widget->GetWindowBoundsInScreen();
break;
}
}
return gfx::Rect();
}
} // namespace message_center
|