blob: 08e2fe00c84cf7e7236a04797173edd1818af736 [file] [log] [blame]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.chrome.browser.omnibox;
import android.content.res.Resources;
import android.graphics.drawable.Drawable;
import android.os.Build;
import android.view.ActionMode;
import androidx.annotation.ColorInt;
import androidx.annotation.RequiresApi;
import com.google.android.material.color.MaterialColors;
import org.chromium.base.Callback;
import org.chromium.base.Log;
import org.chromium.base.TraceEvent;
import org.chromium.chrome.browser.omnibox.UrlBarProperties.AutocompleteText;
import org.chromium.chrome.browser.omnibox.UrlBarProperties.UrlBarTextState;
import org.chromium.chrome.browser.omnibox.styles.OmniboxResourceProvider;
import org.chromium.chrome.browser.ui.theme.BrandedColorScheme;
import org.chromium.ui.modelutil.PropertyKey;
import org.chromium.ui.modelutil.PropertyModel;
/**
* Handles translating the UrlBar model data to the view state.
*/
class UrlBarViewBinder {
private static final String TAG = "UrlBarViewBinder";
/**
* @see
* PropertyModelChangeProcessor.ViewBinder#bind(Object,
* Object, Object)
*/
public static void bind(PropertyModel model, UrlBar view, PropertyKey propertyKey) {
if (UrlBarProperties.ACTION_MODE_CALLBACK.equals(propertyKey)) {
ActionMode.Callback callback = model.get(UrlBarProperties.ACTION_MODE_CALLBACK);
if (callback == null && view.getCustomSelectionActionModeCallback() == null) return;
view.setCustomSelectionActionModeCallback(callback);
} else if (UrlBarProperties.ALLOW_FOCUS.equals(propertyKey)) {
view.setAllowFocus(model.get(UrlBarProperties.ALLOW_FOCUS));
} else if (UrlBarProperties.AUTOCOMPLETE_TEXT.equals(propertyKey)) {
AutocompleteText autocomplete = model.get(UrlBarProperties.AUTOCOMPLETE_TEXT);
if (view.shouldAutocomplete()) {
view.setAutocompleteText(autocomplete.userText, autocomplete.autocompleteText);
}
} else if (UrlBarProperties.DELEGATE.equals(propertyKey)) {
view.setDelegate(model.get(UrlBarProperties.DELEGATE));
} else if (UrlBarProperties.FOCUS_CHANGE_CALLBACK.equals(propertyKey)) {
final Callback<Boolean> focusChangeCallback =
model.get(UrlBarProperties.FOCUS_CHANGE_CALLBACK);
view.setOnFocusChangeListener((v, focused) -> {
if (focused) view.setIgnoreTextChangesForAutocomplete(false);
focusChangeCallback.onResult(focused);
});
} else if (UrlBarProperties.SHOW_CURSOR.equals(propertyKey)) {
view.setCursorVisible(model.get(UrlBarProperties.SHOW_CURSOR));
} else if (UrlBarProperties.TEXT_CONTEXT_MENU_DELEGATE.equals(propertyKey)) {
view.setTextContextMenuDelegate(model.get(UrlBarProperties.TEXT_CONTEXT_MENU_DELEGATE));
} else if (UrlBarProperties.TEXT_STATE.equals(propertyKey)) {
UrlBarTextState state = model.get(UrlBarProperties.TEXT_STATE);
view.setIgnoreTextChangesForAutocomplete(true);
try (TraceEvent te1 = TraceEvent.scoped("UrlBarViewBinder.setText")) {
view.setText(state.text);
}
view.setTextForAutofillServices(state.textForAutofillServices);
try (TraceEvent te2 = TraceEvent.scoped("UrlBarViewBinder.setScrollState")) {
view.setScrollState(state.scrollType, state.scrollToIndex);
}
view.setIgnoreTextChangesForAutocomplete(false);
if (view.hasFocus()) {
if (state.selectionState == UrlBarCoordinator.SelectionState.SELECT_ALL) {
view.selectAll();
} else if (state.selectionState == UrlBarCoordinator.SelectionState.SELECT_END) {
view.setSelection(view.getText().length());
}
}
} else if (UrlBarProperties.BRANDED_COLOR_SCHEME.equals(propertyKey)) {
updateTextColors(view, model.get(UrlBarProperties.BRANDED_COLOR_SCHEME));
} else if (UrlBarProperties.INCOGNITO_COLORS_ENABLED.equals(propertyKey)) {
final boolean incognitoColorsEnabled =
model.get(UrlBarProperties.INCOGNITO_COLORS_ENABLED);
updateHighlightColor(view, incognitoColorsEnabled);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
updateCursorAndSelectHandleColor(view, incognitoColorsEnabled);
}
} else if (UrlBarProperties.URL_DIRECTION_LISTENER.equals(propertyKey)) {
view.setUrlDirectionListener(model.get(UrlBarProperties.URL_DIRECTION_LISTENER));
} else if (UrlBarProperties.URL_TEXT_CHANGE_LISTENER.equals(propertyKey)) {
view.setUrlTextChangeListener(model.get(UrlBarProperties.URL_TEXT_CHANGE_LISTENER));
} else if (UrlBarProperties.WINDOW_DELEGATE.equals(propertyKey)) {
view.setWindowDelegate(model.get(UrlBarProperties.WINDOW_DELEGATE));
}
}
private static void updateTextColors(UrlBar view, @BrandedColorScheme int brandedColorScheme) {
final @ColorInt int textColor = OmniboxResourceProvider.getUrlBarPrimaryTextColor(
view.getContext(), brandedColorScheme);
final @ColorInt int hintColor = OmniboxResourceProvider.getUrlBarHintTextColor(
view.getContext(), brandedColorScheme);
view.setTextColor(textColor);
view.setHintTextColor(hintColor);
}
private static void updateHighlightColor(UrlBar view, boolean useIncognitoColors) {
@ColorInt
int originalHighlightColor;
Object highlightColorObj = view.getTag(R.id.highlight_color);
if (highlightColorObj == null || !(highlightColorObj instanceof Integer)) {
originalHighlightColor = view.getHighlightColor();
view.setTag(R.id.highlight_color, originalHighlightColor);
} else {
originalHighlightColor = (Integer) highlightColorObj;
}
int highlightColor;
if (useIncognitoColors) {
highlightColor = view.getResources().getColor(R.color.text_highlight_color_incognito);
} else {
highlightColor = originalHighlightColor;
}
view.setHighlightColor(highlightColor);
}
@RequiresApi(api = Build.VERSION_CODES.Q)
private static void updateCursorAndSelectHandleColor(UrlBar view, boolean useIncognitoColors) {
try {
// These get* methods may fail on some devices, so we're calling all of them before
// applying tint to any of the drawables. See https://crbug.com/1263630.
final Drawable textCursor = view.getTextCursorDrawable();
final Drawable textSelectHandle = view.getTextSelectHandle();
final Drawable textSelectHandleLeft = view.getTextSelectHandleLeft();
final Drawable textSelectHandleRight = view.getTextSelectHandleRight();
final int color = useIncognitoColors
? view.getContext().getColor(R.color.default_control_color_active_dark)
: MaterialColors.getColor(view, R.attr.colorPrimary);
textCursor.mutate().setTint(color);
textSelectHandle.mutate().setTint(color);
textSelectHandleLeft.mutate().setTint(color);
textSelectHandleRight.mutate().setTint(color);
} catch (Resources.NotFoundException e) {
// Uploading the stack for APIs below 31 since we assume this doesn't happen on newer
// versions. We'll still throw the exception for APIs 31+ to keep track of any
// unexpected crashes.
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.S) {
Log.e(TAG, "Failed to access the cursor or handle drawable, skipped tinting.", e);
final Throwable throwable = new Throwable(
"This is not a crash. See https://crbug.com/1263630 for details.", e);
final Callback<Throwable> reportExceptionCallback =
((Callback<Throwable>) view.getTag(R.id.report_exception_callback));
reportExceptionCallback.onResult(throwable);
} else {
throw e;
}
}
}
private UrlBarViewBinder() {}
}