blob: 249dce28e4c7b90ad565a6e1ccd5b594c3cd44cb [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// 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.toolbar;
import android.content.res.ColorStateList;
import android.view.View.OnClickListener;
import android.view.View.OnLongClickListener;
import org.chromium.ui.modelutil.PropertyKey;
import org.chromium.ui.modelutil.PropertyModel.WritableBooleanPropertyKey;
import org.chromium.ui.modelutil.PropertyModel.WritableIntPropertyKey;
import org.chromium.ui.modelutil.PropertyModel.WritableObjectPropertyKey;
/**
* The properties needed to render the tab switcher button.
*/
public interface TabSwitcherButtonProperties {
/** The current number of tabs. */
public static final WritableIntPropertyKey NUMBER_OF_TABS = new WritableIntPropertyKey();
/** The click listener for the tab switcher button. */
public static final WritableObjectPropertyKey<OnClickListener> ON_CLICK_LISTENER =
new WritableObjectPropertyKey<>();
/** The long click listener for the tab switcher button. */
public static final WritableObjectPropertyKey<OnLongClickListener> ON_LONG_CLICK_LISTENER =
new WritableObjectPropertyKey<>();
/** The button tint. */
public static final WritableObjectPropertyKey<ColorStateList> TINT =
new WritableObjectPropertyKey<>();
/** Whether the button is enabled. */
public static final WritableBooleanPropertyKey IS_ENABLED = new WritableBooleanPropertyKey();
public static final PropertyKey[] ALL_KEYS = new PropertyKey[] {
NUMBER_OF_TABS, ON_CLICK_LISTENER, ON_LONG_CLICK_LISTENER, TINT, IS_ENABLED};
}