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

Unified Diff: ash/system/tray/system_tray.cc

Issue 2930123002: Tablet WM : Swiping on system tray bubble. (Closed)
Patch Set: Addressed xiyuan's comments. Created 3 years, 6 months 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
Index: ash/system/tray/system_tray.cc
diff --git a/ash/system/tray/system_tray.cc b/ash/system/tray/system_tray.cc
index 78f2929147dab3951ce59e4d5e0d922ef7483b9c..1361abd5149445d4179588b3af5b04da84eeb018 100644
--- a/ash/system/tray/system_tray.cc
+++ b/ash/system/tray/system_tray.cc
@@ -50,6 +50,7 @@
#include "ash/system/user/tray_user.h"
#include "ash/system/web_notification/web_notification_tray.h"
#include "ash/wm/container_finder.h"
+#include "ash/wm/maximize_mode/maximize_mode_controller.h"
#include "ash/wm/widget_finder.h"
#include "base/logging.h"
#include "base/memory/ptr_util.h"
@@ -172,8 +173,10 @@ class SystemTray::ActivationObserver : public ::wm::ActivationChangeObserver {
int container_id = wm::GetContainerForWindow(gained_active)->id();
// Don't close the bubble if a popup notification is activated.
- if (container_id == kShellWindowId_StatusContainer)
+ if (container_id == kShellWindowId_StatusContainer ||
+ container_id == kShellWindowId_SettingBubbleContainer) {
return;
+ }
views::Widget* bubble_widget =
tray_->GetSystemBubble()->bubble_view()->GetWidget();
@@ -198,13 +201,19 @@ class SystemTray::ActivationObserver : public ::wm::ActivationChangeObserver {
// SystemTray
-SystemTray::SystemTray(Shelf* shelf) : TrayBackgroundView(shelf) {
+SystemTray::SystemTray(Shelf* shelf)
+ : TrayBackgroundView(shelf), shelf_(shelf) {
SetInkDropMode(InkDropMode::ON);
// Since user avatar is on the right hand side of System tray of a
// horizontal shelf and that is sufficient to indicate separation, no
// separator is required.
set_separator_visibility(false);
+
+ Shell::Get()->AddShellObserver(this);
+ in_maximize_mode_ = Shell::Get()
+ ->maximize_mode_controller()
+ ->IsMaximizeModeWindowManagerEnabled();
}
SystemTray::~SystemTray() {
@@ -214,6 +223,7 @@ SystemTray::~SystemTray() {
system_bubble_.reset();
for (const auto& item : items_)
item->OnTrayViewDestroyed();
+ Shell::Get()->RemoveShellObserver(this);
}
void SystemTray::InitializeTrayItems(
@@ -589,6 +599,14 @@ void SystemTray::HideBubble(const TrayBubbleView* bubble_view) {
HideBubbleWithView(bubble_view);
}
+void SystemTray::OnMaximizeModeStarted() {
+ in_maximize_mode_ = true;
+}
+
+void SystemTray::OnMaximizeModeEnded() {
+ in_maximize_mode_ = false;
+}
+
void SystemTray::CloseBubble(const ui::KeyEvent& key_event) {
CloseSystemBubble();
}
@@ -630,6 +648,19 @@ void SystemTray::ActivateBubble() {
bubble_view->GetWidget()->Activate();
}
+void SystemTray::OnGestureEvent(ui::GestureEvent* event) {
tdanderson 2017/06/19 16:19:38 Why are you restricting this to just a horizontall
minch1 2017/06/20 16:45:34 Since tablet will has horizontal shelf only in the
tdanderson 2017/06/20 22:42:19 Acknowledged.
+ if (in_maximize_mode_ && shelf_->IsHorizontalAlignment() &&
tdanderson 2017/06/19 16:19:38 Side question to ask UX (OK to handle in a follow-
minch1 2017/06/20 16:45:34 Yes, that's right. We definitely need that, I will
tdanderson 2017/06/20 22:42:20 Acknowledged.
+ ProcessGestureEvent(*event)) {
+ event->StopPropagation();
+ } else {
+ CustomButton::OnGestureEvent(event);
tdanderson 2017/06/19 16:19:38 I think you'd instead want to call up to TrayBackr
minch1 2017/06/20 16:45:34 Done.
+ }
+}
+
+gfx::Rect SystemTray::GetWorkAreaBoundsInScreen() const {
+ return shelf_->GetUserWorkAreaBounds();
+}
+
bool SystemTray::PerformAction(const ui::Event& event) {
// If we're already showing a full system tray menu, either default or
// detailed menu, hide it; otherwise, show it (and hide any popup that's
@@ -644,6 +675,98 @@ bool SystemTray::PerformAction(const ui::Event& event) {
return true;
}
+bool SystemTray::ProcessGestureEvent(const ui::GestureEvent& event) {
tdanderson 2017/06/19 16:19:38 When building and trying out this CL locally, I ca
minch1 2017/06/20 16:45:34 I am sorry I cannot repro this locally. But I gues
tdanderson 2017/06/20 22:42:20 I can still repro locally with Patch Set 8. I will
+ if (event.type() == ui::ET_GESTURE_SCROLL_BEGIN)
xdai1 2017/06/19 19:01:30 I think "switch case" might make the code cleaner
minch1 2017/06/20 16:45:34 I think "switch case" is not so good after update.
+ return StartGestureDrag(event);
+
+ if (event.type() == ui::ET_GESTURE_SCROLL_UPDATE) {
+ UpdateGestureDrag(event);
+ return true;
+ }
+
+ if (event.type() == ui::ET_GESTURE_SCROLL_END ||
+ event.type() == ui::ET_SCROLL_FLING_START) {
+ CompleteGestureDrag(event);
+ return true;
+ }
+ return false;
+}
+
+bool SystemTray::StartGestureDrag(const ui::GestureEvent& gesture) {
+ if ((HasSystemBubble() && full_system_tray_menu_) ||
+ IsDraggingDownOnShelf(gesture)) {
tdanderson 2017/06/19 16:19:38 I don't understand what the check IsDraggingDownOn
minch1 2017/06/20 16:45:34 When there is no bubble. Swiping down on the syste
+ return false;
+ }
+
+ gesture_drag_amount_ = 0.f;
+ ShowDefaultView(BUBBLE_CREATE_NEW);
+ system_tray_bubble_bounds_ =
+ system_bubble_->bubble_view()->GetWidget()->GetWindowBoundsInScreen();
+ UpdateBoundsOnDragging(gesture);
+ return true;
+}
+
+void SystemTray::UpdateGestureDrag(const ui::GestureEvent& gesture) {
+ UpdateBoundsOnDragging(gesture);
+ gesture_drag_amount_ += gesture.details().scroll_y();
+}
+
+void SystemTray::CompleteGestureDrag(const ui::GestureEvent& gesture) {
+ gfx::Rect target_bounds = system_tray_bubble_bounds_;
+ if (ShouldShowSystemBubbleForDragging(gesture)) {
+ system_bubble_->bubble()->UpdateBounds(target_bounds, false);
+ } else {
+ target_bounds.set_y(shelf_->GetIdealBounds().y());
+ system_bubble_->bubble()->UpdateBounds(target_bounds, true);
+ }
+}
+
+bool SystemTray::IsDraggingDownOnShelf(const ui::GestureEvent& gesture) {
+ gfx::Point gesture_location = gesture.location();
+ View::ConvertPointToScreen(this, &gesture_location);
+
+ if (gesture_location.y() >= shelf_->GetIdealBounds().y() &&
+ gesture.details().scroll_y_hint() > 0) {
+ return true;
+ }
+ return false;
+}
+
+void SystemTray::UpdateBoundsOnDragging(const ui::GestureEvent& gesture) {
+ gfx::Point gesture_location = gesture.location();
+ View::ConvertPointToScreen(this, &gesture_location);
+
+ // System tray bubble should not be dragged higher than its original height.
+ if (gesture_location.y() < system_tray_bubble_bounds_.y())
+ gesture_location.set_y(system_tray_bubble_bounds_.y());
+
+ gfx::Rect bounds_on_gesture(
+ system_tray_bubble_bounds_.x(), gesture_location.y(),
+ system_tray_bubble_bounds_.width(), system_tray_bubble_bounds_.height());
+ system_bubble_->bubble_view()->GetWidget()->SetBounds(bounds_on_gesture);
+}
+
+bool SystemTray::ShouldShowSystemBubbleBasedOnDragAmount() {
+ if (gesture_drag_amount_ > 0)
+ return false;
+
+ int system_bubble_height = system_tray_bubble_bounds_.height();
+ float one_third = system_bubble_height / 3.0;
+
+ return fabs(gesture_drag_amount_) >= one_third;
+}
+
+bool SystemTray::ShouldShowSystemBubbleForDragging(
+ const ui::GestureEvent& gesture) {
+ if (gesture.type() == ui::ET_GESTURE_SCROLL_END)
+ return ShouldShowSystemBubbleBasedOnDragAmount();
+
+ const float kSwipingVelocity = 100.0f;
+ if (fabs(gesture.details().velocity_y()) > kSwipingVelocity)
tdanderson 2017/06/19 16:19:38 Consider setting kSwipingVelocity to -100 and inli
minch1 2017/06/20 16:45:34 Thanks. Done the change for ShouldShowSystemBubble
tdanderson 2017/06/20 22:42:20 Acknowledged.
+ return gesture.details().velocity_y() < 0;
+ return ShouldShowSystemBubbleBasedOnDragAmount();
+}
+
void SystemTray::CloseSystemBubbleAndDeactivateSystemTray() {
activation_observer_.reset();
key_event_watcher_.reset();

Powered by Google App Engine
This is Rietveld 408576698