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
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/views/controls/prefix_selector.h"
#include <algorithm>
#include <limits>
#include "base/i18n/case_conversion.h"
#include "base/time/default_tick_clock.h"
#include "build/build_config.h"
#include "ui/base/ime/input_method.h"
#include "ui/base/ime/text_input_type.h"
#include "ui/gfx/range/range.h"
#include "ui/views/controls/prefix_delegate.h"
#include "ui/views/view.h"
#include "ui/views/widget/widget.h"
#if BUILDFLAG(IS_WIN)
#include <vector>
#endif
namespace views {
PrefixSelector::PrefixSelector(PrefixDelegate* delegate, View* host_view)
: prefix_delegate_(delegate),
host_view_(host_view),
tick_clock_(base::DefaultTickClock::GetInstance()) {}
PrefixSelector::~PrefixSelector() = default;
void PrefixSelector::OnViewBlur() {
ClearText();
}
bool PrefixSelector::ShouldContinueSelection() const {
const base::TimeTicks now(tick_clock_->NowTicks());
constexpr auto kTimeBeforeClearing = base::Seconds(1);
return (now - time_of_last_key_) < kTimeBeforeClearing;
}
base::WeakPtr<ui::TextInputClient> PrefixSelector::AsWeakPtr() {
return weak_ptr_factory_.GetWeakPtr();
}
void PrefixSelector::SetCompositionText(
const ui::CompositionText& composition) {}
size_t PrefixSelector::ConfirmCompositionText(bool keep_selection) {
return std::numeric_limits<size_t>::max();
}
void PrefixSelector::ClearCompositionText() {}
void PrefixSelector::InsertText(const std::u16string& text,
InsertTextCursorBehavior cursor_behavior) {
// TODO(crbug.com/1155331): Handle |cursor_behavior| correctly.
OnTextInput(text);
}
void PrefixSelector::InsertChar(const ui::KeyEvent& event) {
OnTextInput(std::u16string(1, event.GetCharacter()));
}
ui::TextInputType PrefixSelector::GetTextInputType() const {
return ui::TEXT_INPUT_TYPE_TEXT;
}
ui::TextInputMode PrefixSelector::GetTextInputMode() const {
return ui::TEXT_INPUT_MODE_DEFAULT;
}
base::i18n::TextDirection PrefixSelector::GetTextDirection() const {
return base::i18n::UNKNOWN_DIRECTION;
}
int PrefixSelector::GetTextInputFlags() const {
return 0;
}
bool PrefixSelector::CanComposeInline() const {
return false;
}
gfx::Rect PrefixSelector::GetCaretBounds() const {
gfx::Rect rect(host_view_->GetVisibleBounds().origin(), gfx::Size());
// TextInputClient::GetCaretBounds is expected to return a value in screen
// coordinates.
views::View::ConvertRectToScreen(host_view_, &rect);
return rect;
}
gfx::Rect PrefixSelector::GetSelectionBoundingBox() const {
NOTIMPLEMENTED_LOG_ONCE();
return gfx::Rect();
}
#if BUILDFLAG(IS_WIN)
std::optional<gfx::Rect> PrefixSelector::GetProximateCharacterBounds(
const gfx::Range& range) const {
NOTIMPLEMENTED_LOG_ONCE();
return std::nullopt;
}
std::optional<size_t> PrefixSelector::GetProximateCharacterIndexFromPoint(
const gfx::Point& screen_point_in_dips,
ui::IndexFromPointFlags flags) const {
NOTIMPLEMENTED_LOG_ONCE();
return std::nullopt;
}
#endif // BUILDFLAG(IS_WIN)
bool PrefixSelector::GetCompositionCharacterBounds(size_t index,
gfx::Rect* rect) const {
// TextInputClient::GetCompositionCharacterBounds is expected to fill |rect|
// in screen coordinates and GetCaretBounds returns screen coordinates.
*rect = GetCaretBounds();
return false;
}
bool PrefixSelector::HasCompositionText() const {
return false;
}
ui::TextInputClient::FocusReason PrefixSelector::GetFocusReason() const {
// TODO(https://crbug.com/824604): Implement this correctly.
NOTIMPLEMENTED_LOG_ONCE();
return ui::TextInputClient::FOCUS_REASON_OTHER;
}
bool PrefixSelector::GetTextRange(gfx::Range* range) const {
*range = gfx::Range();
return false;
}
bool PrefixSelector::GetCompositionTextRange(gfx::Range* range) const {
*range = gfx::Range();
return false;
}
bool PrefixSelector::GetEditableSelectionRange(gfx::Range* range) const {
*range = gfx::Range();
return false;
}
bool PrefixSelector::SetEditableSelectionRange(const gfx::Range& range) {
return false;
}
#if BUILDFLAG(IS_MAC)
bool PrefixSelector::DeleteRange(const gfx::Range& range) {
return false;
}
#endif
bool PrefixSelector::GetTextFromRange(const gfx::Range& range,
std::u16string* text) const {
return false;
}
void PrefixSelector::OnInputMethodChanged() {
ClearText();
}
bool PrefixSelector::ChangeTextDirectionAndLayoutAlignment(
base::i18n::TextDirection direction) {
return true;
}
void PrefixSelector::ExtendSelectionAndDelete(size_t before, size_t after) {}
void PrefixSelector::EnsureCaretNotInRect(const gfx::Rect& rect) {}
bool PrefixSelector::IsTextEditCommandEnabled(
ui::TextEditCommand command) const {
return false;
}
void PrefixSelector::SetTextEditCommandForNextKeyEvent(
ui::TextEditCommand command) {}
ukm::SourceId PrefixSelector::GetClientSourceForMetrics() const {
// TODO(shend): Implement this method.
NOTIMPLEMENTED_LOG_ONCE();
return ukm::SourceId();
}
bool PrefixSelector::ShouldDoLearning() {
// TODO(https://crbug.com/311180): Implement this method.
NOTIMPLEMENTED_LOG_ONCE();
return false;
}
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
bool PrefixSelector::SetCompositionFromExistingText(
const gfx::Range& range,
const std::vector<ui::ImeTextSpan>& ui_ime_text_spans) {
// TODO(crbug.com/40623107): Implement this method.
NOTIMPLEMENTED_LOG_ONCE();
return false;
}
#endif
#if BUILDFLAG(IS_CHROMEOS)
gfx::Range PrefixSelector::GetAutocorrectRange() const {
NOTIMPLEMENTED_LOG_ONCE();
return gfx::Range();
}
gfx::Rect PrefixSelector::GetAutocorrectCharacterBounds() const {
NOTIMPLEMENTED_LOG_ONCE();
return gfx::Rect();
}
bool PrefixSelector::SetAutocorrectRange(const gfx::Range& range) {
// TODO(crbug.com/40134032): Implement SetAutocorrectRange.
NOTIMPLEMENTED_LOG_ONCE();
return false;
}
#endif
#if BUILDFLAG(IS_WIN)
void PrefixSelector::SetActiveCompositionForAccessibility(
const gfx::Range& range,
const std::u16string& active_composition_text,
bool is_composition_committed) {}
#endif
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_CHROMEOS)
void PrefixSelector::GetActiveTextInputControlLayoutBounds(
std::optional<gfx::Rect>* control_bounds,
std::optional<gfx::Rect>* selection_bounds) {}
#endif
void PrefixSelector::OnTextInput(const std::u16string& text) {
// Small hack to filter out 'tab' and 'enter' input, as the expectation is
// that they are control characters and will not affect the currently-active
// prefix.
if (text.length() == 1 &&
(text[0] == L'\t' || text[0] == L'\r' || text[0] == L'\n')) {
return;
}
const size_t row_count = prefix_delegate_->GetRowCount();
if (row_count == 0) {
return;
}
// Search for |text| if it has been a while since the user typed, otherwise
// append |text| to |current_text_| and search for that. If it has been a
// while search after the current row, otherwise search starting from the
// current row.
size_t row = prefix_delegate_->GetSelectedRow().value_or(0);
if (ShouldContinueSelection()) {
current_text_ += text;
} else {
current_text_ = text;
if (prefix_delegate_->GetSelectedRow().has_value()) {
row = (row + 1) % row_count;
}
}
time_of_last_key_ = tick_clock_->NowTicks();
const size_t start_row = row;
const std::u16string lower_text(base::i18n::ToLower(current_text_));
do {
if (TextAtRowMatchesText(row, lower_text)) {
prefix_delegate_->SetSelectedRow(row);
return;
}
row = (row + 1) % row_count;
} while (row != start_row);
}
bool PrefixSelector::TextAtRowMatchesText(size_t row,
const std::u16string& lower_text) {
const std::u16string model_text(
base::i18n::ToLower(prefix_delegate_->GetTextForRow(row)));
return (model_text.size() >= lower_text.size()) &&
(model_text.compare(0, lower_text.size(), lower_text) == 0);
}
void PrefixSelector::ClearText() {
current_text_.clear();
time_of_last_key_ = base::TimeTicks();
}
} // namespace views
|