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 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/find_bar/find_bar_controller.h"
#include <algorithm>
#include <string_view>
#include "base/check_op.h"
#include "base/strings/string_util.h"
#include "build/build_config.h"
#include "chrome/browser/ui/find_bar/find_bar.h"
#include "chrome/browser/ui/find_bar/find_bar_platform_helper.h"
#include "components/find_in_page/find_tab_helper.h"
#include "components/find_in_page/find_types.h"
#include "content/public/browser/navigation_details.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/render_widget_host_view.h"
#include "content/public/browser/web_contents.h"
#include "ui/gfx/range/range.h"
using content::NavigationController;
using content::WebContents;
FindBarController::FindBarController(std::unique_ptr<FindBar> find_bar)
: find_bar_(std::move(find_bar)),
find_bar_platform_helper_(FindBarPlatformHelper::Create(this)) {}
FindBarController::~FindBarController() {
DCHECK(!web_contents());
}
void FindBarController::Show(bool find_next, bool forward_direction) {
find_in_page::FindTabHelper* find_tab_helper =
find_in_page::FindTabHelper::FromWebContents(web_contents());
const bool new_session = !find_tab_helper->find_ui_active();
if (new_session) {
has_user_modified_text_ = false;
MaybeSetPrepopulateText();
find_tab_helper->set_find_ui_active(true);
}
// FindBarController::Show() is triggered by users (e.g. Ctrl+F, or F3) so
// the find bar should always take focus.
find_bar_->Show(/*animate=*/true, /*focus=*/true);
find_bar_->SetFocusAndSelection();
if (find_next) {
find_tab_helper->StartFinding(std::u16string(find_bar_->GetFindText()),
forward_direction, false /* case_sensitive */,
true /* find_match */);
return;
}
if (has_user_modified_text_) {
return;
}
std::u16string selected_text = GetSelectedText();
auto selected_length = selected_text.length();
if (selected_length > 0 && selected_length <= 250) {
find_bar_->SetFindTextAndSelectedRange(
selected_text, gfx::Range(0, selected_text.length()));
}
// Since this isn't a find-next operation, we don't want to jump to any
// matches. Doing so could cause the page to scroll when a user is just
// trying to pull up the find bar — they might not even want to search for
// whatever is prefilled (e.g. the selected text or the global pasteboard).
// So we set |find_match| to false, which will set up match counts and
// highlighting, but not jump to any matches.
find_tab_helper->StartFinding(
std::u16string(find_bar_->GetFindText()), true /* forward_direction */,
false /* case_sensitive */, false /* find_match */);
}
void FindBarController::EndFindSession(
find_in_page::SelectionAction selection_action,
find_in_page::ResultAction result_action) {
find_bar_->Hide(true);
// web_contents() can be NULL for a number of reasons, for example when the
// tab is closing. We must guard against that case. See issue 8030.
if (web_contents()) {
find_in_page::FindTabHelper* find_tab_helper =
find_in_page::FindTabHelper::FromWebContents(web_contents());
// When we hide the window, we need to notify the renderer that we are done
// for now, so that we can abort the scoping effort and clear all the
// tickmarks and highlighting.
find_tab_helper->set_find_ui_focused(false);
find_tab_helper->StopFinding(selection_action);
if (result_action == find_in_page::ResultAction::kClear) {
find_bar_->ClearResults(find_tab_helper->find_result());
}
// When we get dismissed we restore the focus to where it belongs.
find_bar_->RestoreSavedFocus();
}
}
void FindBarController::ChangeWebContents(WebContents* contents) {
if (web_contents()) {
find_bar_->StopAnimation();
find_in_page::FindTabHelper* find_tab_helper =
find_in_page::FindTabHelper::FromWebContents(web_contents());
if (find_tab_helper) {
find_tab_helper->set_selected_range(find_bar_->GetSelectedRange());
DCHECK(find_tab_observation_.IsObservingSource(find_tab_helper));
find_tab_observation_.Reset();
}
}
find_in_page::FindTabHelper* find_tab_helper =
contents ? find_in_page::FindTabHelper::FromWebContents(contents)
: nullptr;
if (find_tab_helper) {
find_tab_observation_.Observe(find_tab_helper);
}
// Hide any visible find window from the previous tab if a NULL tab contents
// is passed in or if the find UI is not active in the new tab.
if (find_bar_->IsFindBarVisible() &&
(!find_tab_helper || !find_tab_helper->find_ui_active())) {
find_bar_->Hide(false);
}
Observe(contents);
if (!web_contents()) {
return;
}
MaybeSetPrepopulateText();
UpdateFindBarForCurrentResult();
if (find_tab_helper && find_tab_helper->find_ui_active()) {
// A tab with a visible find bar just got selected and we need to show the
// find bar but without animation since it was already animated into its
// visible state. We also want to reset the window location so that
// we don't surprise the user by popping up to the left for no apparent
// reason.
find_bar_->Show(/*animate=*/false,
/*focus=*/find_tab_helper->find_ui_focused());
// The condition below can be true on macOS if the global pasteboard changed
// while this tab was inactive (the find result will have been reset by
// FindBarPlatformHelperMac). In that case, we need to find the new text to
// update the results in the findbar. If condition is true due to the find
// text being empty, the call to StartFinding will be a harmless no-op.
if (find_tab_helper->find_result().number_of_matches() == -1) {
find_tab_helper->StartFinding(std::u16string(find_bar_->GetFindText()),
true /* forward_direction */,
false /* case_sensitive */,
false /* find_match */);
}
}
find_bar_->UpdateFindBarForChangedWebContents();
}
void FindBarController::SetText(std::u16string text) {
find_bar_->SetFindTextAndSelectedRange(text, find_bar_->GetSelectedRange());
if (!web_contents()) {
return;
}
find_in_page::FindTabHelper* find_tab_helper =
find_in_page::FindTabHelper::FromWebContents(web_contents());
if (!find_tab_helper->find_ui_active()) {
return;
}
find_tab_helper->StartFinding(text, true /* forward_direction */,
false /* case_sensitive */,
false /* find_match */);
}
void FindBarController::OnUserChangedFindText(std::u16string_view text) {
has_user_modified_text_ = !text.empty();
if (find_bar_platform_helper_) {
find_bar_platform_helper_->OnUserChangedFindText(text);
}
}
////////////////////////////////////////////////////////////////////////////////
// FindBarController, content::WebContentsObserver implementation:
void FindBarController::NavigationEntryCommitted(
const content::LoadCommittedDetails& load_details) {
// Hide the find bar on navigation.
if (find_bar_->IsFindBarVisible() && load_details.is_main_frame &&
load_details.is_navigation_to_different_page()) {
EndFindSession(find_in_page::SelectionAction::kKeep,
find_in_page::ResultAction::kClear);
}
}
void FindBarController::OnFindEmptyText(content::WebContents* web_contents) {
CHECK_EQ(web_contents, this->web_contents());
UpdateFindBarForCurrentResult();
}
void FindBarController::OnFindResultAvailable(
content::WebContents* web_contents) {
CHECK_EQ(web_contents, this->web_contents());
UpdateFindBarForCurrentResult();
find_in_page::FindTabHelper* find_tab_helper =
find_in_page::FindTabHelper::FromWebContents(web_contents);
// Only "final" results may audibly alert the user. Also don't alert when
// we're only highlighting results (when first opening the find bar).
// See https://crbug.com/1131780
if (!find_tab_helper->find_result().final_update() ||
!find_tab_helper->should_find_match()) {
return;
}
const std::u16string& current_search = find_tab_helper->find_text();
// If no results were found, play an audible alert (depending upon platform
// convention). Alert only once per unique search, and don't alert on
// backspace.
if ((find_tab_helper->find_result().number_of_matches() == 0) &&
!base::StartsWith(find_tab_helper->last_completed_find_text(),
current_search, base::CompareCase::SENSITIVE)) {
find_bar_->AudibleAlert();
}
// Record the completion of the search to suppress future alerts, even if the
// page's contents change.
find_tab_helper->set_last_completed_find_text(current_search);
}
void FindBarController::UpdateFindBarForCurrentResult() {
find_in_page::FindTabHelper* find_tab_helper =
find_in_page::FindTabHelper::FromWebContents(web_contents());
const find_in_page::FindNotificationDetails& find_result =
find_tab_helper->find_result();
// Avoid bug 894389: When a new search starts (and finds something) it reports
// an interim match count result of 1 before the scoping effort starts. This
// is to provide feedback as early as possible that we will find something.
// As you add letters to the search term, this creates a flashing effect when
// we briefly show "1 of 1" matches because there is a slight delay until
// the scoping effort starts updating the match count. We avoid this flash by
// ignoring interim results of 1 if we already have a positive number.
if (find_result.number_of_matches() > -1) {
if (last_reported_matchcount_ > 0 && find_result.number_of_matches() == 1 &&
!find_result.final_update() &&
last_reported_ordinal_ == find_result.active_match_ordinal()) {
return; // Don't let interim result override match count.
}
last_reported_matchcount_ = find_result.number_of_matches();
last_reported_ordinal_ = find_result.active_match_ordinal();
}
find_bar_->UpdateUIForFindResult(find_result, find_tab_helper->find_text());
}
void FindBarController::MaybeSetPrepopulateText() {
// Having a per-tab find_string is not compatible with a global find
// pasteboard, so we always have the same find text in all find bars. This is
// done through the find pasteboard mechanism (see FindBarPlatformHelperMac),
// so don't set the text here.
if (find_bar_->HasGlobalFindPasteboard()) {
return;
}
// Find out what we should show in the find text box. Usually, this will be
// the last search in this tab, but if no search has been issued in this tab
// we use the last search string (from any tab).
find_in_page::FindTabHelper* find_tab_helper =
find_in_page::FindTabHelper::FromWebContents(web_contents());
std::u16string find_string = find_tab_helper->find_text();
if (find_string.empty()) {
find_string = find_tab_helper->GetInitialSearchText();
}
// Update the find bar with existing results and search text, regardless of
// whether or not the find bar is visible, so that if it's subsequently
// shown it is showing the right state for this tab. We update the find text
// _first_ since the FindBarView checks its emptiness to see if it should
// clear the result count display when there's nothing in the box.
find_bar_->SetFindTextAndSelectedRange(find_string,
find_tab_helper->selected_range());
}
std::u16string FindBarController::GetSelectedText() {
auto* host_view = web_contents()->GetRenderWidgetHostView();
if (!host_view) {
return std::u16string();
}
std::u16string selected_text = host_view->GetSelectedText();
// This should be kept in sync with what TextfieldModel::Paste() does, since
// that's what would run if the user explicitly pasted this text into the find
// bar.
base::TrimWhitespace(selected_text, base::TRIM_ALL, &selected_text);
return selected_text;
}
|