예제 #1
0
파일: Native.cs 프로젝트: zintus/yoga
 public static extern void YGNodeStyleSetPaddingPercent(YGNodeHandle node, YogaEdge edge, float padding);
 public static extern YogaJustify YGNodeStyleGetJustifyContent(YGNodeHandle node);
 public static extern YogaAlign YGNodeStyleGetAlignContent(YGNodeHandle node);
 public static extern void YGNodeStyleSetDirection(YGNodeHandle node, YogaDirection direction);
 public static extern YogaFlexDirection YGNodeStyleGetFlexDirection(YGNodeHandle node);
 public static extern void YGNodeSetMeasureFunc(
     YGNodeHandle node,
     [MarshalAs(UnmanagedType.FunctionPtr)] YogaMeasureFunc measureFunc);
 public static extern void YGNodeSetHasNewLayout(
     YGNodeHandle node,
     [MarshalAs(UnmanagedType.I1)] bool hasNewLayout);
예제 #8
0
파일: Native.cs 프로젝트: zintus/yoga
 public static extern float YGNodeLayoutGetHeight(YGNodeHandle node);
예제 #9
0
파일: Native.cs 프로젝트: zintus/yoga
 public static extern float YGNodeLayoutGetMargin(YGNodeHandle node, YogaEdge edge);
예제 #10
0
파일: Native.cs 프로젝트: zintus/yoga
 public static extern float YGNodeLayoutGetBottom(YGNodeHandle node);
예제 #11
0
파일: Native.cs 프로젝트: zintus/yoga
 public static extern float YGNodeLayoutGetWidth(YGNodeHandle node);
예제 #12
0
파일: Native.cs 프로젝트: zintus/yoga
 public static extern float YGNodeStyleGetBorder(YGNodeHandle node, YogaEdge edge);
예제 #13
0
파일: Native.cs 프로젝트: zintus/yoga
 public static extern void YGNodeStyleSetBorder(YGNodeHandle node, YogaEdge edge, float border);
예제 #14
0
파일: Native.cs 프로젝트: zintus/yoga
 public static extern YogaValueType YGNodeStyleGetPadding(YGNodeHandle node, YogaEdge edge);
 public static extern void YGNodePrint(YGNodeHandle node, YogaPrintOptions options);
예제 #16
0
파일: Native.cs 프로젝트: zintus/yoga
 public static extern float YGNodeLayoutGetPadding(YGNodeHandle node, YogaEdge edge);
 public static extern void YGNodeCopyStyle(YGNodeHandle dstNode, YGNodeHandle srcNode);
예제 #18
0
파일: Native.cs 프로젝트: zintus/yoga
 public static extern YogaDirection YGNodeLayoutGetDirection(YGNodeHandle node);
 public static extern void YGNodeSetBaselineFunc(
     YGNodeHandle node,
     [MarshalAs(UnmanagedType.FunctionPtr)] YogaBaselineFunc baselineFunc);
예제 #20
0
파일: Native.cs 프로젝트: zintus/yoga
 public static extern void YGNodeReset(YGNodeHandle node);
 public static extern bool YGNodeGetHasNewLayout(YGNodeHandle node);
예제 #22
0
파일: Native.cs 프로젝트: zintus/yoga
 public static extern void YGNodeInsertChild(
     YGNodeHandle node,
     YGNodeHandle child,
     uint index);
 public static extern void YGNodeStyleSetFlexDirection(YGNodeHandle node, YogaFlexDirection flexDirection);
예제 #24
0
파일: Native.cs 프로젝트: zintus/yoga
 public static extern void YGNodeRemoveChild(YGNodeHandle node, YGNodeHandle child);
 public static extern void YGNodeStyleSetJustifyContent(YGNodeHandle node, YogaJustify justifyContent);
예제 #26
0
파일: Native.cs 프로젝트: zintus/yoga
 public static extern void YGNodeCalculateLayout(
     YGNodeHandle node,
     float availableWidth,
     float availableHeight,
     YogaDirection parentDirection);
 public static extern void YGNodeStyleSetAlignContent(YGNodeHandle node, YogaAlign alignContent);
 public static extern bool YGNodeIsDirty(YGNodeHandle node);
 public static extern void YGNodeStyleSetAlignItems(YGNodeHandle node, YogaAlign alignItems);
예제 #30
0
파일: Native.cs 프로젝트: zintus/yoga
 public static extern YogaValueType YGNodeStyleGetMargin(YGNodeHandle node, YogaEdge edge);