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