| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ash/shelf/shelf_button.h" | 5 #include "ash/shelf/shelf_button.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "ash/ash_constants.h" | 9 #include "ash/ash_constants.h" |
| 10 #include "ash/shelf/ink_drop_button_listener.h" | 10 #include "ash/shelf/ink_drop_button_listener.h" |
| 11 #include "ash/shelf/shelf_constants.h" | 11 #include "ash/shelf/shelf_constants.h" |
| 12 #include "ash/shelf/shelf_view.h" | 12 #include "ash/shelf/shelf_view.h" |
| 13 #include "ash/shelf/wm_shelf.h" | 13 #include "ash/shelf/wm_shelf.h" |
| 14 #include "base/memory/ptr_util.h" | 14 #include "base/memory/ptr_util.h" |
| 15 #include "base/time/time.h" | 15 #include "base/time/time.h" |
| 16 #include "skia/ext/image_operations.h" | 16 #include "skia/ext/image_operations.h" |
| 17 #include "ui/accessibility/ax_node_data.h" | 17 #include "ui/accessibility/ax_node_data.h" |
| 18 #include "ui/compositor/layer.h" | 18 #include "ui/compositor/layer.h" |
| 19 #include "ui/gfx/animation/animation_delegate.h" | 19 #include "ui/gfx/animation/animation_delegate.h" |
| 20 #include "ui/gfx/animation/throb_animation.h" | 20 #include "ui/gfx/animation/throb_animation.h" |
| 21 #include "ui/gfx/canvas.h" | 21 #include "ui/gfx/canvas.h" |
| 22 #include "ui/gfx/geometry/vector2d.h" | 22 #include "ui/gfx/geometry/vector2d.h" |
| 23 #include "ui/gfx/image/image_skia_operations.h" | 23 #include "ui/gfx/image/image_skia_operations.h" |
| 24 #include "ui/gfx/scoped_canvas.h" | 24 #include "ui/gfx/scoped_canvas.h" |
| 25 #include "ui/gfx/skbitmap_operations.h" | 25 #include "ui/gfx/skbitmap_operations.h" |
| 26 #include "ui/views/animation/ink_drop_impl.h" | 26 #include "ui/views/animation/ink_drop_impl.h" |
| 27 #include "ui/views/animation/square_ink_drop_ripple.h" | 27 #include "ui/views/animation/square_ink_drop_ripple.h" |
| 28 #include "ui/views/controls/image_view.h" | 28 #include "ui/views/controls/image_view.h" |
| 29 #include "ui/views/controls/menu/menu_controller.h" |
| 29 | 30 |
| 30 namespace { | 31 namespace { |
| 31 | 32 |
| 32 const int kIconSize = 32; | 33 const int kIconSize = 32; |
| 33 const int kAttentionThrobDurationMS = 800; | 34 const int kAttentionThrobDurationMS = 800; |
| 34 const int kMaxAnimationSeconds = 10; | 35 const int kMaxAnimationSeconds = 10; |
| 35 const int kIndicatorOffsetFromBottom = 3; | 36 const int kIndicatorOffsetFromBottom = 3; |
| 36 const int kIndicatorRadiusDip = 2; | 37 const int kIndicatorRadiusDip = 2; |
| 37 const SkColor kIndicatorColor = SK_ColorWHITE; | 38 const SkColor kIndicatorColor = SK_ColorWHITE; |
| 38 | 39 |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 454 return; | 455 return; |
| 455 case ui::ET_GESTURE_SCROLL_UPDATE: | 456 case ui::ET_GESTURE_SCROLL_UPDATE: |
| 456 shelf_view_->PointerDraggedOnButton(this, ShelfView::TOUCH, *event); | 457 shelf_view_->PointerDraggedOnButton(this, ShelfView::TOUCH, *event); |
| 457 event->SetHandled(); | 458 event->SetHandled(); |
| 458 return; | 459 return; |
| 459 case ui::ET_GESTURE_SCROLL_END: | 460 case ui::ET_GESTURE_SCROLL_END: |
| 460 case ui::ET_SCROLL_FLING_START: | 461 case ui::ET_SCROLL_FLING_START: |
| 461 shelf_view_->PointerReleasedOnButton(this, ShelfView::TOUCH, false); | 462 shelf_view_->PointerReleasedOnButton(this, ShelfView::TOUCH, false); |
| 462 event->SetHandled(); | 463 event->SetHandled(); |
| 463 return; | 464 return; |
| 465 case ui::ET_GESTURE_LONG_TAP: |
| 466 views::MenuController::SetDoCancel(true); |
| 467 event->SetHandled(); |
| 468 return; |
| 464 default: | 469 default: |
| 465 return CustomButton::OnGestureEvent(event); | 470 return CustomButton::OnGestureEvent(event); |
| 466 } | 471 } |
| 467 } | 472 } |
| 468 | 473 |
| 469 std::unique_ptr<views::InkDropRipple> ShelfButton::CreateInkDropRipple() const { | 474 std::unique_ptr<views::InkDropRipple> ShelfButton::CreateInkDropRipple() const { |
| 470 return base::MakeUnique<views::SquareInkDropRipple>( | 475 return base::MakeUnique<views::SquareInkDropRipple>( |
| 471 gfx::Size(kInkDropLargeSize, kInkDropLargeSize), | 476 gfx::Size(kInkDropLargeSize, kInkDropLargeSize), |
| 472 kInkDropLargeCornerRadius, | 477 kInkDropLargeCornerRadius, |
| 473 gfx::Size(kInkDropSmallSize, kInkDropSmallSize), | 478 gfx::Size(kInkDropSmallSize, kInkDropSmallSize), |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 505 icon_view_->SetHorizontalAlignment(is_horizontal_shelf | 510 icon_view_->SetHorizontalAlignment(is_horizontal_shelf |
| 506 ? views::ImageView::CENTER | 511 ? views::ImageView::CENTER |
| 507 : views::ImageView::LEADING); | 512 : views::ImageView::LEADING); |
| 508 icon_view_->SetVerticalAlignment(is_horizontal_shelf | 513 icon_view_->SetVerticalAlignment(is_horizontal_shelf |
| 509 ? views::ImageView::LEADING | 514 ? views::ImageView::LEADING |
| 510 : views::ImageView::CENTER); | 515 : views::ImageView::CENTER); |
| 511 SchedulePaint(); | 516 SchedulePaint(); |
| 512 } | 517 } |
| 513 | 518 |
| 514 } // namespace ash | 519 } // namespace ash |
| OLD | NEW |