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

73 lines
2.2 KiB
Java

package androidx.constraintlayout.solver.state.helpers;
import androidx.constraintlayout.solver.state.ConstraintReference;
import androidx.constraintlayout.solver.state.HelperReference;
import androidx.constraintlayout.solver.state.State;
import java.util.Iterator;
public class AlignVerticallyReference extends HelperReference {
private float mBias = 0.5f;
private Object mBottomToBottom;
private Object mBottomToTop;
private Object mTopToBottom;
private Object mTopToTop;
public AlignVerticallyReference(State state) {
super(state, State.Helper.ALIGN_VERTICALLY);
}
@Override // androidx.constraintlayout.solver.state.HelperReference
public void apply() {
Iterator<Object> it = this.mReferences.iterator();
while (it.hasNext()) {
ConstraintReference constraints = this.mState.constraints(it.next());
constraints.clearVertical();
Object obj = this.mTopToTop;
if (obj != null) {
constraints.topToTop(obj);
} else {
Object obj2 = this.mTopToBottom;
if (obj2 != null) {
constraints.topToBottom(obj2);
} else {
constraints.topToTop(State.PARENT);
}
}
Object obj3 = this.mBottomToTop;
if (obj3 != null) {
constraints.bottomToTop(obj3);
} else {
Object obj4 = this.mBottomToBottom;
if (obj4 != null) {
constraints.bottomToBottom(obj4);
} else {
constraints.bottomToBottom(State.PARENT);
}
}
float f = this.mBias;
if (f != 0.5f) {
constraints.verticalBias(f);
}
}
}
public void bias(float f) {
this.mBias = f;
}
public void bottomToBottom(Object obj) {
this.mBottomToBottom = obj;
}
public void bottomToTop(Object obj) {
this.mBottomToTop = obj;
}
public void topToBottom(Object obj) {
this.mTopToBottom = obj;
}
public void topToTop(Object obj) {
this.mTopToTop = obj;
}
}