File: bubble_event_filter.cc

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (90 lines) | stat: -rw-r--r-- 2,800 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ash/bubble/bubble_event_filter.h"

#include "ash/bubble/bubble_utils.h"
#include "ash/shelf/shelf.h"
#include "ash/shell.h"
#include "ash/wm/container_finder.h"
#include "base/functional/callback.h"
#include "ui/events/event.h"
#include "ui/gfx/geometry/point.h"
#include "ui/gfx/geometry/rect.h"
#include "ui/views/widget/widget.h"

namespace ash {

BubbleEventFilter::BubbleEventFilter(views::Widget* bubble_widget,
                                     views::View* button,
                                     OnClickedOutsideCallback on_click_outside)
    : bubble_widget_(bubble_widget),
      button_(button),
      on_click_outside_(on_click_outside) {
  Shell::Get()->AddPreTargetHandler(this);
}

BubbleEventFilter::~BubbleEventFilter() {
  Shell::Get()->RemovePreTargetHandler(this);
}

void BubbleEventFilter::SetButton(views::View* button) {
  button_ = button;
}

void BubbleEventFilter::OnMouseEvent(ui::MouseEvent* event) {
  if (event->type() == ui::EventType::kMousePressed) {
    ProcessPressedEvent(*event);
  }
}

void BubbleEventFilter::OnTouchEvent(ui::TouchEvent* event) {
  if (event->type() == ui::EventType::kTouchPressed) {
    ProcessPressedEvent(*event);
  }
}

bool BubbleEventFilter::ShouldRunOnClickOutsideCallback(
    const ui::LocatedEvent& event) {
  if (!bubble_widget_) {
    return false;
  }

  // Check the general rules for closing bubbles.
  if (!bubble_utils::ShouldCloseBubbleForEvent(event)) {
    return false;
  }

  gfx::Point event_location = event.target()
                                  ? event.target()->GetScreenLocation(event)
                                  : event.root_location();
  // Ignore clicks inside the bubble widget.
  if (bubble_widget_->GetWindowBoundsInScreen().Contains(event_location)) {
    return false;
  }

  // Ignore clicks that hit the button (which usually spawned the widget).
  // Note that we need to use `HitTestPoint()` because certain button (i.e. the
  // shelf home button) have a custom view targeter that extends its hit test
  // bounds beyond the button bounds, so when deciding whether or not to close
  // the bubble we need to do a real hit test against the button, not just check
  // if the click point is inside its bounds.
  if (button_) {
    gfx::Point point_in_button = event_location;
    views::View::ConvertPointFromScreen(button_, &point_in_button);
    if (button_->HitTestPoint(point_in_button)) {
      return false;
    }
  }

  return true;
}

void BubbleEventFilter::ProcessPressedEvent(const ui::LocatedEvent& event) {
  if (ShouldRunOnClickOutsideCallback(event)) {
    on_click_outside_.Run(event);
  }
}

}  // namespace ash