discord-jadx/app/src/main/java/androidx/constraintlayout/solver/state/helpers/HorizontalChainReference.java

115 lines
4.1 KiB
Java

package androidx.constraintlayout.solver.state.helpers;
import androidx.constraintlayout.solver.state.ConstraintReference;
import androidx.constraintlayout.solver.state.State;
import java.util.Iterator;
public class HorizontalChainReference extends ChainReference {
private Object mEndToEnd;
private Object mEndToStart;
private Object mStartToEnd;
private Object mStartToStart;
/* renamed from: androidx.constraintlayout.solver.state.helpers.HorizontalChainReference$1 reason: invalid class name */
public static /* synthetic */ class AnonymousClass1 {
public static final /* synthetic */ int[] $SwitchMap$androidx$constraintlayout$solver$state$State$Chain;
static {
State.Chain.values();
int[] iArr = new int[3];
$SwitchMap$androidx$constraintlayout$solver$state$State$Chain = iArr;
try {
iArr[State.Chain.SPREAD.ordinal()] = 1;
} catch (NoSuchFieldError unused) {
}
try {
$SwitchMap$androidx$constraintlayout$solver$state$State$Chain[State.Chain.SPREAD_INSIDE.ordinal()] = 2;
} catch (NoSuchFieldError unused2) {
}
try {
$SwitchMap$androidx$constraintlayout$solver$state$State$Chain[State.Chain.PACKED.ordinal()] = 3;
} catch (NoSuchFieldError unused3) {
}
}
}
public HorizontalChainReference(State state) {
super(state, State.Helper.HORIZONTAL_CHAIN);
}
@Override // androidx.constraintlayout.solver.state.HelperReference
public void apply() {
Iterator<Object> it = this.mReferences.iterator();
while (it.hasNext()) {
this.mState.constraints(it.next()).clearHorizontal();
}
Iterator<Object> it2 = this.mReferences.iterator();
ConstraintReference constraintReference = null;
ConstraintReference constraintReference2 = null;
while (it2.hasNext()) {
ConstraintReference constraints = this.mState.constraints(it2.next());
if (constraintReference2 == null) {
Object obj = this.mStartToStart;
if (obj != null) {
constraints.startToStart(obj);
} else {
Object obj2 = this.mStartToEnd;
if (obj2 != null) {
constraints.startToEnd(obj2);
} else {
constraints.startToStart(State.PARENT);
}
}
constraintReference2 = constraints;
}
if (constraintReference != null) {
constraintReference.endToStart(constraints.getKey());
constraints.startToEnd(constraintReference.getKey());
}
constraintReference = constraints;
}
if (constraintReference != null) {
Object obj3 = this.mEndToStart;
if (obj3 != null) {
constraintReference.endToStart(obj3);
} else {
Object obj4 = this.mEndToEnd;
if (obj4 != null) {
constraintReference.endToEnd(obj4);
} else {
constraintReference.endToEnd(State.PARENT);
}
}
}
if (constraintReference2 != null) {
float f = this.mBias;
if (f != 0.5f) {
constraintReference2.horizontalBias(f);
}
}
int ordinal = this.mStyle.ordinal();
if (ordinal == 0) {
constraintReference2.setHorizontalChainStyle(0);
} else if (ordinal == 1) {
constraintReference2.setHorizontalChainStyle(1);
} else if (ordinal == 2) {
constraintReference2.setHorizontalChainStyle(2);
}
}
public void endToEnd(Object obj) {
this.mEndToEnd = obj;
}
public void endToStart(Object obj) {
this.mEndToStart = obj;
}
public void startToEnd(Object obj) {
this.mStartToEnd = obj;
}
public void startToStart(Object obj) {
this.mStartToStart = obj;
}
}