// 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.
package org.chromium.chrome.browser.bookmarks;
import org.chromium.base.Callback;
import org.chromium.ui.modelutil.PropertyKey;
import org.chromium.ui.modelutil.PropertyModel.ReadableObjectPropertyKey;
import org.chromium.ui.modelutil.PropertyModel.WritableBooleanPropertyKey;
import org.chromium.ui.modelutil.PropertyModel.WritableObjectPropertyKey;
/** Responsible for hosting properties for {@link BookmarkSearchBoxRow}. */
class BookmarkSearchBoxRowProperties {
public static final ReadableObjectPropertyKey<Callback<String>> SEARCH_TEXT_CHANGE_CALLBACK =
new ReadableObjectPropertyKey<>();
public static final WritableObjectPropertyKey<String> SEARCH_TEXT =
new WritableObjectPropertyKey<>();
public static final ReadableObjectPropertyKey<Callback<Boolean>> FOCUS_CHANGE_CALLBACK =
new ReadableObjectPropertyKey<>();
public static final WritableBooleanPropertyKey HAS_FOCUS = new WritableBooleanPropertyKey();
public static final ReadableObjectPropertyKey<Runnable> CLEAR_SEARCH_TEXT_RUNNABLE =
new ReadableObjectPropertyKey<>();
public static final WritableBooleanPropertyKey CLEAR_SEARCH_TEXT_BUTTON_VISIBILITY =
new WritableBooleanPropertyKey();
public static final ReadableObjectPropertyKey<Callback<Boolean>> SHOPPING_CHIP_TOGGLE_CALLBACK =
new ReadableObjectPropertyKey<>();
public static final WritableBooleanPropertyKey SHOPPING_CHIP_SELECTED =
new WritableBooleanPropertyKey();
public static final WritableBooleanPropertyKey SHOPPING_CHIP_VISIBILITY =
new WritableBooleanPropertyKey();
public static final ReadableObjectPropertyKey<Integer> SHOPPING_CHIP_START_ICON_RES =
new ReadableObjectPropertyKey<>();
public static final ReadableObjectPropertyKey<Integer> SHOPPING_CHIP_TEXT_RES =
new ReadableObjectPropertyKey<>();
static final PropertyKey[] ALL_KEYS = {
BookmarkManagerProperties.BOOKMARK_LIST_ENTRY,
SEARCH_TEXT_CHANGE_CALLBACK,
SEARCH_TEXT,
FOCUS_CHANGE_CALLBACK,
HAS_FOCUS,
CLEAR_SEARCH_TEXT_RUNNABLE,
CLEAR_SEARCH_TEXT_BUTTON_VISIBILITY,
SHOPPING_CHIP_TOGGLE_CALLBACK,
SHOPPING_CHIP_SELECTED,
SHOPPING_CHIP_VISIBILITY,
SHOPPING_CHIP_START_ICON_RES,
SHOPPING_CHIP_TEXT_RES
};
}