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