All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.android.view.selectiontoolbar.ShowInfo Maven / Gradle / Ivy

/*
 * Copyright (C) 2021 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package android.view.selectiontoolbar;

import android.annotation.NonNull;
import android.graphics.Rect;
import android.os.IBinder;
import android.os.Parcelable;

import com.android.internal.util.DataClass;

import java.util.List;


/**
 * The class holds menu information for render service to render the selection toolbar.
 *
 * @hide
 */
@DataClass(genToString = true, genEqualsHashCode = true)
public final class ShowInfo implements Parcelable {

    /**
     * The token that is used to identify the selection toolbar. This is initially set to 0
     * until a selection toolbar has been created for the showToolbar request.
     */
    private final long mWidgetToken;

    /**
     * If the toolbar menu items need to be re-layout.
     */
    private final boolean mLayoutRequired;

    /**
     * The menu items to be rendered in the selection toolbar.
     */
    @NonNull
    private final List mMenuItems;

    /**
     * A rect specifying where the selection toolbar on the screen.
     */
    @NonNull
    private final Rect mContentRect;

    /**
     * A recommended maximum suggested width of the selection toolbar.
     */
    private final int mSuggestedWidth;

    /**
     * The portion of the screen that is available to the selection toolbar.
     */
    @NonNull
    private final Rect mViewPortOnScreen;

    /**
     * The host application's input token, this allows the remote render service to transfer
     * the touch focus to the host application.
     */
    @NonNull
    private final IBinder mHostInputToken;



    // Code below generated by codegen v1.0.23.
    //
    // DO NOT MODIFY!
    // CHECKSTYLE:OFF Generated code
    //
    // To regenerate run:
    // $ codegen $ANDROID_BUILD_TOP/frameworks/base/core/java/android/view/selectiontoolbar/ShowInfo.java
    //
    // To exclude the generated code from IntelliJ auto-formatting enable (one-time):
    //   Settings > Editor > Code Style > Formatter Control
    //@formatter:off


    /**
     * Creates a new ShowInfo.
     *
     * @param widgetToken
     *   The token that is used to identify the selection toolbar. This is initially set to 0
     *   until a selection toolbar has been created for the showToolbar request.
     * @param layoutRequired
     *   If the toolbar menu items need to be re-layout.
     * @param menuItems
     *   The menu items to be rendered in the selection toolbar.
     * @param contentRect
     *   A rect specifying where the selection toolbar on the screen.
     * @param suggestedWidth
     *   A recommended maximum suggested width of the selection toolbar.
     * @param viewPortOnScreen
     *   The portion of the screen that is available to the selection toolbar.
     * @param hostInputToken
     *   The host application's input token, this allows the remote render service to transfer
     *   the touch focus to the host application.
     */
    @DataClass.Generated.Member
    public ShowInfo(
            long widgetToken,
            boolean layoutRequired,
            @NonNull List menuItems,
            @NonNull Rect contentRect,
            int suggestedWidth,
            @NonNull Rect viewPortOnScreen,
            @NonNull IBinder hostInputToken) {
        this.mWidgetToken = widgetToken;
        this.mLayoutRequired = layoutRequired;
        this.mMenuItems = menuItems;
        com.android.internal.util.AnnotationValidations.validate(
                NonNull.class, null, mMenuItems);
        this.mContentRect = contentRect;
        com.android.internal.util.AnnotationValidations.validate(
                NonNull.class, null, mContentRect);
        this.mSuggestedWidth = suggestedWidth;
        this.mViewPortOnScreen = viewPortOnScreen;
        com.android.internal.util.AnnotationValidations.validate(
                NonNull.class, null, mViewPortOnScreen);
        this.mHostInputToken = hostInputToken;
        com.android.internal.util.AnnotationValidations.validate(
                NonNull.class, null, mHostInputToken);

        // onConstructed(); // You can define this method to get a callback
    }

    /**
     * The token that is used to identify the selection toolbar. This is initially set to 0
     * until a selection toolbar has been created for the showToolbar request.
     */
    @DataClass.Generated.Member
    public long getWidgetToken() {
        return mWidgetToken;
    }

    /**
     * If the toolbar menu items need to be re-layout.
     */
    @DataClass.Generated.Member
    public boolean isLayoutRequired() {
        return mLayoutRequired;
    }

    /**
     * The menu items to be rendered in the selection toolbar.
     */
    @DataClass.Generated.Member
    public @NonNull List getMenuItems() {
        return mMenuItems;
    }

    /**
     * A rect specifying where the selection toolbar on the screen.
     */
    @DataClass.Generated.Member
    public @NonNull Rect getContentRect() {
        return mContentRect;
    }

    /**
     * A recommended maximum suggested width of the selection toolbar.
     */
    @DataClass.Generated.Member
    public int getSuggestedWidth() {
        return mSuggestedWidth;
    }

    /**
     * The portion of the screen that is available to the selection toolbar.
     */
    @DataClass.Generated.Member
    public @NonNull Rect getViewPortOnScreen() {
        return mViewPortOnScreen;
    }

    /**
     * The host application's input token, this allows the remote render service to transfer
     * the touch focus to the host application.
     */
    @DataClass.Generated.Member
    public @NonNull IBinder getHostInputToken() {
        return mHostInputToken;
    }

    @Override
    @DataClass.Generated.Member
    public String toString() {
        // You can override field toString logic by defining methods like:
        // String fieldNameToString() { ... }

        return "ShowInfo { " +
                "widgetToken = " + mWidgetToken + ", " +
                "layoutRequired = " + mLayoutRequired + ", " +
                "menuItems = " + mMenuItems + ", " +
                "contentRect = " + mContentRect + ", " +
                "suggestedWidth = " + mSuggestedWidth + ", " +
                "viewPortOnScreen = " + mViewPortOnScreen + ", " +
                "hostInputToken = " + mHostInputToken +
        " }";
    }

    @Override
    @DataClass.Generated.Member
    public boolean equals(@android.annotation.Nullable Object o) {
        // You can override field equality logic by defining either of the methods like:
        // boolean fieldNameEquals(ShowInfo other) { ... }
        // boolean fieldNameEquals(FieldType otherValue) { ... }

        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        @SuppressWarnings("unchecked")
        ShowInfo that = (ShowInfo) o;
        //noinspection PointlessBooleanExpression
        return true
                && mWidgetToken == that.mWidgetToken
                && mLayoutRequired == that.mLayoutRequired
                && java.util.Objects.equals(mMenuItems, that.mMenuItems)
                && java.util.Objects.equals(mContentRect, that.mContentRect)
                && mSuggestedWidth == that.mSuggestedWidth
                && java.util.Objects.equals(mViewPortOnScreen, that.mViewPortOnScreen)
                && java.util.Objects.equals(mHostInputToken, that.mHostInputToken);
    }

    @Override
    @DataClass.Generated.Member
    public int hashCode() {
        // You can override field hashCode logic by defining methods like:
        // int fieldNameHashCode() { ... }

        int _hash = 1;
        _hash = 31 * _hash + Long.hashCode(mWidgetToken);
        _hash = 31 * _hash + Boolean.hashCode(mLayoutRequired);
        _hash = 31 * _hash + java.util.Objects.hashCode(mMenuItems);
        _hash = 31 * _hash + java.util.Objects.hashCode(mContentRect);
        _hash = 31 * _hash + mSuggestedWidth;
        _hash = 31 * _hash + java.util.Objects.hashCode(mViewPortOnScreen);
        _hash = 31 * _hash + java.util.Objects.hashCode(mHostInputToken);
        return _hash;
    }

    @Override
    @DataClass.Generated.Member
    public void writeToParcel(@NonNull android.os.Parcel dest, int flags) {
        // You can override field parcelling by defining methods like:
        // void parcelFieldName(Parcel dest, int flags) { ... }

        byte flg = 0;
        if (mLayoutRequired) flg |= 0x2;
        dest.writeByte(flg);
        dest.writeLong(mWidgetToken);
        dest.writeParcelableList(mMenuItems, flags);
        dest.writeTypedObject(mContentRect, flags);
        dest.writeInt(mSuggestedWidth);
        dest.writeTypedObject(mViewPortOnScreen, flags);
        dest.writeStrongBinder(mHostInputToken);
    }

    @Override
    @DataClass.Generated.Member
    public int describeContents() { return 0; }

    /** @hide */
    @SuppressWarnings({"unchecked", "RedundantCast"})
    @DataClass.Generated.Member
    /* package-private */ ShowInfo(@NonNull android.os.Parcel in) {
        // You can override field unparcelling by defining methods like:
        // static FieldType unparcelFieldName(Parcel in) { ... }

        byte flg = in.readByte();
        boolean layoutRequired = (flg & 0x2) != 0;
        long widgetToken = in.readLong();
        List menuItems = new java.util.ArrayList<>();
        in.readParcelableList(menuItems, ToolbarMenuItem.class.getClassLoader());
        Rect contentRect = (Rect) in.readTypedObject(Rect.CREATOR);
        int suggestedWidth = in.readInt();
        Rect viewPortOnScreen = (Rect) in.readTypedObject(Rect.CREATOR);
        IBinder hostInputToken = (IBinder) in.readStrongBinder();

        this.mWidgetToken = widgetToken;
        this.mLayoutRequired = layoutRequired;
        this.mMenuItems = menuItems;
        com.android.internal.util.AnnotationValidations.validate(
                NonNull.class, null, mMenuItems);
        this.mContentRect = contentRect;
        com.android.internal.util.AnnotationValidations.validate(
                NonNull.class, null, mContentRect);
        this.mSuggestedWidth = suggestedWidth;
        this.mViewPortOnScreen = viewPortOnScreen;
        com.android.internal.util.AnnotationValidations.validate(
                NonNull.class, null, mViewPortOnScreen);
        this.mHostInputToken = hostInputToken;
        com.android.internal.util.AnnotationValidations.validate(
                NonNull.class, null, mHostInputToken);

        // onConstructed(); // You can define this method to get a callback
    }

    @DataClass.Generated.Member
    public static final @NonNull Parcelable.Creator CREATOR
            = new Parcelable.Creator() {
        @Override
        public ShowInfo[] newArray(int size) {
            return new ShowInfo[size];
        }

        @Override
        public ShowInfo createFromParcel(@NonNull android.os.Parcel in) {
            return new ShowInfo(in);
        }
    };

    @DataClass.Generated(
            time = 1643186262604L,
            codegenVersion = "1.0.23",
            sourceFile = "frameworks/base/core/java/android/view/selectiontoolbar/ShowInfo.java",
            inputSignatures = "private final  long mWidgetToken\nprivate final  boolean mLayoutRequired\nprivate final @android.annotation.NonNull java.util.List mMenuItems\nprivate final @android.annotation.NonNull android.graphics.Rect mContentRect\nprivate final  int mSuggestedWidth\nprivate final @android.annotation.NonNull android.graphics.Rect mViewPortOnScreen\nprivate final @android.annotation.NonNull android.os.IBinder mHostInputToken\nclass ShowInfo extends java.lang.Object implements [android.os.Parcelable]\[email protected](genToString=true, genEqualsHashCode=true)")
    @Deprecated
    private void __metadata() {}


    //@formatter:on
    // End of generated code

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy