Rabbit-R1/switch port/java/sources/androidx/compose/foundation/ExcludeFromSystemGestureElement.java
2024-05-21 17:08:36 -04:00

63 lines
3.9 KiB
Java

package androidx.compose.foundation;
import androidx.compose.ui.geometry.Rect;
import androidx.compose.ui.layout.LayoutCoordinates;
import androidx.compose.ui.node.ModifierNodeElement;
import androidx.compose.ui.platform.InspectorInfo;
import kotlin.Metadata;
import kotlin.jvm.functions.Function1;
import kotlin.jvm.internal.Intrinsics;
/* compiled from: SystemGestureExclusion.kt */
@Metadata(d1 = {"\u0000>\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0005\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\b\u0003\u0018\u00002\b\u0012\u0004\u0012\u00020\u00020\u0001B\u001b\u0012\u0014\u0010\u0003\u001a\u0010\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u0006\u0018\u00010\u0004¢\u0006\u0002\u0010\u0007J\b\u0010\n\u001a\u00020\u0002H\u0017J\u0013\u0010\u000b\u001a\u00020\f2\b\u0010\r\u001a\u0004\u0018\u00010\u000eH\u0096\u0002J\b\u0010\u000f\u001a\u00020\u0010H\u0016J\u0010\u0010\u0011\u001a\u00020\u00122\u0006\u0010\u0013\u001a\u00020\u0002H\u0016J\f\u0010\u0014\u001a\u00020\u0012*\u00020\u0015H\u0016R\u001f\u0010\u0003\u001a\u0010\u0012\u0004\u0012\u00020\u0005\u0012\u0004\u0012\u00020\u0006\u0018\u00010\u0004¢\u0006\b\n\u0000\u001a\u0004\b\b\u0010\\u0006\u0016"}, d2 = {"Landroidx/compose/foundation/ExcludeFromSystemGestureElement;", "Landroidx/compose/ui/node/ModifierNodeElement;", "Landroidx/compose/foundation/ExcludeFromSystemGestureNode;", "exclusion", "Lkotlin/Function1;", "Landroidx/compose/ui/layout/LayoutCoordinates;", "Landroidx/compose/ui/geometry/Rect;", "(Lkotlin/jvm/functions/Function1;)V", "getExclusion", "()Lkotlin/jvm/functions/Function1;", "create", "equals", "", "other", "", "hashCode", "", "update", "", "node", "inspectableProperties", "Landroidx/compose/ui/platform/InspectorInfo;", "foundation_release"}, k = 1, mv = {1, 8, 0}, xi = 48)
/* loaded from: classes.dex */
final class ExcludeFromSystemGestureElement extends ModifierNodeElement<ExcludeFromSystemGestureNode> {
private final Function1<LayoutCoordinates, Rect> exclusion;
public final Function1<LayoutCoordinates, Rect> getExclusion() {
return this.exclusion;
}
/* JADX WARN: Multi-variable type inference failed */
public ExcludeFromSystemGestureElement(Function1<? super LayoutCoordinates, Rect> function1) {
this.exclusion = function1;
}
/* JADX WARN: Can't rename method to resolve collision */
@Override // androidx.compose.ui.node.ModifierNodeElement
public ExcludeFromSystemGestureNode create() {
return new ExcludeFromSystemGestureNode(this.exclusion);
}
@Override // androidx.compose.ui.node.ModifierNodeElement
public void update(ExcludeFromSystemGestureNode node) {
Intrinsics.checkNotNullParameter(node, "node");
node.setExclusion(this.exclusion);
}
@Override // androidx.compose.ui.node.ModifierNodeElement
public int hashCode() {
Function1<LayoutCoordinates, Rect> function1 = this.exclusion;
if (function1 != null) {
return function1.hashCode();
}
return 0;
}
@Override // androidx.compose.ui.node.ModifierNodeElement
public boolean equals(Object other) {
if (other instanceof ExcludeFromSystemGestureElement) {
return Intrinsics.areEqual(this.exclusion, ((ExcludeFromSystemGestureElement) other).exclusion);
}
return false;
}
@Override // androidx.compose.ui.node.ModifierNodeElement
public void inspectableProperties(InspectorInfo inspectorInfo) {
Intrinsics.checkNotNullParameter(inspectorInfo, "<this>");
inspectorInfo.setName("systemGestureExclusion");
if (this.exclusion != null) {
inspectorInfo.getProperties().set("exclusion", this.exclusion);
}
}
}