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
3 // found in the LICENSE file.
5 #include "ash/frame/frame_border_hit_test_controller.h"
7 #include "ash/ash_constants.h"
8 #include "ash/frame/caption_buttons/frame_caption_button_container_view.h"
9 #include "ash/wm/resize_handle_window_targeter.h"
10 #include "ash/wm/window_state_observer.h"
11 #include "ui/aura/env.h"
12 #include "ui/aura/window.h"
13 #include "ui/aura/window_observer.h"
14 #include "ui/aura/window_targeter.h"
15 #include "ui/base/hit_test.h"
16 #include "ui/views/widget/widget.h"
17 #include "ui/views/widget/widget_delegate.h"
18 #include "ui/views/window/non_client_view.h"
22 FrameBorderHitTestController::FrameBorderHitTestController(views::Widget
* frame
)
23 : frame_window_(frame
->GetNativeWindow()) {
24 frame_window_
->SetEventTargeter(scoped_ptr
<ui::EventTargeter
>(
25 new ResizeHandleWindowTargeter(frame_window_
, NULL
)));
28 FrameBorderHitTestController::~FrameBorderHitTestController() {
32 int FrameBorderHitTestController::NonClientHitTest(
33 views::NonClientFrameView
* view
,
34 FrameCaptionButtonContainerView
* caption_button_container
,
35 const gfx::Point
& point_in_widget
) {
36 gfx::Rect expanded_bounds
= view
->bounds();
37 int outside_bounds
= kResizeOutsideBoundsSize
;
39 if (aura::Env::GetInstance()->is_touch_down())
40 outside_bounds
*= kResizeOutsideBoundsScaleForTouch
;
41 expanded_bounds
.Inset(-outside_bounds
, -outside_bounds
);
43 if (!expanded_bounds
.Contains(point_in_widget
))
46 // Check the frame first, as we allow a small area overlapping the contents
47 // to be used for resize handles.
48 views::Widget
* frame
= view
->GetWidget();
49 bool can_ever_resize
= frame
->widget_delegate()->CanResize();
50 // Don't allow overlapping resize handles when the window is maximized or
51 // fullscreen, as it can't be resized in those states.
52 int resize_border
= kResizeInsideBoundsSize
;
53 if (frame
->IsMaximized() || frame
->IsFullscreen()) {
55 can_ever_resize
= false;
57 int frame_component
= view
->GetHTComponentForFrame(point_in_widget
,
60 kResizeAreaCornerSize
,
61 kResizeAreaCornerSize
,
63 if (frame_component
!= HTNOWHERE
)
64 return frame_component
;
66 int client_component
= frame
->client_view()->NonClientHitTest(
68 if (client_component
!= HTNOWHERE
)
69 return client_component
;
71 if (caption_button_container
->visible()) {
72 gfx::Point
point_in_caption_button_container(point_in_widget
);
73 views::View::ConvertPointFromWidget(caption_button_container
,
74 &point_in_caption_button_container
);
75 int caption_button_component
= caption_button_container
->NonClientHitTest(
76 point_in_caption_button_container
);
77 if (caption_button_component
!= HTNOWHERE
)
78 return caption_button_component
;
81 // Caption is a safe default.