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

Side by Side Diff: ash/wm/panels/panel_window_event_handler.cc

Issue 2095193002: clang-format all of //ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
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/common/wm_shell.h" 8 #include "ash/common/wm_shell.h"
9 #include "ash/wm/window_state_aura.h" 9 #include "ash/wm/window_state_aura.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 PanelWindowEventHandler::~PanelWindowEventHandler() {} 19 PanelWindowEventHandler::~PanelWindowEventHandler() {}
20 20
21 void PanelWindowEventHandler::OnMouseEvent(ui::MouseEvent* event) { 21 void PanelWindowEventHandler::OnMouseEvent(ui::MouseEvent* event) {
22 aura::Window* target = static_cast<aura::Window*>(event->target()); 22 aura::Window* target = static_cast<aura::Window*>(event->target());
23 if (!event->handled() && 23 if (!event->handled() && event->type() == ui::ET_MOUSE_PRESSED &&
24 event->type() == ui::ET_MOUSE_PRESSED &&
25 event->flags() & ui::EF_IS_DOUBLE_CLICK && 24 event->flags() & ui::EF_IS_DOUBLE_CLICK &&
26 event->IsOnlyLeftMouseButton() && 25 event->IsOnlyLeftMouseButton() &&
27 target->delegate()->GetNonClientComponent(event->location()) == 26 target->delegate()->GetNonClientComponent(event->location()) ==
28 HTCAPTION) { 27 HTCAPTION) {
29 WmShell::Get()->RecordUserMetricsAction(UMA_PANEL_MINIMIZE_CAPTION_CLICK); 28 WmShell::Get()->RecordUserMetricsAction(UMA_PANEL_MINIMIZE_CAPTION_CLICK);
30 wm::GetWindowState(target)->Minimize(); 29 wm::GetWindowState(target)->Minimize();
31 event->StopPropagation(); 30 event->StopPropagation();
32 return; 31 return;
33 } 32 }
34 } 33 }
35 34
36 void PanelWindowEventHandler::OnGestureEvent(ui::GestureEvent* event) { 35 void PanelWindowEventHandler::OnGestureEvent(ui::GestureEvent* event) {
37 aura::Window* target = static_cast<aura::Window*>(event->target()); 36 aura::Window* target = static_cast<aura::Window*>(event->target());
38 if (!event->handled() && 37 if (!event->handled() && event->type() == ui::ET_GESTURE_TAP &&
39 event->type() == ui::ET_GESTURE_TAP &&
40 event->details().tap_count() == 2 && 38 event->details().tap_count() == 2 &&
41 target->delegate()->GetNonClientComponent(event->location()) == 39 target->delegate()->GetNonClientComponent(event->location()) ==
42 HTCAPTION) { 40 HTCAPTION) {
43 WmShell::Get()->RecordUserMetricsAction(UMA_PANEL_MINIMIZE_CAPTION_GESTURE); 41 WmShell::Get()->RecordUserMetricsAction(UMA_PANEL_MINIMIZE_CAPTION_GESTURE);
44 wm::GetWindowState(target)->Minimize(); 42 wm::GetWindowState(target)->Minimize();
45 event->StopPropagation(); 43 event->StopPropagation();
46 return; 44 return;
47 } 45 }
48 } 46 }
49 47
50 } // namespace ash 48 } // namespace ash
OLDNEW
« no previous file with comments | « ash/wm/panels/panel_layout_manager_unittest.cc ('k') | ash/wm/panels/panel_window_resizer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698