/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the LICENSE * file in the root directory of this source tree. */ package com.facebook.yoga; import com.facebook.proguard.annotations.DoNotStrip; import com.facebook.soloader.SoLoader; @DoNotStrip public class YogaNative { static { SoLoader.loadLibrary("yoga"); } // YGConfig related static native long jni_YGConfigNew(); static native void jni_YGConfigFree(long nativePointer); static native void jni_YGConfigSetExperimentalFeatureEnabled(long nativePointer, int feature, boolean enabled); static native void jni_YGConfigSetUseWebDefaults(long nativePointer, boolean useWebDefaults); static native void jni_YGConfigSetPrintTreeFlag(long nativePointer, boolean enable); static native void jni_YGConfigSetPointScaleFactor(long nativePointer, float pixelsInPoint); static native void jni_YGConfigSetUseLegacyStretchBehaviour(long nativePointer, boolean useLegacyStretchBehaviour); static native void jni_YGConfigSetShouldDiffLayoutWithoutLegacyStretchBehaviour(long nativePointer, boolean shouldDiffLayoutWithoutLegacyStretchBehaviour); static native void jni_YGConfigSetLogger(long nativePointer, Object logger); // YGNode related static native long jni_YGNodeNew(); static native long jni_YGNodeNewWithConfig(long configPointer); static native void jni_YGNodeFree(long nativePointer); static native void jni_YGNodeReset(long nativePointer); static native void jni_YGNodeInsertChild(long nativePointer, long childPointer, int index); static native void jni_YGNodeSetIsReferenceBaseline(long nativePointer, boolean isReferenceBaseline); static native boolean jni_YGNodeIsReferenceBaseline(long nativePointer); static native void jni_YGNodeClearChildren(long nativePointer); static native void jni_YGNodeRemoveChild(long nativePointer, long childPointer); static native void jni_YGNodeCalculateLayout(long nativePointer, float width, float height, long[] nativePointers, YogaNodeJNIBase[] nodes); static native void jni_YGNodeMarkDirty(long nativePointer); static native void jni_YGNodeMarkDirtyAndPropogateToDescendants(long nativePointer); static native boolean jni_YGNodeIsDirty(long nativePointer); static native void jni_YGNodeCopyStyle(long dstNativePointer, long srcNativePointer); static native int jni_YGNodeStyleGetDirection(long nativePointer); static native void jni_YGNodeStyleSetDirection(long nativePointer, int direction); static native int jni_YGNodeStyleGetFlexDirection(long nativePointer); static native void jni_YGNodeStyleSetFlexDirection(long nativePointer, int flexDirection); static native int jni_YGNodeStyleGetJustifyContent(long nativePointer); static native void jni_YGNodeStyleSetJustifyContent(long nativePointer, int justifyContent); static native int jni_YGNodeStyleGetAlignItems(long nativePointer); static native void jni_YGNodeStyleSetAlignItems(long nativePointer, int alignItems); static native int jni_YGNodeStyleGetAlignSelf(long nativePointer); static native void jni_YGNodeStyleSetAlignSelf(long nativePointer, int alignSelf); static native int jni_YGNodeStyleGetAlignContent(long nativePointer); static native void jni_YGNodeStyleSetAlignContent(long nativePointer, int alignContent); static native int jni_YGNodeStyleGetPositionType(long nativePointer); static native void jni_YGNodeStyleSetPositionType(long nativePointer, int positionType); static native int jni_YGNodeStyleGetFlexWrap(long nativePointer); static native void jni_YGNodeStyleSetFlexWrap(long nativePointer, int wrapType); static native int jni_YGNodeStyleGetOverflow(long nativePointer); static native void jni_YGNodeStyleSetOverflow(long nativePointer, int overflow); static native int jni_YGNodeStyleGetDisplay(long nativePointer); static native void jni_YGNodeStyleSetDisplay(long nativePointer, int display); static native float jni_YGNodeStyleGetFlex(long nativePointer); static native void jni_YGNodeStyleSetFlex(long nativePointer, float flex); static native float jni_YGNodeStyleGetFlexGrow(long nativePointer); static native void jni_YGNodeStyleSetFlexGrow(long nativePointer, float flexGrow); static native float jni_YGNodeStyleGetFlexShrink(long nativePointer); static native void jni_YGNodeStyleSetFlexShrink(long nativePointer, float flexShrink); static native long jni_YGNodeStyleGetFlexBasis(long nativePointer); static native void jni_YGNodeStyleSetFlexBasis(long nativePointer, float flexBasis); static native void jni_YGNodeStyleSetFlexBasisPercent(long nativePointer, float percent); static native void jni_YGNodeStyleSetFlexBasisAuto(long nativePointer); static native long jni_YGNodeStyleGetMargin(long nativePointer, int edge); static native void jni_YGNodeStyleSetMargin(long nativePointer, int edge, float margin); static native void jni_YGNodeStyleSetMarginPercent(long nativePointer, int edge, float percent); static native void jni_YGNodeStyleSetMarginAuto(long nativePointer, int edge); static native long jni_YGNodeStyleGetPadding(long nativePointer, int edge); static native void jni_YGNodeStyleSetPadding(long nativePointer, int edge, float padding); static native void jni_YGNodeStyleSetPaddingPercent(long nativePointer, int edge, float percent); static native float jni_YGNodeStyleGetBorder(long nativePointer, int edge); static native void jni_YGNodeStyleSetBorder(long nativePointer, int edge, float border); static native long jni_YGNodeStyleGetPosition(long nativePointer, int edge); static native void jni_YGNodeStyleSetPosition(long nativePointer, int edge, float position); static native void jni_YGNodeStyleSetPositionPercent(long nativePointer, int edge, float percent); static native long jni_YGNodeStyleGetWidth(long nativePointer); static native void jni_YGNodeStyleSetWidth(long nativePointer, float width); static native void jni_YGNodeStyleSetWidthPercent(long nativePointer, float percent); static native void jni_YGNodeStyleSetWidthAuto(long nativePointer); static native long jni_YGNodeStyleGetHeight(long nativePointer); static native void jni_YGNodeStyleSetHeight(long nativePointer, float height); static native void jni_YGNodeStyleSetHeightPercent(long nativePointer, float percent); static native void jni_YGNodeStyleSetHeightAuto(long nativePointer); static native long jni_YGNodeStyleGetMinWidth(long nativePointer); static native void jni_YGNodeStyleSetMinWidth(long nativePointer, float minWidth); static native void jni_YGNodeStyleSetMinWidthPercent(long nativePointer, float percent); static native long jni_YGNodeStyleGetMinHeight(long nativePointer); static native void jni_YGNodeStyleSetMinHeight(long nativePointer, float minHeight); static native void jni_YGNodeStyleSetMinHeightPercent(long nativePointer, float percent); static native long jni_YGNodeStyleGetMaxWidth(long nativePointer); static native void jni_YGNodeStyleSetMaxWidth(long nativePointer, float maxWidth); static native void jni_YGNodeStyleSetMaxWidthPercent(long nativePointer, float percent); static native long jni_YGNodeStyleGetMaxHeight(long nativePointer); static native void jni_YGNodeStyleSetMaxHeight(long nativePointer, float maxheight); static native void jni_YGNodeStyleSetMaxHeightPercent(long nativePointer, float percent); static native float jni_YGNodeStyleGetAspectRatio(long nativePointer); static native void jni_YGNodeStyleSetAspectRatio(long nativePointer, float aspectRatio); static native void jni_YGNodeSetHasMeasureFunc(long nativePointer, boolean hasMeasureFunc); static native void jni_YGNodeSetHasBaselineFunc(long nativePointer, boolean hasMeasureFunc); static native void jni_YGNodePrint(long nativePointer); static native void jni_YGNodeSetStyleInputs(long nativePointer, float[] styleInputsArray, int size); static native long jni_YGNodeClone(long nativePointer); // JNI methods that use Vanilla JNI // YGConfig related static native long jni_YGConfigNewJNI(); // static native void jni_YGConfigFreeJNI(long nativePointer); static native void jni_YGConfigSetExperimentalFeatureEnabledJNI(long nativePointer, int feature, boolean enabled); static native void jni_YGConfigSetUseWebDefaultsJNI(long nativePointer, boolean useWebDefaults); static native void jni_YGConfigSetPrintTreeFlagJNI(long nativePointer, boolean enable); static native void jni_YGConfigSetPointScaleFactorJNI(long nativePointer, float pixelsInPoint); static native void jni_YGConfigSetUseLegacyStretchBehaviourJNI(long nativePointer, boolean useLegacyStretchBehaviour); static native void jni_YGConfigSetShouldDiffLayoutWithoutLegacyStretchBehaviourJNI(long nativePointer, boolean shouldDiffLayoutWithoutLegacyStretchBehaviour); // static native void jni_YGConfigSetLoggerJNI(long nativePointer, Object logger); static native void jni_YGNodeFreeJNI(long nativePointer); static native void jni_YGNodeResetJNI(long nativePointer); static native void jni_YGNodeInsertChildJNI(long nativePointer, long childPointer, int index); static native void jni_YGNodeSetIsReferenceBaselineJNI(long nativePointer, boolean isReferenceBaseline); static native boolean jni_YGNodeIsReferenceBaselineJNI(long nativePointer); static native void jni_YGNodeClearChildrenJNI(long nativePointer); static native void jni_YGNodeRemoveChildJNI(long nativePointer, long childPointer); static native void jni_YGNodeMarkDirtyJNI(long nativePointer); static native void jni_YGNodeMarkDirtyAndPropogateToDescendantsJNI(long nativePointer); static native boolean jni_YGNodeIsDirtyJNI(long nativePointer); static native void jni_YGNodeCopyStyleJNI(long dstNativePointer, long srcNativePointer); static native int jni_YGNodeStyleGetDirectionJNI(long nativePointer); static native void jni_YGNodeStyleSetDirectionJNI(long nativePointer, int direction); static native int jni_YGNodeStyleGetFlexDirectionJNI(long nativePointer); static native void jni_YGNodeStyleSetFlexDirectionJNI(long nativePointer, int flexDirection); static native int jni_YGNodeStyleGetJustifyContentJNI(long nativePointer); static native void jni_YGNodeStyleSetJustifyContentJNI(long nativePointer, int justifyContent); static native int jni_YGNodeStyleGetAlignItemsJNI(long nativePointer); static native void jni_YGNodeStyleSetAlignItemsJNI(long nativePointer, int alignItems); static native int jni_YGNodeStyleGetAlignSelfJNI(long nativePointer); static native void jni_YGNodeStyleSetAlignSelfJNI(long nativePointer, int alignSelf); static native int jni_YGNodeStyleGetAlignContentJNI(long nativePointer); static native void jni_YGNodeStyleSetAlignContentJNI(long nativePointer, int alignContent); static native int jni_YGNodeStyleGetPositionTypeJNI(long nativePointer); static native void jni_YGNodeStyleSetPositionTypeJNI(long nativePointer, int positionType); static native int jni_YGNodeStyleGetFlexWrapJNI(long nativePointer); static native void jni_YGNodeStyleSetFlexWrapJNI(long nativePointer, int wrapType); static native int jni_YGNodeStyleGetOverflowJNI(long nativePointer); static native void jni_YGNodeStyleSetOverflowJNI(long nativePointer, int overflow); static native int jni_YGNodeStyleGetDisplayJNI(long nativePointer); static native void jni_YGNodeStyleSetDisplayJNI(long nativePointer, int display); static native float jni_YGNodeStyleGetFlexJNI(long nativePointer); static native void jni_YGNodeStyleSetFlexJNI(long nativePointer, float flex); static native float jni_YGNodeStyleGetFlexGrowJNI(long nativePointer); static native void jni_YGNodeStyleSetFlexGrowJNI(long nativePointer, float flexGrow); static native float jni_YGNodeStyleGetFlexShrinkJNI(long nativePointer); static native void jni_YGNodeStyleSetFlexShrinkJNI(long nativePointer, float flexShrink); static native long jni_YGNodeStyleGetFlexBasisJNI(long nativePointer); static native void jni_YGNodeStyleSetFlexBasisJNI(long nativePointer, float flexBasis); static native void jni_YGNodeStyleSetFlexBasisPercentJNI(long nativePointer, float percent); static native void jni_YGNodeStyleSetFlexBasisAutoJNI(long nativePointer); static native long jni_YGNodeStyleGetMarginJNI(long nativePointer, int edge); static native void jni_YGNodeStyleSetMarginJNI(long nativePointer, int edge, float margin); static native void jni_YGNodeStyleSetMarginPercentJNI(long nativePointer, int edge, float percent); static native void jni_YGNodeStyleSetMarginAutoJNI(long nativePointer, int edge); static native long jni_YGNodeStyleGetPaddingJNI(long nativePointer, int edge); static native void jni_YGNodeStyleSetPaddingJNI(long nativePointer, int edge, float padding); static native void jni_YGNodeStyleSetPaddingPercentJNI(long nativePointer, int edge, float percent); static native float jni_YGNodeStyleGetBorderJNI(long nativePointer, int edge); static native void jni_YGNodeStyleSetBorderJNI(long nativePointer, int edge, float border); static native long jni_YGNodeStyleGetPositionJNI(long nativePointer, int edge); static native void jni_YGNodeStyleSetPositionJNI(long nativePointer, int edge, float position); static native void jni_YGNodeStyleSetPositionPercentJNI(long nativePointer, int edge, float percent); static native long jni_YGNodeStyleGetWidthJNI(long nativePointer); static native void jni_YGNodeStyleSetWidthJNI(long nativePointer, float width); static native void jni_YGNodeStyleSetWidthPercentJNI(long nativePointer, float percent); static native void jni_YGNodeStyleSetWidthAutoJNI(long nativePointer); static native long jni_YGNodeStyleGetHeightJNI(long nativePointer); static native void jni_YGNodeStyleSetHeightJNI(long nativePointer, float height); static native void jni_YGNodeStyleSetHeightPercentJNI(long nativePointer, float percent); static native void jni_YGNodeStyleSetHeightAutoJNI(long nativePointer); static native long jni_YGNodeStyleGetMinWidthJNI(long nativePointer); static native void jni_YGNodeStyleSetMinWidthJNI(long nativePointer, float minWidth); static native void jni_YGNodeStyleSetMinWidthPercentJNI(long nativePointer, float percent); static native long jni_YGNodeStyleGetMinHeightJNI(long nativePointer); static native void jni_YGNodeStyleSetMinHeightJNI(long nativePointer, float minHeight); static native void jni_YGNodeStyleSetMinHeightPercentJNI(long nativePointer, float percent); static native long jni_YGNodeStyleGetMaxWidthJNI(long nativePointer); static native void jni_YGNodeStyleSetMaxWidthJNI(long nativePointer, float maxWidth); static native void jni_YGNodeStyleSetMaxWidthPercentJNI(long nativePointer, float percent); static native long jni_YGNodeStyleGetMaxHeightJNI(long nativePointer); static native void jni_YGNodeStyleSetMaxHeightJNI(long nativePointer, float maxheight); static native void jni_YGNodeStyleSetMaxHeightPercentJNI(long nativePointer, float percent); static native float jni_YGNodeStyleGetAspectRatioJNI(long nativePointer); static native void jni_YGNodeStyleSetAspectRatioJNI(long nativePointer, float aspectRatio); static native void jni_YGNodePrintJNI(long nativePointer); static native void jni_YGNodeSetStyleInputsJNI(long nativePointer, float[] styleInputsArray, int size); static native long jni_YGNodeCloneJNI(long nativePointer); }