| 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/wm/panels/panel_window_event_handler.h" | 5 #include "ash/wm/panels/panel_window_event_handler.h" |
| 6 | 6 |
| 7 #include "ash/metrics/user_metrics_recorder.h" | 7 #include "ash/metrics/user_metrics_recorder.h" |
| 8 #include "ash/shell.h" | 8 #include "ash/shell.h" |
| 9 #include "ash/wm/window_state.h" | 9 #include "ash/wm/window_state.h" |
| 10 #include "ui/aura/window.h" | 10 #include "ui/aura/window.h" |
| 11 #include "ui/aura/window_delegate.h" | 11 #include "ui/aura/window_delegate.h" |
| 12 #include "ui/base/hit_test.h" | 12 #include "ui/base/hit_test.h" |
| 13 #include "ui/events/event.h" | 13 #include "ui/events/event.h" |
| 14 | 14 |
| 15 namespace ash { | 15 namespace ash { |
| 16 | 16 |
| 17 PanelWindowEventHandler::PanelWindowEventHandler() { | 17 PanelWindowEventHandler::PanelWindowEventHandler() { |
| 18 } | 18 } |
| 19 | 19 |
| 20 PanelWindowEventHandler::~PanelWindowEventHandler() { | 20 PanelWindowEventHandler::~PanelWindowEventHandler() { |
| 21 } | 21 } |
| 22 | 22 |
| 23 void PanelWindowEventHandler::OnMouseEvent(ui::MouseEvent* event) { | 23 void PanelWindowEventHandler::OnMouseEvent(ui::MouseEvent* event) { |
| 24 aura::Window* target = static_cast<aura::Window*>(event->target()); | 24 aura::Window* target = static_cast<aura::Window*>(event->target()); |
| 25 if (!event->handled() && | 25 if (!event->handled() && event->type() == ui::ET_MOUSE_PRESSED && |
| 26 event->type() == ui::ET_MOUSE_PRESSED && | |
| 27 event->flags() & ui::EF_IS_DOUBLE_CLICK && | 26 event->flags() & ui::EF_IS_DOUBLE_CLICK && |
| 28 event->IsOnlyLeftMouseButton() && | 27 event->IsOnlyLeftMouseButton() && |
| 29 target->delegate()->GetNonClientComponent(event->location()) == | 28 target->delegate()->GetNonClientComponent( |
| 30 HTCAPTION) { | 29 gfx::ToFlooredPoint(event->location())) == HTCAPTION) { |
| 31 ash::Shell::GetInstance()->metrics()->RecordUserMetricsAction( | 30 ash::Shell::GetInstance()->metrics()->RecordUserMetricsAction( |
| 32 ash::UMA_PANEL_MINIMIZE_CAPTION_CLICK); | 31 ash::UMA_PANEL_MINIMIZE_CAPTION_CLICK); |
| 33 wm::GetWindowState(target)->Minimize(); | 32 wm::GetWindowState(target)->Minimize(); |
| 34 event->StopPropagation(); | 33 event->StopPropagation(); |
| 35 return; | 34 return; |
| 36 } | 35 } |
| 37 } | 36 } |
| 38 | 37 |
| 39 void PanelWindowEventHandler::OnGestureEvent(ui::GestureEvent* event) { | 38 void PanelWindowEventHandler::OnGestureEvent(ui::GestureEvent* event) { |
| 40 aura::Window* target = static_cast<aura::Window*>(event->target()); | 39 aura::Window* target = static_cast<aura::Window*>(event->target()); |
| 41 if (!event->handled() && | 40 if (!event->handled() && event->type() == ui::ET_GESTURE_TAP && |
| 42 event->type() == ui::ET_GESTURE_TAP && | |
| 43 event->details().tap_count() == 2 && | 41 event->details().tap_count() == 2 && |
| 44 target->delegate()->GetNonClientComponent(event->location()) == | 42 target->delegate()->GetNonClientComponent( |
| 45 HTCAPTION) { | 43 gfx::ToFlooredPoint(event->location())) == HTCAPTION) { |
| 46 ash::Shell::GetInstance()->metrics()->RecordUserMetricsAction( | 44 ash::Shell::GetInstance()->metrics()->RecordUserMetricsAction( |
| 47 ash::UMA_PANEL_MINIMIZE_CAPTION_GESTURE); | 45 ash::UMA_PANEL_MINIMIZE_CAPTION_GESTURE); |
| 48 wm::GetWindowState(target)->Minimize(); | 46 wm::GetWindowState(target)->Minimize(); |
| 49 event->StopPropagation(); | 47 event->StopPropagation(); |
| 50 return; | 48 return; |
| 51 } | 49 } |
| 52 } | 50 } |
| 53 | 51 |
| 54 } // namespace ash | 52 } // namespace ash |
| OLD | NEW |