Merge branch 'master' into yogakit-edge-bugs
This commit is contained in:
13
csharp/Facebook.Yoga/BaselineFunction.cs
Normal file
13
csharp/Facebook.Yoga/BaselineFunction.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
/**
|
||||
* Copyright (c) 2014-present, Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD-style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
|
||||
namespace Facebook.Yoga
|
||||
{
|
||||
public delegate float BaselineFunction(YogaNode node, float width, float height);
|
||||
}
|
@@ -9,6 +9,7 @@
|
||||
|
||||
namespace Facebook.Yoga
|
||||
{
|
||||
[System.Obsolete]
|
||||
public class Border
|
||||
{
|
||||
public float? Top;
|
||||
|
@@ -9,12 +9,14 @@
|
||||
<Import_RootNamespace>Facebook.Yoga.Shared</Import_RootNamespace>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="$(MSBuildThisFileDirectory)BaselineFunction.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Border.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)MeasureFunction.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)MeasureOutput.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Native.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)Spacing.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)YogaAlign.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)YogaBaselineFunc.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)YogaConstants.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)YogaDimension.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)YogaDirection.cs" />
|
||||
@@ -27,6 +29,7 @@
|
||||
<Compile Include="$(MSBuildThisFileDirectory)YogaMeasureFunc.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)YogaMeasureMode.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)YogaNode.Create.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)YogaNode.Spacing.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)YogaNode.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)YogaOverflow.cs" />
|
||||
<Compile Include="$(MSBuildThisFileDirectory)YogaPositionType.cs" />
|
||||
|
@@ -104,8 +104,9 @@ namespace Facebook.Yoga
|
||||
[MarshalAs(UnmanagedType.FunctionPtr)] YogaMeasureFunc measureFunc);
|
||||
|
||||
[DllImport(DllName, ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
|
||||
[return: MarshalAs(UnmanagedType.FunctionPtr)]
|
||||
public static extern YogaMeasureFunc YGNodeGetMeasureFunc(YGNodeHandle node);
|
||||
public static extern void YGNodeSetBaselineFunc(
|
||||
YGNodeHandle node,
|
||||
[MarshalAs(UnmanagedType.FunctionPtr)] YogaBaselineFunc baselineFunc);
|
||||
|
||||
[DllImport(DllName, ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern void YGNodeSetHasNewLayout(YGNodeHandle node, [MarshalAs(UnmanagedType.I1)] bool hasNewLayout);
|
||||
|
@@ -9,6 +9,7 @@
|
||||
|
||||
namespace Facebook.Yoga
|
||||
{
|
||||
[System.Obsolete]
|
||||
public class Spacing
|
||||
{
|
||||
public YogaValue? Top;
|
||||
|
17
csharp/Facebook.Yoga/YogaBaselineFunc.cs
Normal file
17
csharp/Facebook.Yoga/YogaBaselineFunc.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* Copyright (c) 2014-present, Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD-style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace Facebook.Yoga
|
||||
{
|
||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
||||
public delegate float YogaBaselineFunc(IntPtr node, float width, float height);
|
||||
}
|
@@ -13,6 +13,7 @@ namespace Facebook.Yoga
|
||||
{
|
||||
public partial class YogaNode
|
||||
{
|
||||
[Obsolete("use Object Initializer")]
|
||||
public static YogaNode Create(
|
||||
YogaDirection? styleDirection = null,
|
||||
YogaFlexDirection? flexDirection = null,
|
||||
@@ -109,22 +110,22 @@ namespace Facebook.Yoga
|
||||
{
|
||||
if (position.Top.HasValue)
|
||||
{
|
||||
node.SetPosition(YogaEdge.Top, position.Top.Value);
|
||||
node.Top = position.Top.Value;
|
||||
}
|
||||
|
||||
if (position.Bottom.HasValue)
|
||||
{
|
||||
node.SetPosition(YogaEdge.Bottom, position.Bottom.Value);
|
||||
node.Bottom = position.Bottom.Value;
|
||||
}
|
||||
|
||||
if (position.Left.HasValue)
|
||||
{
|
||||
node.SetPosition(YogaEdge.Left, position.Left.Value);
|
||||
node.Left = position.Left.Value;
|
||||
}
|
||||
|
||||
if (position.Right.HasValue)
|
||||
{
|
||||
node.SetPosition(YogaEdge.Right, position.Right.Value);
|
||||
node.Right = position.Right.Value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -132,22 +133,22 @@ namespace Facebook.Yoga
|
||||
{
|
||||
if (margin.Top.HasValue)
|
||||
{
|
||||
node.SetMargin(YogaEdge.Top, margin.Top.Value);
|
||||
node.MarginTop = margin.Top.Value;
|
||||
}
|
||||
|
||||
if (margin.Bottom.HasValue)
|
||||
{
|
||||
node.SetMargin(YogaEdge.Bottom, margin.Bottom.Value);
|
||||
node.MarginBottom = margin.Bottom.Value;
|
||||
}
|
||||
|
||||
if (margin.Left.HasValue)
|
||||
{
|
||||
node.SetMargin(YogaEdge.Left, margin.Left.Value);
|
||||
node.MarginLeft = margin.Left.Value;
|
||||
}
|
||||
|
||||
if (margin.Right.HasValue)
|
||||
{
|
||||
node.SetMargin(YogaEdge.Right, margin.Right.Value);
|
||||
node.MarginRight = margin.Right.Value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -155,22 +156,22 @@ namespace Facebook.Yoga
|
||||
{
|
||||
if (padding.Top.HasValue)
|
||||
{
|
||||
node.SetPadding(YogaEdge.Top, padding.Top.Value);
|
||||
node.PaddingTop = padding.Top.Value;
|
||||
}
|
||||
|
||||
if (padding.Bottom.HasValue)
|
||||
{
|
||||
node.SetPadding(YogaEdge.Bottom, padding.Bottom.Value);
|
||||
node.PaddingBottom = padding.Bottom.Value;
|
||||
}
|
||||
|
||||
if (padding.Left.HasValue)
|
||||
{
|
||||
node.SetPadding(YogaEdge.Left, padding.Left.Value);
|
||||
node.PaddingLeft = padding.Left.Value;
|
||||
}
|
||||
|
||||
if (padding.Right.HasValue)
|
||||
{
|
||||
node.SetPadding(YogaEdge.Right, padding.Right.Value);
|
||||
node.PaddingRight = padding.Right.Value;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -178,22 +179,22 @@ namespace Facebook.Yoga
|
||||
{
|
||||
if (border.Top.HasValue)
|
||||
{
|
||||
node.SetBorder(YogaEdge.Top, border.Top.Value);
|
||||
node.BorderTopWidth = border.Top.Value;
|
||||
}
|
||||
|
||||
if (border.Bottom.HasValue)
|
||||
{
|
||||
node.SetBorder(YogaEdge.Bottom, border.Bottom.Value);
|
||||
node.BorderBottomWidth = border.Bottom.Value;
|
||||
}
|
||||
|
||||
if (border.Left.HasValue)
|
||||
{
|
||||
node.SetBorder(YogaEdge.Left, border.Left.Value);
|
||||
node.BorderLeftWidth = border.Left.Value;
|
||||
}
|
||||
|
||||
if (border.Right.HasValue)
|
||||
{
|
||||
node.SetBorder(YogaEdge.Right, border.Right.Value);
|
||||
node.BorderRightWidth = border.Right.Value;
|
||||
}
|
||||
}
|
||||
|
||||
|
503
csharp/Facebook.Yoga/YogaNode.Spacing.cs
Normal file
503
csharp/Facebook.Yoga/YogaNode.Spacing.cs
Normal file
@@ -0,0 +1,503 @@
|
||||
/**
|
||||
* Copyright (c) 2014-present, Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD-style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
namespace Facebook.Yoga
|
||||
{
|
||||
public partial class YogaNode
|
||||
{
|
||||
public YogaValue Left
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetPosition(_ygNode, YogaEdge.Left);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStylePosition(YogaEdge.Left, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue Top
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetPosition(_ygNode, YogaEdge.Top);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStylePosition(YogaEdge.Top, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue Right
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetPosition(_ygNode, YogaEdge.Right);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStylePosition(YogaEdge.Right, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue Bottom
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetPosition(_ygNode, YogaEdge.Bottom);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStylePosition(YogaEdge.Bottom, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue Start
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetPosition(_ygNode, YogaEdge.Start);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStylePosition(YogaEdge.Start, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue End
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetPosition(_ygNode, YogaEdge.End);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStylePosition(YogaEdge.End, value);
|
||||
}
|
||||
}
|
||||
|
||||
private void SetStylePosition(YogaEdge edge, YogaValue value)
|
||||
{
|
||||
if (value.Unit == YogaUnit.Percent)
|
||||
{
|
||||
Native.YGNodeStyleSetPositionPercent(_ygNode, edge, value.Value);
|
||||
}
|
||||
else
|
||||
{
|
||||
Native.YGNodeStyleSetPosition(_ygNode, edge, value.Value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue MarginLeft
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetMargin(_ygNode, YogaEdge.Left);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStyleMargin(YogaEdge.Left, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue MarginTop
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetMargin(_ygNode, YogaEdge.Top);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStyleMargin(YogaEdge.Top, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue MarginRight
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetMargin(_ygNode, YogaEdge.Right);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStyleMargin(YogaEdge.Right, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue MarginBottom
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetMargin(_ygNode, YogaEdge.Bottom);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStyleMargin(YogaEdge.Bottom, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue MarginStart
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetMargin(_ygNode, YogaEdge.Start);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStyleMargin(YogaEdge.Start, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue MarginEnd
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetMargin(_ygNode, YogaEdge.End);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStyleMargin(YogaEdge.End, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue MarginHorizontal
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetMargin(_ygNode, YogaEdge.Horizontal);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStyleMargin(YogaEdge.Horizontal, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue MarginVertical
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetMargin(_ygNode, YogaEdge.Vertical);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStyleMargin(YogaEdge.Vertical, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue Margin
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetMargin(_ygNode, YogaEdge.All);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStyleMargin(YogaEdge.All, value);
|
||||
}
|
||||
}
|
||||
|
||||
private void SetStyleMargin(YogaEdge edge, YogaValue value)
|
||||
{
|
||||
if (value.Unit == YogaUnit.Percent)
|
||||
{
|
||||
Native.YGNodeStyleSetMarginPercent(_ygNode, edge, value.Value);
|
||||
}
|
||||
else
|
||||
{
|
||||
Native.YGNodeStyleSetMargin(_ygNode, edge, value.Value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue PaddingLeft
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetPadding(_ygNode, YogaEdge.Left);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStylePadding(YogaEdge.Left, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue PaddingTop
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetPadding(_ygNode, YogaEdge.Top);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStylePadding(YogaEdge.Top, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue PaddingRight
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetPadding(_ygNode, YogaEdge.Right);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStylePadding(YogaEdge.Right, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue PaddingBottom
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetPadding(_ygNode, YogaEdge.Bottom);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStylePadding(YogaEdge.Bottom, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue PaddingStart
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetPadding(_ygNode, YogaEdge.Start);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStylePadding(YogaEdge.Start, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue PaddingEnd
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetPadding(_ygNode, YogaEdge.End);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStylePadding(YogaEdge.End, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue PaddingHorizontal
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetPadding(_ygNode, YogaEdge.Horizontal);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStylePadding(YogaEdge.Horizontal, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue PaddingVertical
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetPadding(_ygNode, YogaEdge.Vertical);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStylePadding(YogaEdge.Vertical, value);
|
||||
}
|
||||
}
|
||||
|
||||
public YogaValue Padding
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetPadding(_ygNode, YogaEdge.All);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
SetStylePadding(YogaEdge.All, value);
|
||||
}
|
||||
}
|
||||
|
||||
private void SetStylePadding(YogaEdge edge, YogaValue value)
|
||||
{
|
||||
if (value.Unit == YogaUnit.Percent)
|
||||
{
|
||||
Native.YGNodeStyleSetPaddingPercent(_ygNode, edge, value.Value);
|
||||
}
|
||||
else
|
||||
{
|
||||
Native.YGNodeStyleSetPadding(_ygNode, edge, value.Value);
|
||||
}
|
||||
}
|
||||
|
||||
public float BorderLeftWidth
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetBorder(_ygNode, YogaEdge.Left);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
Native.YGNodeStyleSetBorder(_ygNode, YogaEdge.Left, value);
|
||||
}
|
||||
}
|
||||
|
||||
public float BorderTopWidth
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetBorder(_ygNode, YogaEdge.Top);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
Native.YGNodeStyleSetBorder(_ygNode, YogaEdge.Top, value);
|
||||
}
|
||||
}
|
||||
|
||||
public float BorderRightWidth
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetBorder(_ygNode, YogaEdge.Right);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
Native.YGNodeStyleSetBorder(_ygNode, YogaEdge.Right, value);
|
||||
}
|
||||
}
|
||||
|
||||
public float BorderBottomWidth
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetBorder(_ygNode, YogaEdge.Bottom);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
Native.YGNodeStyleSetBorder(_ygNode, YogaEdge.Bottom, value);
|
||||
}
|
||||
}
|
||||
|
||||
public float BorderStartWidth
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetBorder(_ygNode, YogaEdge.Start);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
Native.YGNodeStyleSetBorder(_ygNode, YogaEdge.Start, value);
|
||||
}
|
||||
}
|
||||
|
||||
public float BorderEndWidth
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetBorder(_ygNode, YogaEdge.End);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
Native.YGNodeStyleSetBorder(_ygNode, YogaEdge.End, value);
|
||||
}
|
||||
}
|
||||
|
||||
public float BorderWidth
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeStyleGetBorder(_ygNode, YogaEdge.All);
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
Native.YGNodeStyleSetBorder(_ygNode, YogaEdge.All, value);
|
||||
}
|
||||
}
|
||||
|
||||
public float LayoutPaddingLeft
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeLayoutGetPadding(_ygNode, YogaEdge.Left);
|
||||
}
|
||||
}
|
||||
|
||||
public float LayoutPaddingTop
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeLayoutGetPadding(_ygNode, YogaEdge.Top);
|
||||
}
|
||||
}
|
||||
|
||||
public float LayoutPaddingRight
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeLayoutGetPadding(_ygNode, YogaEdge.Right);
|
||||
}
|
||||
}
|
||||
|
||||
public float LayoutPaddingBottom
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeLayoutGetPadding(_ygNode, YogaEdge.Bottom);
|
||||
}
|
||||
}
|
||||
|
||||
public float LayoutPaddingStart
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeLayoutGetPadding(_ygNode, YogaEdge.Start);
|
||||
}
|
||||
}
|
||||
|
||||
public float LayoutPaddingEnd
|
||||
{
|
||||
get
|
||||
{
|
||||
return Native.YGNodeLayoutGetPadding(_ygNode, YogaEdge.End);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -21,6 +21,8 @@ namespace Facebook.Yoga
|
||||
private List<YogaNode> _children;
|
||||
private MeasureFunction _measureFunction;
|
||||
private YogaMeasureFunc _ygMeasureFunc;
|
||||
private BaselineFunction _baselineFunction;
|
||||
private YogaBaselineFunc _ygBaselineFunc;
|
||||
private object _data;
|
||||
|
||||
public YogaNode()
|
||||
@@ -34,9 +36,16 @@ namespace Facebook.Yoga
|
||||
}
|
||||
}
|
||||
|
||||
public YogaNode(YogaNode srcNode)
|
||||
: this()
|
||||
{
|
||||
CopyStyle(srcNode);
|
||||
}
|
||||
|
||||
public void Reset()
|
||||
{
|
||||
_measureFunction = null;
|
||||
_baselineFunction = null;
|
||||
_data = null;
|
||||
|
||||
Native.YGNodeReset(_ygNode);
|
||||
@@ -84,6 +93,14 @@ namespace Facebook.Yoga
|
||||
}
|
||||
}
|
||||
|
||||
public bool IsBaselineDefined
|
||||
{
|
||||
get
|
||||
{
|
||||
return _baselineFunction != null;
|
||||
}
|
||||
}
|
||||
|
||||
public void CopyStyle(YogaNode srcNode)
|
||||
{
|
||||
Native.YGNodeCopyStyle(_ygNode, srcNode._ygNode);
|
||||
@@ -247,11 +264,13 @@ namespace Facebook.Yoga
|
||||
}
|
||||
}
|
||||
|
||||
[Obsolete("use Margin properties")]
|
||||
public YogaValue GetMargin(YogaEdge edge)
|
||||
{
|
||||
return Native.YGNodeStyleGetMargin(_ygNode, edge);
|
||||
}
|
||||
|
||||
[Obsolete("use Margin properties")]
|
||||
public void SetMargin(YogaEdge edge, YogaValue value)
|
||||
{
|
||||
if (value.Unit == YogaUnit.Percent)
|
||||
@@ -264,11 +283,13 @@ namespace Facebook.Yoga
|
||||
}
|
||||
}
|
||||
|
||||
[Obsolete("use Padding properties")]
|
||||
public YogaValue GetPadding(YogaEdge edge)
|
||||
{
|
||||
return Native.YGNodeStyleGetPadding(_ygNode, edge);
|
||||
}
|
||||
|
||||
[Obsolete("use Padding properties")]
|
||||
public void SetPadding(YogaEdge edge, YogaValue value)
|
||||
{
|
||||
if (value.Unit == YogaUnit.Percent)
|
||||
@@ -281,21 +302,25 @@ namespace Facebook.Yoga
|
||||
}
|
||||
}
|
||||
|
||||
[Obsolete("use BorderWidth properties")]
|
||||
public float GetBorder(YogaEdge edge)
|
||||
{
|
||||
return Native.YGNodeStyleGetBorder(_ygNode, edge);
|
||||
}
|
||||
|
||||
[Obsolete("use BorderWidth properties")]
|
||||
public void SetBorder(YogaEdge edge, float border)
|
||||
{
|
||||
Native.YGNodeStyleSetBorder(_ygNode, edge, border);
|
||||
}
|
||||
|
||||
[Obsolete("use Position properties")]
|
||||
public YogaValue GetPosition(YogaEdge edge)
|
||||
{
|
||||
return Native.YGNodeStyleGetPosition(_ygNode, edge);
|
||||
}
|
||||
|
||||
[Obsolete("use Position properties")]
|
||||
public void SetPosition(YogaEdge edge, YogaValue value)
|
||||
{
|
||||
if (value.Unit == YogaUnit.Percent)
|
||||
@@ -308,6 +333,7 @@ namespace Facebook.Yoga
|
||||
}
|
||||
}
|
||||
|
||||
[Obsolete("use LayoutPadding properties")]
|
||||
public float GetLayoutPadding(YogaEdge edge)
|
||||
{
|
||||
return Native.YGNodeLayoutGetPadding(_ygNode, edge);
|
||||
@@ -585,6 +611,13 @@ namespace Facebook.Yoga
|
||||
Native.YGNodeSetMeasureFunc(_ygNode, _ygMeasureFunc);
|
||||
}
|
||||
|
||||
public void SetBaselineFunction(BaselineFunction baselineFunction)
|
||||
{
|
||||
_baselineFunction = baselineFunction;
|
||||
_ygBaselineFunc = baselineFunction != null ? BaselineInternal : (YogaBaselineFunc)null;
|
||||
Native.YGNodeSetBaselineFunc(_ygNode, _ygBaselineFunc);
|
||||
}
|
||||
|
||||
public void CalculateLayout()
|
||||
{
|
||||
Native.YGNodeCalculateLayout(
|
||||
@@ -609,6 +642,16 @@ namespace Facebook.Yoga
|
||||
return _measureFunction(this, width, widthMode, height, heightMode);
|
||||
}
|
||||
|
||||
private float BaselineInternal(IntPtr node, float width, float height)
|
||||
{
|
||||
if (_baselineFunction == null)
|
||||
{
|
||||
throw new InvalidOperationException("Baseline function is not defined.");
|
||||
}
|
||||
|
||||
return _baselineFunction(this, width, height);
|
||||
}
|
||||
|
||||
public string Print(YogaPrintOptions options =
|
||||
YogaPrintOptions.Layout|YogaPrintOptions.Style|YogaPrintOptions.Children)
|
||||
{
|
||||
|
2
csharp/Mac/.gitignore
vendored
Normal file
2
csharp/Mac/.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
||||
libyoga.dylib
|
||||
*.userprefs
|
23
csharp/Mac/ApiDefinition.cs
Normal file
23
csharp/Mac/ApiDefinition.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
/**
|
||||
* Copyright (c) 2014-present, Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD-style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
||||
using AppKit;
|
||||
using Foundation;
|
||||
using ObjCRuntime;
|
||||
using CoreGraphics;
|
||||
|
||||
namespace Facebook.Yoga.Mac
|
||||
{
|
||||
// Xamarin.Mac binding projects allow you to include native libraries inside C# DLLs for easy consumption
|
||||
// later. However, the binding project build files currently assume you are binding some objective-c API
|
||||
// and that you need an ApiDefinition.cs for that. yoga is all C APIs, so just include this "blank" file so
|
||||
// the dylib gets packaged
|
||||
}
|
11
csharp/Mac/CustomBuildAction.targets
Normal file
11
csharp/Mac/CustomBuildAction.targets
Normal file
@@ -0,0 +1,11 @@
|
||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
|
||||
<PropertyGroup>
|
||||
<CompileDependsOn>CopyInNativeLib;$(CompileDependsOn)</CompileDependsOn>
|
||||
</PropertyGroup>
|
||||
|
||||
<!-- The # and , in this path does not play nice with the binding project logic, so make a copy -->
|
||||
<Target Name="CopyInNativeLib" Inputs="..\..\buck-out\gen\csharp\yoganet#default,shared\libyoga.dylib" Outputs="$(ProjectDir)libyoga.dylib">
|
||||
<Copy SourceFiles="..\..\buck-out\gen\csharp\yoganet#default,shared\libyoga.dylib" DestinationFiles="$(ProjectDir)/libyoga.dylib" />
|
||||
</Target>
|
||||
</Project>
|
30
csharp/Mac/Facebook.Yoga.Mac.Test/AppDelegate.cs
Normal file
30
csharp/Mac/Facebook.Yoga.Mac.Test/AppDelegate.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
/**
|
||||
* Copyright 2014-present, Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the license found in the
|
||||
* LICENSE-examples file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
using AppKit;
|
||||
using Foundation;
|
||||
|
||||
namespace Facebook.Yoga.Mac.Test
|
||||
{
|
||||
[Register("AppDelegate")]
|
||||
public class AppDelegate : NSApplicationDelegate
|
||||
{
|
||||
public AppDelegate()
|
||||
{
|
||||
}
|
||||
|
||||
public override void DidFinishLaunching(NSNotification notification)
|
||||
{
|
||||
}
|
||||
|
||||
public override void WillTerminate(NSNotification notification)
|
||||
{
|
||||
// Insert code here to tear down your application
|
||||
}
|
||||
}
|
||||
}
|
6
csharp/Mac/Facebook.Yoga.Mac.Test/Entitlements.plist
Normal file
6
csharp/Mac/Facebook.Yoga.Mac.Test/Entitlements.plist
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
</dict>
|
||||
</plist>
|
@@ -0,0 +1,84 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{64E0AB97-A904-4607-A535-EEA5A966C09E}</ProjectGuid>
|
||||
<ProjectTypeGuids>{A3F8F2AB-B479-4A4A-A458-A89E7DC349F1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Facebook.Yoga.Mac.Test</RootNamespace>
|
||||
<AssemblyName>Facebook.Yoga.Mac.Test</AssemblyName>
|
||||
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
||||
<TargetFrameworkIdentifier>Xamarin.Mac</TargetFrameworkIdentifier>
|
||||
<MonoMacResourcePrefix>Resources</MonoMacResourcePrefix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<EnableCodeSigning>false</EnableCodeSigning>
|
||||
<CodeSigningKey>Mac Developer</CodeSigningKey>
|
||||
<CreatePackage>false</CreatePackage>
|
||||
<EnablePackageSigning>false</EnablePackageSigning>
|
||||
<IncludeMonoRuntime>false</IncludeMonoRuntime>
|
||||
<UseSGen>true</UseSGen>
|
||||
<UseRefCounting>true</UseRefCounting>
|
||||
<Profiling>true</Profiling>
|
||||
<HttpClientHandler>HttpClientHandler</HttpClientHandler>
|
||||
<TlsProvider>Default</TlsProvider>
|
||||
<LinkMode>None</LinkMode>
|
||||
<XamMacArch>x86_64</XamMacArch>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release</OutputPath>
|
||||
<DefineConstants></DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<EnableCodeSigning>false</EnableCodeSigning>
|
||||
<CreatePackage>true</CreatePackage>
|
||||
<EnablePackageSigning>false</EnablePackageSigning>
|
||||
<IncludeMonoRuntime>true</IncludeMonoRuntime>
|
||||
<UseSGen>true</UseSGen>
|
||||
<UseRefCounting>true</UseRefCounting>
|
||||
<LinkMode>SdkOnly</LinkMode>
|
||||
<HttpClientHandler>HttpClientHandler</HttpClientHandler>
|
||||
<TlsProvider>Default</TlsProvider>
|
||||
<XamMacArch></XamMacArch>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="Xamarin.Mac" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="Resources\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Info.plist" />
|
||||
<None Include="Entitlements.plist" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Main.cs" />
|
||||
<Compile Include="AppDelegate.cs" />
|
||||
<Compile Include="ViewController.cs" />
|
||||
<Compile Include="ViewController.designer.cs">
|
||||
<DependentUpon>ViewController.cs</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<InterfaceDefinition Include="Main.storyboard" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Facebook.Yoga.Mac.csproj">
|
||||
<Project>{19A1C7D7-C9CC-476A-B604-DF6A3DE1BA71}</Project>
|
||||
<Name>Facebook.Yoga.Mac</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Mac\Xamarin.Mac.CSharp.targets" />
|
||||
</Project>
|
30
csharp/Mac/Facebook.Yoga.Mac.Test/Info.plist
Normal file
30
csharp/Mac/Facebook.Yoga.Mac.Test/Info.plist
Normal file
@@ -0,0 +1,30 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleName</key>
|
||||
<string>Facebook.Yoga.Mac.Test</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.companyname.facebook-yoga-mac-test</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
<string>10.11</string>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>NSHumanReadableCopyright</key>
|
||||
<string>${AuthorCopyright}</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
<string>NSApplication</string>
|
||||
<key>NSMainStoryboardFile</key>
|
||||
<string>Main</string>
|
||||
</dict>
|
||||
</plist>
|
21
csharp/Mac/Facebook.Yoga.Mac.Test/Main.cs
Normal file
21
csharp/Mac/Facebook.Yoga.Mac.Test/Main.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* Copyright 2014-present, Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the license found in the
|
||||
* LICENSE-examples file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
using AppKit;
|
||||
|
||||
namespace Facebook.Yoga.Mac.Test
|
||||
{
|
||||
static class MainClass
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
NSApplication.Init();
|
||||
NSApplication.Main(args);
|
||||
}
|
||||
}
|
||||
}
|
681
csharp/Mac/Facebook.Yoga.Mac.Test/Main.storyboard
Normal file
681
csharp/Mac/Facebook.Yoga.Mac.Test/Main.storyboard
Normal file
@@ -0,0 +1,681 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<document type="com.apple.InterfaceBuilder3.Cocoa.Storyboard.XIB" version="3.0" toolsVersion="6198" systemVersion="14A297b" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" initialViewController="B8D-0N-5wS">
|
||||
<dependencies>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="6198" />
|
||||
</dependencies>
|
||||
<scenes>
|
||||
<!--Application-->
|
||||
<scene sceneID="JPo-4y-FX3">
|
||||
<objects>
|
||||
<application id="hnw-xV-0zn" sceneMemberID="viewController">
|
||||
<menu key="mainMenu" title="Main Menu" systemMenu="main" id="AYu-sK-qS6">
|
||||
<items>
|
||||
<menuItem title="Facebook.Yoga.Mac.Test" id="1Xt-HY-uBw">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Facebook.Yoga.Mac.Test" systemMenu="apple" id="uQy-DD-JDr">
|
||||
<items>
|
||||
<menuItem title="About Facebook.Yoga.Mac.Test" id="5kV-Vb-QxS">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="orderFrontStandardAboutPanel:" target="Ady-hI-5gd" id="Exp-CZ-Vem" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="VOq-y0-SEH" />
|
||||
<menuItem title="Preferences…" keyEquivalent="," id="BOF-NM-1cW" />
|
||||
<menuItem isSeparatorItem="YES" id="wFC-TO-SCJ" />
|
||||
<menuItem title="Services" id="NMo-om-nkz">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Services" systemMenu="services" id="hz9-B4-Xy5" />
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="4je-JR-u6R" />
|
||||
<menuItem title="Hide Facebook.Yoga.Mac.Test" keyEquivalent="h" id="Olw-nP-bQN">
|
||||
<connections>
|
||||
<action selector="hide:" target="Ady-hI-5gd" id="PnN-Uc-m68" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Hide Others" keyEquivalent="h" id="Vdr-fp-XzO">
|
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES" />
|
||||
<connections>
|
||||
<action selector="hideOtherApplications:" target="Ady-hI-5gd" id="VT4-aY-XCT" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Show All" id="Kd2-mp-pUS">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="unhideAllApplications:" target="Ady-hI-5gd" id="Dhg-Le-xox" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="kCx-OE-vgT" />
|
||||
<menuItem title="Quit Facebook.Yoga.Mac.Test" keyEquivalent="q" id="4sb-4s-VLi">
|
||||
<connections>
|
||||
<action selector="terminate:" target="Ady-hI-5gd" id="Te7-pn-YzF" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="File" id="dMs-cI-mzQ">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="File" id="bib-Uj-vzu">
|
||||
<items>
|
||||
<menuItem title="New" keyEquivalent="n" id="Was-JA-tGl">
|
||||
<connections>
|
||||
<action selector="newDocument:" target="Ady-hI-5gd" id="4Si-XN-c54" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Open…" keyEquivalent="o" id="IAo-SY-fd9">
|
||||
<connections>
|
||||
<action selector="openDocument:" target="Ady-hI-5gd" id="bVn-NM-KNZ" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Open Recent" id="tXI-mr-wws">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Open Recent" systemMenu="recentDocuments" id="oas-Oc-fiZ">
|
||||
<items>
|
||||
<menuItem title="Clear Menu" id="vNY-rz-j42">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="clearRecentDocuments:" target="Ady-hI-5gd" id="Daa-9d-B3U" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="m54-Is-iLE" />
|
||||
<menuItem title="Close" keyEquivalent="w" id="DVo-aG-piG">
|
||||
<connections>
|
||||
<action selector="performClose:" target="Ady-hI-5gd" id="HmO-Ls-i7Q" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Save…" keyEquivalent="s" id="pxx-59-PXV">
|
||||
<connections>
|
||||
<action selector="saveDocument:" target="Ady-hI-5gd" id="teZ-XB-qJY" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Save As…" keyEquivalent="S" id="Bw7-FT-i3A">
|
||||
<connections>
|
||||
<action selector="saveDocumentAs:" target="Ady-hI-5gd" id="mDf-zr-I0C" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Revert to Saved" id="KaW-ft-85H">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="revertDocumentToSaved:" target="Ady-hI-5gd" id="iJ3-Pv-kwq" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="aJh-i4-bef" />
|
||||
<menuItem title="Page Setup…" keyEquivalent="P" id="qIS-W8-SiK">
|
||||
<modifierMask key="keyEquivalentModifierMask" shift="YES" command="YES" />
|
||||
<connections>
|
||||
<action selector="runPageLayout:" target="Ady-hI-5gd" id="Din-rz-gC5" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Print…" keyEquivalent="p" id="aTl-1u-JFS">
|
||||
<connections>
|
||||
<action selector="print:" target="Ady-hI-5gd" id="qaZ-4w-aoO" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Edit" id="5QF-Oa-p0T">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Edit" id="W48-6f-4Dl">
|
||||
<items>
|
||||
<menuItem title="Undo" keyEquivalent="z" id="dRJ-4n-Yzg">
|
||||
<connections>
|
||||
<action selector="undo:" target="Ady-hI-5gd" id="M6e-cu-g7V" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Redo" keyEquivalent="Z" id="6dh-zS-Vam">
|
||||
<connections>
|
||||
<action selector="redo:" target="Ady-hI-5gd" id="oIA-Rs-6OD" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="WRV-NI-Exz" />
|
||||
<menuItem title="Cut" keyEquivalent="x" id="uRl-iY-unG">
|
||||
<connections>
|
||||
<action selector="cut:" target="Ady-hI-5gd" id="YJe-68-I9s" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Copy" keyEquivalent="c" id="x3v-GG-iWU">
|
||||
<connections>
|
||||
<action selector="copy:" target="Ady-hI-5gd" id="G1f-GL-Joy" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Paste" keyEquivalent="v" id="gVA-U4-sdL">
|
||||
<connections>
|
||||
<action selector="paste:" target="Ady-hI-5gd" id="UvS-8e-Qdg" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Paste and Match Style" keyEquivalent="V" id="WeT-3V-zwk">
|
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES" />
|
||||
<connections>
|
||||
<action selector="pasteAsPlainText:" target="Ady-hI-5gd" id="cEh-KX-wJQ" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Delete" id="pa3-QI-u2k">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="delete:" target="Ady-hI-5gd" id="0Mk-Ml-PaM" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Select All" keyEquivalent="a" id="Ruw-6m-B2m">
|
||||
<connections>
|
||||
<action selector="selectAll:" target="Ady-hI-5gd" id="VNm-Mi-diN" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="uyl-h8-XO2" />
|
||||
<menuItem title="Find" id="4EN-yA-p0u">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Find" id="1b7-l0-nxx">
|
||||
<items>
|
||||
<menuItem title="Find…" tag="1" keyEquivalent="f" id="Xz5-n4-O0W">
|
||||
<connections>
|
||||
<action selector="performFindPanelAction:" target="Ady-hI-5gd" id="cD7-Qs-BN4" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Find and Replace…" tag="12" keyEquivalent="f" id="YEy-JH-Tfz">
|
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES" />
|
||||
<connections>
|
||||
<action selector="performFindPanelAction:" target="Ady-hI-5gd" id="WD3-Gg-5AJ" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Find Next" tag="2" keyEquivalent="g" id="q09-fT-Sye">
|
||||
<connections>
|
||||
<action selector="performFindPanelAction:" target="Ady-hI-5gd" id="NDo-RZ-v9R" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Find Previous" tag="3" keyEquivalent="G" id="OwM-mh-QMV">
|
||||
<connections>
|
||||
<action selector="performFindPanelAction:" target="Ady-hI-5gd" id="HOh-sY-3ay" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Use Selection for Find" tag="7" keyEquivalent="e" id="buJ-ug-pKt">
|
||||
<connections>
|
||||
<action selector="performFindPanelAction:" target="Ady-hI-5gd" id="U76-nv-p5D" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Jump to Selection" keyEquivalent="j" id="S0p-oC-mLd">
|
||||
<connections>
|
||||
<action selector="centerSelectionInVisibleArea:" target="Ady-hI-5gd" id="IOG-6D-g5B" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Spelling and Grammar" id="Dv1-io-Yv7">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Spelling" id="3IN-sU-3Bg">
|
||||
<items>
|
||||
<menuItem title="Show Spelling and Grammar" keyEquivalent=":" id="HFo-cy-zxI">
|
||||
<connections>
|
||||
<action selector="showGuessPanel:" target="Ady-hI-5gd" id="vFj-Ks-hy3" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Check Document Now" keyEquivalent=";" id="hz2-CU-CR7">
|
||||
<connections>
|
||||
<action selector="checkSpelling:" target="Ady-hI-5gd" id="fz7-VC-reM" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="bNw-od-mp5" />
|
||||
<menuItem title="Check Spelling While Typing" id="rbD-Rh-wIN">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleContinuousSpellChecking:" target="Ady-hI-5gd" id="7w6-Qz-0kB" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Check Grammar With Spelling" id="mK6-2p-4JG">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleGrammarChecking:" target="Ady-hI-5gd" id="muD-Qn-j4w" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Correct Spelling Automatically" id="78Y-hA-62v">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleAutomaticSpellingCorrection:" target="Ady-hI-5gd" id="2lM-Qi-WAP" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Substitutions" id="9ic-FL-obx">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Substitutions" id="FeM-D8-WVr">
|
||||
<items>
|
||||
<menuItem title="Show Substitutions" id="z6F-FW-3nz">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="orderFrontSubstitutionsPanel:" target="Ady-hI-5gd" id="oku-mr-iSq" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="gPx-C9-uUO" />
|
||||
<menuItem title="Smart Copy/Paste" id="9yt-4B-nSM">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleSmartInsertDelete:" target="Ady-hI-5gd" id="3IJ-Se-DZD" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Smart Quotes" id="hQb-2v-fYv">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleAutomaticQuoteSubstitution:" target="Ady-hI-5gd" id="ptq-xd-QOA" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Smart Dashes" id="rgM-f4-ycn">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleAutomaticDashSubstitution:" target="Ady-hI-5gd" id="oCt-pO-9gS" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Smart Links" id="cwL-P1-jid">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleAutomaticLinkDetection:" target="Ady-hI-5gd" id="Gip-E3-Fov" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Data Detectors" id="tRr-pd-1PS">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleAutomaticDataDetection:" target="Ady-hI-5gd" id="R1I-Nq-Kbl" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Text Replacement" id="HFQ-gK-NFA">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleAutomaticTextReplacement:" target="Ady-hI-5gd" id="DvP-Fe-Py6" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Transformations" id="2oI-Rn-ZJC">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Transformations" id="c8a-y6-VQd">
|
||||
<items>
|
||||
<menuItem title="Make Upper Case" id="vmV-6d-7jI">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="uppercaseWord:" target="Ady-hI-5gd" id="sPh-Tk-edu" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Make Lower Case" id="d9M-CD-aMd">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="lowercaseWord:" target="Ady-hI-5gd" id="iUZ-b5-hil" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Capitalize" id="UEZ-Bs-lqG">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="capitalizeWord:" target="Ady-hI-5gd" id="26H-TL-nsh" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Speech" id="xrE-MZ-jX0">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Speech" id="3rS-ZA-NoH">
|
||||
<items>
|
||||
<menuItem title="Start Speaking" id="Ynk-f8-cLZ">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="startSpeaking:" target="Ady-hI-5gd" id="654-Ng-kyl" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Stop Speaking" id="Oyz-dy-DGm">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="stopSpeaking:" target="Ady-hI-5gd" id="dX8-6p-jy9" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Format" id="jxT-CU-nIS">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Format" id="GEO-Iw-cKr">
|
||||
<items>
|
||||
<menuItem title="Font" id="Gi5-1S-RQB">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Font" systemMenu="font" id="aXa-aM-Jaq">
|
||||
<items>
|
||||
<menuItem title="Show Fonts" keyEquivalent="t" id="Q5e-8K-NDq" />
|
||||
<menuItem title="Bold" tag="2" keyEquivalent="b" id="GB9-OM-e27" />
|
||||
<menuItem title="Italic" tag="1" keyEquivalent="i" id="Vjx-xi-njq" />
|
||||
<menuItem title="Underline" keyEquivalent="u" id="WRG-CD-K1S">
|
||||
<connections>
|
||||
<action selector="underline:" target="Ady-hI-5gd" id="FYS-2b-JAY" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="5gT-KC-WSO" />
|
||||
<menuItem title="Bigger" tag="3" keyEquivalent="+" id="Ptp-SP-VEL" />
|
||||
<menuItem title="Smaller" tag="4" keyEquivalent="-" id="i1d-Er-qST" />
|
||||
<menuItem isSeparatorItem="YES" id="kx3-Dk-x3B" />
|
||||
<menuItem title="Kern" id="jBQ-r6-VK2">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Kern" id="tlD-Oa-oAM">
|
||||
<items>
|
||||
<menuItem title="Use Default" id="GUa-eO-cwY">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="useStandardKerning:" target="Ady-hI-5gd" id="6dk-9l-Ckg" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Use None" id="cDB-IK-hbR">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="turnOffKerning:" target="Ady-hI-5gd" id="U8a-gz-Maa" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Tighten" id="46P-cB-AYj">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="tightenKerning:" target="Ady-hI-5gd" id="hr7-Nz-8ro" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Loosen" id="ogc-rX-tC1">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="loosenKerning:" target="Ady-hI-5gd" id="8i4-f9-FKE" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Ligatures" id="o6e-r0-MWq">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Ligatures" id="w0m-vy-SC9">
|
||||
<items>
|
||||
<menuItem title="Use Default" id="agt-UL-0e3">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="useStandardLigatures:" target="Ady-hI-5gd" id="7uR-wd-Dx6" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Use None" id="J7y-lM-qPV">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="turnOffLigatures:" target="Ady-hI-5gd" id="iX2-gA-Ilz" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Use All" id="xQD-1f-W4t">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="useAllLigatures:" target="Ady-hI-5gd" id="KcB-kA-TuK" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Baseline" id="OaQ-X3-Vso">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Baseline" id="ijk-EB-dga">
|
||||
<items>
|
||||
<menuItem title="Use Default" id="3Om-Ey-2VK">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="unscript:" target="Ady-hI-5gd" id="0vZ-95-Ywn" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Superscript" id="Rqc-34-cIF">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="superscript:" target="Ady-hI-5gd" id="3qV-fo-wpU" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Subscript" id="I0S-gh-46l">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="subscript:" target="Ady-hI-5gd" id="Q6W-4W-IGz" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Raise" id="2h7-ER-AoG">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="raiseBaseline:" target="Ady-hI-5gd" id="4sk-31-7Q9" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Lower" id="1tx-W0-xDw">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="lowerBaseline:" target="Ady-hI-5gd" id="OF1-bc-KW4" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="Ndw-q3-faq" />
|
||||
<menuItem title="Show Colors" keyEquivalent="C" id="bgn-CT-cEk">
|
||||
<connections>
|
||||
<action selector="orderFrontColorPanel:" target="Ady-hI-5gd" id="mSX-Xz-DV3" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="iMs-zA-UFJ" />
|
||||
<menuItem title="Copy Style" keyEquivalent="c" id="5Vv-lz-BsD">
|
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES" />
|
||||
<connections>
|
||||
<action selector="copyFont:" target="Ady-hI-5gd" id="GJO-xA-L4q" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Paste Style" keyEquivalent="v" id="vKC-jM-MkH">
|
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES" />
|
||||
<connections>
|
||||
<action selector="pasteFont:" target="Ady-hI-5gd" id="JfD-CL-leO" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Text" id="Fal-I4-PZk">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Text" id="d9c-me-L2H">
|
||||
<items>
|
||||
<menuItem title="Align Left" keyEquivalent="{" id="ZM1-6Q-yy1">
|
||||
<connections>
|
||||
<action selector="alignLeft:" target="Ady-hI-5gd" id="zUv-R1-uAa" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Center" keyEquivalent="|" id="VIY-Ag-zcb">
|
||||
<connections>
|
||||
<action selector="alignCenter:" target="Ady-hI-5gd" id="spX-mk-kcS" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Justify" id="J5U-5w-g23">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="alignJustified:" target="Ady-hI-5gd" id="ljL-7U-jND" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Align Right" keyEquivalent="}" id="wb2-vD-lq4">
|
||||
<connections>
|
||||
<action selector="alignRight:" target="Ady-hI-5gd" id="r48-bG-YeY" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="4s2-GY-VfK" />
|
||||
<menuItem title="Writing Direction" id="H1b-Si-o9J">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Writing Direction" id="8mr-sm-Yjd">
|
||||
<items>
|
||||
<menuItem title="Paragraph" enabled="NO" id="ZvO-Gk-QUH">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
</menuItem>
|
||||
<menuItem id="YGs-j5-SAR">
|
||||
<string key="title"> Default</string>
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="makeBaseWritingDirectionNatural:" target="Ady-hI-5gd" id="qtV-5e-UBP" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem id="Lbh-J2-qVU">
|
||||
<string key="title"> Left to Right</string>
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="makeBaseWritingDirectionLeftToRight:" target="Ady-hI-5gd" id="S0X-9S-QSf" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem id="jFq-tB-4Kx">
|
||||
<string key="title"> Right to Left</string>
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="makeBaseWritingDirectionRightToLeft:" target="Ady-hI-5gd" id="5fk-qB-AqJ" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="swp-gr-a21" />
|
||||
<menuItem title="Selection" enabled="NO" id="cqv-fj-IhA">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
</menuItem>
|
||||
<menuItem id="Nop-cj-93Q">
|
||||
<string key="title"> Default</string>
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="makeTextWritingDirectionNatural:" target="Ady-hI-5gd" id="lPI-Se-ZHp" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem id="BgM-ve-c93">
|
||||
<string key="title"> Left to Right</string>
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="makeTextWritingDirectionLeftToRight:" target="Ady-hI-5gd" id="caW-Bv-w94" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem id="RB4-Sm-HuC">
|
||||
<string key="title"> Right to Left</string>
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="makeTextWritingDirectionRightToLeft:" target="Ady-hI-5gd" id="EXD-6r-ZUu" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="fKy-g9-1gm" />
|
||||
<menuItem title="Show Ruler" id="vLm-3I-IUL">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="toggleRuler:" target="Ady-hI-5gd" id="FOx-HJ-KwY" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Copy Ruler" keyEquivalent="c" id="MkV-Pr-PK5">
|
||||
<modifierMask key="keyEquivalentModifierMask" control="YES" command="YES" />
|
||||
<connections>
|
||||
<action selector="copyRuler:" target="Ady-hI-5gd" id="71i-fW-3W2" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Paste Ruler" keyEquivalent="v" id="LVM-kO-fVI">
|
||||
<modifierMask key="keyEquivalentModifierMask" control="YES" command="YES" />
|
||||
<connections>
|
||||
<action selector="pasteRuler:" target="Ady-hI-5gd" id="cSh-wd-qM2" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="View" id="H8h-7b-M4v">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="View" id="HyV-fh-RgO">
|
||||
<items>
|
||||
<menuItem title="Show Toolbar" keyEquivalent="t" id="snW-S8-Cw5">
|
||||
<modifierMask key="keyEquivalentModifierMask" option="YES" command="YES" />
|
||||
<connections>
|
||||
<action selector="toggleToolbarShown:" target="Ady-hI-5gd" id="BXY-wc-z0C" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Customize Toolbar…" id="1UK-8n-QPP">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="runToolbarCustomizationPalette:" target="Ady-hI-5gd" id="pQI-g3-MTW" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Window" id="aUF-d1-5bR">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Window" systemMenu="window" id="Td7-aD-5lo">
|
||||
<items>
|
||||
<menuItem title="Minimize" keyEquivalent="m" id="OY7-WF-poV">
|
||||
<connections>
|
||||
<action selector="performMiniaturize:" target="Ady-hI-5gd" id="VwT-WD-YPe" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem title="Zoom" id="R4o-n2-Eq4">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="performZoom:" target="Ady-hI-5gd" id="DIl-cC-cCs" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
<menuItem isSeparatorItem="YES" id="eu3-7i-yIM" />
|
||||
<menuItem title="Bring All to Front" id="LE2-aR-0XJ">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<connections>
|
||||
<action selector="arrangeInFront:" target="Ady-hI-5gd" id="DRN-fu-gQh" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
<menuItem title="Help" id="wpr-3q-Mcd">
|
||||
<modifierMask key="keyEquivalentModifierMask" />
|
||||
<menu key="submenu" title="Help" systemMenu="help" id="F2S-fz-NVQ">
|
||||
<items>
|
||||
<menuItem title="Facebook.Yoga.Mac.Test Help" keyEquivalent="?" id="FKE-Sm-Kum">
|
||||
<connections>
|
||||
<action selector="showHelp:" target="Ady-hI-5gd" id="y7X-2Q-9no" />
|
||||
</connections>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
</menuItem>
|
||||
</items>
|
||||
</menu>
|
||||
<connections>
|
||||
<outlet property="delegate" destination="Voe-Tx-rLC" id="PrD-fu-P6m" />
|
||||
</connections>
|
||||
</application>
|
||||
<customObject id="Voe-Tx-rLC" customClass="AppDelegate" customModuleProvider="" />
|
||||
<customObject id="Ady-hI-5gd" userLabel="First Responder" customClass="NSResponder" sceneMemberID="firstResponder" />
|
||||
</objects>
|
||||
<point key="canvasLocation" x="75" y="0.0" />
|
||||
</scene>
|
||||
<!--Window Controller - Window-->
|
||||
<scene sceneID="R2V-B0-nI4">
|
||||
<objects>
|
||||
<windowController id="B8D-0N-5wS" sceneMemberID="viewController">
|
||||
<window key="window" title="Window" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" oneShot="NO" releasedWhenClosed="NO" showsToolbarButton="NO" visibleAtLaunch="NO" animationBehavior="default" id="IQv-IB-iLA">
|
||||
<windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES" />
|
||||
<windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES" />
|
||||
<rect key="contentRect" x="196" y="240" width="480" height="270" />
|
||||
<rect key="screenRect" x="0.0" y="0.0" width="1680" height="1027" />
|
||||
</window>
|
||||
<connections>
|
||||
<segue destination="XfG-lQ-9wD" kind="relationship" relationship="window.shadowedContentViewController" id="cq2-FE-JQM" />
|
||||
</connections>
|
||||
</windowController>
|
||||
<customObject id="Oky-zY-oP4" userLabel="First Responder" customClass="NSResponder" sceneMemberID="firstResponder" />
|
||||
</objects>
|
||||
<point key="canvasLocation" x="75" y="250" />
|
||||
</scene>
|
||||
<!--View Controller-->
|
||||
<scene sceneID="hIz-AP-VOD">
|
||||
<objects>
|
||||
<viewController id="XfG-lQ-9wD" customClass="ViewController" customModuleProvider="" sceneMemberID="viewController">
|
||||
<view key="view" id="m2S-Jp-Qdl">
|
||||
<rect key="frame" x="0.0" y="0.0" width="480" height="270" />
|
||||
<autoresizingMask key="autoresizingMask" />
|
||||
</view>
|
||||
</viewController>
|
||||
<customObject id="rPt-NT-nkU" userLabel="First Responder" customClass="NSResponder" sceneMemberID="firstResponder" />
|
||||
</objects>
|
||||
<point key="canvasLocation" x="75" y="655" />
|
||||
</scene>
|
||||
</scenes>
|
||||
</document>
|
137
csharp/Mac/Facebook.Yoga.Mac.Test/ViewController.cs
Normal file
137
csharp/Mac/Facebook.Yoga.Mac.Test/ViewController.cs
Normal file
@@ -0,0 +1,137 @@
|
||||
/**
|
||||
* Copyright 2014-present, Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the license found in the
|
||||
* LICENSE-examples file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
//#define DEBUG_LAYOUT
|
||||
using System;
|
||||
|
||||
using AppKit;
|
||||
using Foundation;
|
||||
using CoreGraphics;
|
||||
|
||||
namespace Facebook.Yoga.Mac.Test
|
||||
{
|
||||
public static class NSViewYogaExtensions
|
||||
{
|
||||
public static void ApplyYogaLayout (this NSView view, YogaNode n, bool root = true)
|
||||
{
|
||||
#if DEBUG_LAYOUT
|
||||
Console.WriteLine ($"ApplyYogaLayout {view.ToolTip}, {n.LayoutX}, {n.LayoutY}, {n.LayoutWidth}, {n.LayoutHeight}");
|
||||
#endif
|
||||
|
||||
// A bit of gross special casing
|
||||
// This really should mostly go away if/when the UIView+Yoga.m magic gets ported to AppKit
|
||||
if (root)
|
||||
view.Frame = new CGRect (n.LayoutX, n.LayoutY, n.LayoutWidth, n.LayoutHeight);
|
||||
#if DEBUG_LAYOUT
|
||||
Console.WriteLine ($"Setting {view.ToolTip} frame to {view.Frame}");
|
||||
#endif
|
||||
|
||||
// This assumes your YogaNode and NSView children were inserted in same order
|
||||
for (int i = 0; i < n.Count; ++i) {
|
||||
YogaNode childNode = n[i];
|
||||
// Cocoa coord space is from bottom left not top left
|
||||
view.Subviews[i].Frame = new CGRect (childNode.LayoutX, n.LayoutHeight - childNode.LayoutY - childNode.LayoutHeight, childNode.LayoutWidth, childNode.LayoutHeight);
|
||||
#if DEBUG_LAYOUT
|
||||
Console.WriteLine ($"Setting {view.Subviews[i].ToolTip} frame to {view.Subviews[i].Frame}");
|
||||
#endif
|
||||
if (childNode.Count > 0){
|
||||
#if DEBUG_LAYOUT
|
||||
Console.WriteLine ($"Calling ApplyYogaLayout recursively on {view.Subviews[i].ToolTip}");
|
||||
#endif
|
||||
ApplyYogaLayout (view.Subviews[i], childNode, false);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public partial class ViewController : NSViewController
|
||||
{
|
||||
public ViewController(IntPtr handle) : base(handle)
|
||||
{
|
||||
}
|
||||
|
||||
public override void ViewDidLoad()
|
||||
{
|
||||
base.ViewDidLoad ();
|
||||
|
||||
NSImage image = NSImage.ImageNamed (NSImageName.TrashFull);
|
||||
|
||||
NSView root = CreateViewHierarchy (image);
|
||||
var rootNode = CalculateLayout (View.Frame, image.Size);
|
||||
|
||||
root.ApplyYogaLayout (rootNode);
|
||||
|
||||
View.AddSubview (root);
|
||||
}
|
||||
|
||||
static NSView CreateViewHierarchy (NSImage image)
|
||||
{
|
||||
var root = new NSView () {
|
||||
WantsLayer = true,
|
||||
ToolTip = "Root"
|
||||
};
|
||||
root.Layer.BackgroundColor = NSColor.Red.CGColor;
|
||||
|
||||
NSView child1 = new NSView () {
|
||||
WantsLayer = true,
|
||||
ToolTip = "Child 1"
|
||||
};
|
||||
child1.Layer.BackgroundColor = NSColor.Blue.CGColor;
|
||||
|
||||
NSView child2 = new NSView () {
|
||||
WantsLayer = true,
|
||||
ToolTip = "Child 2"
|
||||
};
|
||||
child2.Layer.BackgroundColor = NSColor.Green.CGColor;
|
||||
|
||||
NSView child3 = new NSView () {
|
||||
WantsLayer = true,
|
||||
ToolTip = "Child 3"
|
||||
};
|
||||
child3.Layer.BackgroundColor = NSColor.Yellow.CGColor;
|
||||
|
||||
root.AddSubview (child1);
|
||||
root.AddSubview (child2);
|
||||
child2.AddSubview (child3);
|
||||
|
||||
return root;
|
||||
}
|
||||
|
||||
static YogaNode CalculateLayout (CGRect rootFrame, CGSize imageSize)
|
||||
{
|
||||
var rootNode = new YogaNode () {
|
||||
Width = (float)rootFrame.Width,
|
||||
Height = (float)rootFrame.Height,
|
||||
AlignItems = YogaAlign.Center,
|
||||
JustifyContent = YogaJustify.Center
|
||||
};
|
||||
|
||||
var child1Node = new YogaNode () {
|
||||
Width = 100,
|
||||
Height = 100
|
||||
};
|
||||
|
||||
var child2Node = new YogaNode () {
|
||||
Width = 200,
|
||||
Height = 100
|
||||
};
|
||||
|
||||
var child3Node = new YogaNode () {
|
||||
Width = 100,
|
||||
Height = 100
|
||||
};
|
||||
|
||||
rootNode.Insert (0, child1Node);
|
||||
rootNode.Insert (1, child2Node);
|
||||
child2Node.Insert (0, child3Node);
|
||||
rootNode.CalculateLayout ();
|
||||
|
||||
return rootNode;
|
||||
}
|
||||
}
|
||||
}
|
18
csharp/Mac/Facebook.Yoga.Mac.Test/ViewController.designer.cs
generated
Normal file
18
csharp/Mac/Facebook.Yoga.Mac.Test/ViewController.designer.cs
generated
Normal file
@@ -0,0 +1,18 @@
|
||||
// WARNING
|
||||
//
|
||||
// This file has been generated automatically by Xamarin Studio to store outlets and
|
||||
// actions made in the UI designer. If it is removed, they will be lost.
|
||||
// Manual changes to this file may not be handled correctly.
|
||||
//
|
||||
using Foundation;
|
||||
|
||||
namespace Facebook.Yoga.Mac.Test
|
||||
{
|
||||
[Register("ViewController")]
|
||||
partial class ViewController
|
||||
{
|
||||
void ReleaseDesignerOutlets()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
51
csharp/Mac/Facebook.Yoga.Mac.csproj
Normal file
51
csharp/Mac/Facebook.Yoga.Mac.csproj
Normal file
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{19A1C7D7-C9CC-476A-B604-DF6A3DE1BA71}</ProjectGuid>
|
||||
<ProjectTypeGuids>{810C163F-4746-4721-8B8E-88A3673A62EA};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>Facebook.Yoga.Mac</RootNamespace>
|
||||
<AssemblyName>Facebook.Yoga.Mac</AssemblyName>
|
||||
<MacResourcePrefix>Resources</MacResourcePrefix>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<DefineConstants>__UNIFIED__;DEBUG;MONOMAC</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release</OutputPath>
|
||||
<DefineConstants>__UNIFIED__;MONOMAC</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="Xamarin.Mac" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ObjcBindingApiDefinition Include="ApiDefinition.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="CustomBuildAction.targets" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<NativeReference Include="libyoga.dylib">
|
||||
<Kind>Dynamic</Kind>
|
||||
<SmartLink>False</SmartLink>
|
||||
</NativeReference>
|
||||
</ItemGroup>
|
||||
<Import Project="..\Facebook.Yoga\Facebook.Yoga.Shared.projitems" Label="Shared" Condition="Exists('..\Facebook.Yoga\Facebook.Yoga.Shared.projitems')" />
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Mac\Xamarin.Mac.ObjcBinding.CSharp.targets" />
|
||||
<Import Project="CustomBuildAction.targets" />
|
||||
</Project>
|
25
csharp/Mac/Facebook.Yoga.Mac.sln
Normal file
25
csharp/Mac/Facebook.Yoga.Mac.sln
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2012
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Facebook.Yoga.Mac.Test", "Facebook.Yoga.Mac.Test\Facebook.Yoga.Mac.Test.csproj", "{64E0AB97-A904-4607-A535-EEA5A966C09E}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Facebook.Yoga.Mac", "Facebook.Yoga.Mac.csproj", "{19A1C7D7-C9CC-476A-B604-DF6A3DE1BA71}"
|
||||
EndProject
|
||||
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Facebook.Yoga.Shared", "..\Facebook.Yoga\Facebook.Yoga.Shared.shproj", "{91C42D32-291D-4B72-90B4-551663D60B8B}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{64E0AB97-A904-4607-A535-EEA5A966C09E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{64E0AB97-A904-4607-A535-EEA5A966C09E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{64E0AB97-A904-4607-A535-EEA5A966C09E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{64E0AB97-A904-4607-A535-EEA5A966C09E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{19A1C7D7-C9CC-476A-B604-DF6A3DE1BA71}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{19A1C7D7-C9CC-476A-B604-DF6A3DE1BA71}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{19A1C7D7-C9CC-476A-B604-DF6A3DE1BA71}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{19A1C7D7-C9CC-476A-B604-DF6A3DE1BA71}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
EndGlobal
|
@@ -26,8 +26,8 @@ namespace Facebook.Yoga
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.PositionType = YogaPositionType.Absolute;
|
||||
root_child0.SetPosition(YogaEdge.Start, 10);
|
||||
root_child0.SetPosition(YogaEdge.Top, 10);
|
||||
root_child0.Start = 10;
|
||||
root_child0.Top = 10;
|
||||
root_child0.Width = 10;
|
||||
root_child0.Height = 10;
|
||||
root.Insert(0, root_child0);
|
||||
@@ -67,8 +67,8 @@ namespace Facebook.Yoga
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.PositionType = YogaPositionType.Absolute;
|
||||
root_child0.SetPosition(YogaEdge.End, 10);
|
||||
root_child0.SetPosition(YogaEdge.Bottom, 10);
|
||||
root_child0.End = 10;
|
||||
root_child0.Bottom = 10;
|
||||
root_child0.Width = 10;
|
||||
root_child0.Height = 10;
|
||||
root.Insert(0, root_child0);
|
||||
@@ -108,10 +108,10 @@ namespace Facebook.Yoga
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.PositionType = YogaPositionType.Absolute;
|
||||
root_child0.SetPosition(YogaEdge.Start, 10);
|
||||
root_child0.SetPosition(YogaEdge.Top, 10);
|
||||
root_child0.SetPosition(YogaEdge.End, 10);
|
||||
root_child0.SetPosition(YogaEdge.Bottom, 10);
|
||||
root_child0.Start = 10;
|
||||
root_child0.Top = 10;
|
||||
root_child0.End = 10;
|
||||
root_child0.Bottom = 10;
|
||||
root.Insert(0, root_child0);
|
||||
root.StyleDirection = YogaDirection.LTR;
|
||||
root.CalculateLayout();
|
||||
@@ -149,10 +149,10 @@ namespace Facebook.Yoga
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.PositionType = YogaPositionType.Absolute;
|
||||
root_child0.SetPosition(YogaEdge.Start, 10);
|
||||
root_child0.SetPosition(YogaEdge.Top, 10);
|
||||
root_child0.SetPosition(YogaEdge.End, 10);
|
||||
root_child0.SetPosition(YogaEdge.Bottom, 10);
|
||||
root_child0.Start = 10;
|
||||
root_child0.Top = 10;
|
||||
root_child0.End = 10;
|
||||
root_child0.Bottom = 10;
|
||||
root_child0.Width = 10;
|
||||
root_child0.Height = 10;
|
||||
root.Insert(0, root_child0);
|
||||
@@ -194,8 +194,8 @@ namespace Facebook.Yoga
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.PositionType = YogaPositionType.Absolute;
|
||||
root_child0.SetPosition(YogaEdge.Start, 0);
|
||||
root_child0.SetPosition(YogaEdge.Top, 0);
|
||||
root_child0.Start = 0;
|
||||
root_child0.Top = 0;
|
||||
root.Insert(0, root_child0);
|
||||
|
||||
YogaNode root_child0_child0 = new YogaNode();
|
||||
@@ -243,33 +243,33 @@ namespace Facebook.Yoga
|
||||
public void Test_absolute_layout_within_border()
|
||||
{
|
||||
YogaNode root = new YogaNode();
|
||||
root.SetMargin(YogaEdge.Left, 10);
|
||||
root.SetMargin(YogaEdge.Top, 10);
|
||||
root.SetMargin(YogaEdge.Right, 10);
|
||||
root.SetMargin(YogaEdge.Bottom, 10);
|
||||
root.SetPadding(YogaEdge.Left, 10);
|
||||
root.SetPadding(YogaEdge.Top, 10);
|
||||
root.SetPadding(YogaEdge.Right, 10);
|
||||
root.SetPadding(YogaEdge.Bottom, 10);
|
||||
root.SetBorder(YogaEdge.Left, 10);
|
||||
root.SetBorder(YogaEdge.Top, 10);
|
||||
root.SetBorder(YogaEdge.Right, 10);
|
||||
root.SetBorder(YogaEdge.Bottom, 10);
|
||||
root.MarginLeft = 10;
|
||||
root.MarginTop = 10;
|
||||
root.MarginRight = 10;
|
||||
root.MarginBottom = 10;
|
||||
root.PaddingLeft = 10;
|
||||
root.PaddingTop = 10;
|
||||
root.PaddingRight = 10;
|
||||
root.PaddingBottom = 10;
|
||||
root.BorderLeftWidth = 10;
|
||||
root.BorderTopWidth = 10;
|
||||
root.BorderRightWidth = 10;
|
||||
root.BorderBottomWidth = 10;
|
||||
root.Width = 100;
|
||||
root.Height = 100;
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.PositionType = YogaPositionType.Absolute;
|
||||
root_child0.SetPosition(YogaEdge.Left, 0);
|
||||
root_child0.SetPosition(YogaEdge.Top, 0);
|
||||
root_child0.Left = 0;
|
||||
root_child0.Top = 0;
|
||||
root_child0.Width = 50;
|
||||
root_child0.Height = 50;
|
||||
root.Insert(0, root_child0);
|
||||
|
||||
YogaNode root_child1 = new YogaNode();
|
||||
root_child1.PositionType = YogaPositionType.Absolute;
|
||||
root_child1.SetPosition(YogaEdge.Right, 0);
|
||||
root_child1.SetPosition(YogaEdge.Bottom, 0);
|
||||
root_child1.Right = 0;
|
||||
root_child1.Bottom = 0;
|
||||
root_child1.Width = 50;
|
||||
root_child1.Height = 50;
|
||||
root.Insert(1, root_child1);
|
||||
|
@@ -660,7 +660,7 @@ namespace Facebook.Yoga
|
||||
root.Height = 100;
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.SetPosition(YogaEdge.Top, 10);
|
||||
root_child0.Top = 10;
|
||||
root_child0.Width = 50;
|
||||
root_child0.Height = 50;
|
||||
root.Insert(0, root_child0);
|
||||
@@ -736,7 +736,7 @@ namespace Facebook.Yoga
|
||||
root.Insert(0, root_child0);
|
||||
|
||||
YogaNode root_child1 = new YogaNode();
|
||||
root_child1.SetPosition(YogaEdge.Top, 5);
|
||||
root_child1.Top = 5;
|
||||
root_child1.Width = 50;
|
||||
root_child1.Height = 20;
|
||||
root.Insert(1, root_child1);
|
||||
@@ -941,10 +941,10 @@ namespace Facebook.Yoga
|
||||
root.Height = 100;
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.SetMargin(YogaEdge.Left, 5);
|
||||
root_child0.SetMargin(YogaEdge.Top, 5);
|
||||
root_child0.SetMargin(YogaEdge.Right, 5);
|
||||
root_child0.SetMargin(YogaEdge.Bottom, 5);
|
||||
root_child0.MarginLeft = 5;
|
||||
root_child0.MarginTop = 5;
|
||||
root_child0.MarginRight = 5;
|
||||
root_child0.MarginBottom = 5;
|
||||
root_child0.Width = 50;
|
||||
root_child0.Height = 50;
|
||||
root.Insert(0, root_child0);
|
||||
@@ -955,10 +955,10 @@ namespace Facebook.Yoga
|
||||
root.Insert(1, root_child1);
|
||||
|
||||
YogaNode root_child1_child0 = new YogaNode();
|
||||
root_child1_child0.SetMargin(YogaEdge.Left, 1);
|
||||
root_child1_child0.SetMargin(YogaEdge.Top, 1);
|
||||
root_child1_child0.SetMargin(YogaEdge.Right, 1);
|
||||
root_child1_child0.SetMargin(YogaEdge.Bottom, 1);
|
||||
root_child1_child0.MarginLeft = 1;
|
||||
root_child1_child0.MarginTop = 1;
|
||||
root_child1_child0.MarginRight = 1;
|
||||
root_child1_child0.MarginBottom = 1;
|
||||
root_child1_child0.Width = 50;
|
||||
root_child1_child0.Height = 10;
|
||||
root_child1.Insert(0, root_child1_child0);
|
||||
@@ -1015,10 +1015,10 @@ namespace Facebook.Yoga
|
||||
YogaNode root = new YogaNode();
|
||||
root.FlexDirection = YogaFlexDirection.Row;
|
||||
root.AlignItems = YogaAlign.Baseline;
|
||||
root.SetPadding(YogaEdge.Left, 5);
|
||||
root.SetPadding(YogaEdge.Top, 5);
|
||||
root.SetPadding(YogaEdge.Right, 5);
|
||||
root.SetPadding(YogaEdge.Bottom, 5);
|
||||
root.PaddingLeft = 5;
|
||||
root.PaddingTop = 5;
|
||||
root.PaddingRight = 5;
|
||||
root.PaddingBottom = 5;
|
||||
root.Width = 100;
|
||||
root.Height = 100;
|
||||
|
||||
@@ -1028,10 +1028,10 @@ namespace Facebook.Yoga
|
||||
root.Insert(0, root_child0);
|
||||
|
||||
YogaNode root_child1 = new YogaNode();
|
||||
root_child1.SetPadding(YogaEdge.Left, 5);
|
||||
root_child1.SetPadding(YogaEdge.Top, 5);
|
||||
root_child1.SetPadding(YogaEdge.Right, 5);
|
||||
root_child1.SetPadding(YogaEdge.Bottom, 5);
|
||||
root_child1.PaddingLeft = 5;
|
||||
root_child1.PaddingTop = 5;
|
||||
root_child1.PaddingRight = 5;
|
||||
root_child1.PaddingBottom = 5;
|
||||
root_child1.Width = 50;
|
||||
root_child1.Height = 20;
|
||||
root.Insert(1, root_child1);
|
||||
|
@@ -21,10 +21,10 @@ namespace Facebook.Yoga
|
||||
public void Test_border_no_size()
|
||||
{
|
||||
YogaNode root = new YogaNode();
|
||||
root.SetBorder(YogaEdge.Left, 10);
|
||||
root.SetBorder(YogaEdge.Top, 10);
|
||||
root.SetBorder(YogaEdge.Right, 10);
|
||||
root.SetBorder(YogaEdge.Bottom, 10);
|
||||
root.BorderLeftWidth = 10;
|
||||
root.BorderTopWidth = 10;
|
||||
root.BorderRightWidth = 10;
|
||||
root.BorderBottomWidth = 10;
|
||||
root.StyleDirection = YogaDirection.LTR;
|
||||
root.CalculateLayout();
|
||||
|
||||
@@ -46,10 +46,10 @@ namespace Facebook.Yoga
|
||||
public void Test_border_container_match_child()
|
||||
{
|
||||
YogaNode root = new YogaNode();
|
||||
root.SetBorder(YogaEdge.Left, 10);
|
||||
root.SetBorder(YogaEdge.Top, 10);
|
||||
root.SetBorder(YogaEdge.Right, 10);
|
||||
root.SetBorder(YogaEdge.Bottom, 10);
|
||||
root.BorderLeftWidth = 10;
|
||||
root.BorderTopWidth = 10;
|
||||
root.BorderRightWidth = 10;
|
||||
root.BorderBottomWidth = 10;
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.Width = 10;
|
||||
@@ -86,10 +86,10 @@ namespace Facebook.Yoga
|
||||
public void Test_border_flex_child()
|
||||
{
|
||||
YogaNode root = new YogaNode();
|
||||
root.SetBorder(YogaEdge.Left, 10);
|
||||
root.SetBorder(YogaEdge.Top, 10);
|
||||
root.SetBorder(YogaEdge.Right, 10);
|
||||
root.SetBorder(YogaEdge.Bottom, 10);
|
||||
root.BorderLeftWidth = 10;
|
||||
root.BorderTopWidth = 10;
|
||||
root.BorderRightWidth = 10;
|
||||
root.BorderBottomWidth = 10;
|
||||
root.Width = 100;
|
||||
root.Height = 100;
|
||||
|
||||
@@ -128,10 +128,10 @@ namespace Facebook.Yoga
|
||||
public void Test_border_stretch_child()
|
||||
{
|
||||
YogaNode root = new YogaNode();
|
||||
root.SetBorder(YogaEdge.Left, 10);
|
||||
root.SetBorder(YogaEdge.Top, 10);
|
||||
root.SetBorder(YogaEdge.Right, 10);
|
||||
root.SetBorder(YogaEdge.Bottom, 10);
|
||||
root.BorderLeftWidth = 10;
|
||||
root.BorderTopWidth = 10;
|
||||
root.BorderRightWidth = 10;
|
||||
root.BorderBottomWidth = 10;
|
||||
root.Width = 100;
|
||||
root.Height = 100;
|
||||
|
||||
@@ -171,9 +171,9 @@ namespace Facebook.Yoga
|
||||
YogaNode root = new YogaNode();
|
||||
root.JustifyContent = YogaJustify.Center;
|
||||
root.AlignItems = YogaAlign.Center;
|
||||
root.SetBorder(YogaEdge.Start, 10);
|
||||
root.SetBorder(YogaEdge.End, 20);
|
||||
root.SetBorder(YogaEdge.Bottom, 20);
|
||||
root.BorderStartWidth = 10;
|
||||
root.BorderEndWidth = 20;
|
||||
root.BorderBottomWidth = 20;
|
||||
root.Width = 100;
|
||||
root.Height = 100;
|
||||
|
||||
|
@@ -26,7 +26,7 @@ namespace Facebook.Yoga
|
||||
root.Height = 100;
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.SetMargin(YogaEdge.Start, 10);
|
||||
root_child0.MarginStart = 10;
|
||||
root_child0.Width = 10;
|
||||
root.Insert(0, root_child0);
|
||||
root.StyleDirection = YogaDirection.LTR;
|
||||
@@ -64,7 +64,7 @@ namespace Facebook.Yoga
|
||||
root.Height = 100;
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.SetMargin(YogaEdge.Top, 10);
|
||||
root_child0.MarginTop = 10;
|
||||
root_child0.Height = 10;
|
||||
root.Insert(0, root_child0);
|
||||
root.StyleDirection = YogaDirection.LTR;
|
||||
@@ -104,7 +104,7 @@ namespace Facebook.Yoga
|
||||
root.Height = 100;
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.SetMargin(YogaEdge.End, 10);
|
||||
root_child0.MarginEnd = 10;
|
||||
root_child0.Width = 10;
|
||||
root.Insert(0, root_child0);
|
||||
root.StyleDirection = YogaDirection.LTR;
|
||||
@@ -143,7 +143,7 @@ namespace Facebook.Yoga
|
||||
root.Height = 100;
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.SetMargin(YogaEdge.Bottom, 10);
|
||||
root_child0.MarginBottom = 10;
|
||||
root_child0.Height = 10;
|
||||
root.Insert(0, root_child0);
|
||||
root.StyleDirection = YogaDirection.LTR;
|
||||
@@ -183,7 +183,7 @@ namespace Facebook.Yoga
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.FlexGrow = 1;
|
||||
root_child0.SetMargin(YogaEdge.Start, 10);
|
||||
root_child0.MarginStart = 10;
|
||||
root.Insert(0, root_child0);
|
||||
root.StyleDirection = YogaDirection.LTR;
|
||||
root.CalculateLayout();
|
||||
@@ -221,7 +221,7 @@ namespace Facebook.Yoga
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.FlexGrow = 1;
|
||||
root_child0.SetMargin(YogaEdge.Top, 10);
|
||||
root_child0.MarginTop = 10;
|
||||
root.Insert(0, root_child0);
|
||||
root.StyleDirection = YogaDirection.LTR;
|
||||
root.CalculateLayout();
|
||||
@@ -260,7 +260,7 @@ namespace Facebook.Yoga
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.FlexGrow = 1;
|
||||
root_child0.SetMargin(YogaEdge.Top, 10);
|
||||
root_child0.MarginTop = 10;
|
||||
root.Insert(0, root_child0);
|
||||
root.StyleDirection = YogaDirection.LTR;
|
||||
root.CalculateLayout();
|
||||
@@ -298,7 +298,7 @@ namespace Facebook.Yoga
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.FlexGrow = 1;
|
||||
root_child0.SetMargin(YogaEdge.Start, 10);
|
||||
root_child0.MarginStart = 10;
|
||||
root.Insert(0, root_child0);
|
||||
root.StyleDirection = YogaDirection.LTR;
|
||||
root.CalculateLayout();
|
||||
|
@@ -21,10 +21,10 @@ namespace Facebook.Yoga
|
||||
public void Test_padding_no_size()
|
||||
{
|
||||
YogaNode root = new YogaNode();
|
||||
root.SetPadding(YogaEdge.Left, 10);
|
||||
root.SetPadding(YogaEdge.Top, 10);
|
||||
root.SetPadding(YogaEdge.Right, 10);
|
||||
root.SetPadding(YogaEdge.Bottom, 10);
|
||||
root.PaddingLeft = 10;
|
||||
root.PaddingTop = 10;
|
||||
root.PaddingRight = 10;
|
||||
root.PaddingBottom = 10;
|
||||
root.StyleDirection = YogaDirection.LTR;
|
||||
root.CalculateLayout();
|
||||
|
||||
@@ -46,10 +46,10 @@ namespace Facebook.Yoga
|
||||
public void Test_padding_container_match_child()
|
||||
{
|
||||
YogaNode root = new YogaNode();
|
||||
root.SetPadding(YogaEdge.Left, 10);
|
||||
root.SetPadding(YogaEdge.Top, 10);
|
||||
root.SetPadding(YogaEdge.Right, 10);
|
||||
root.SetPadding(YogaEdge.Bottom, 10);
|
||||
root.PaddingLeft = 10;
|
||||
root.PaddingTop = 10;
|
||||
root.PaddingRight = 10;
|
||||
root.PaddingBottom = 10;
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.Width = 10;
|
||||
@@ -86,10 +86,10 @@ namespace Facebook.Yoga
|
||||
public void Test_padding_flex_child()
|
||||
{
|
||||
YogaNode root = new YogaNode();
|
||||
root.SetPadding(YogaEdge.Left, 10);
|
||||
root.SetPadding(YogaEdge.Top, 10);
|
||||
root.SetPadding(YogaEdge.Right, 10);
|
||||
root.SetPadding(YogaEdge.Bottom, 10);
|
||||
root.PaddingLeft = 10;
|
||||
root.PaddingTop = 10;
|
||||
root.PaddingRight = 10;
|
||||
root.PaddingBottom = 10;
|
||||
root.Width = 100;
|
||||
root.Height = 100;
|
||||
|
||||
@@ -128,10 +128,10 @@ namespace Facebook.Yoga
|
||||
public void Test_padding_stretch_child()
|
||||
{
|
||||
YogaNode root = new YogaNode();
|
||||
root.SetPadding(YogaEdge.Left, 10);
|
||||
root.SetPadding(YogaEdge.Top, 10);
|
||||
root.SetPadding(YogaEdge.Right, 10);
|
||||
root.SetPadding(YogaEdge.Bottom, 10);
|
||||
root.PaddingLeft = 10;
|
||||
root.PaddingTop = 10;
|
||||
root.PaddingRight = 10;
|
||||
root.PaddingBottom = 10;
|
||||
root.Width = 100;
|
||||
root.Height = 100;
|
||||
|
||||
@@ -171,9 +171,9 @@ namespace Facebook.Yoga
|
||||
YogaNode root = new YogaNode();
|
||||
root.JustifyContent = YogaJustify.Center;
|
||||
root.AlignItems = YogaAlign.Center;
|
||||
root.SetPadding(YogaEdge.Start, 10);
|
||||
root.SetPadding(YogaEdge.End, 20);
|
||||
root.SetPadding(YogaEdge.Bottom, 20);
|
||||
root.PaddingStart = 10;
|
||||
root.PaddingEnd = 20;
|
||||
root.PaddingBottom = 20;
|
||||
root.Width = 100;
|
||||
root.Height = 100;
|
||||
|
||||
@@ -218,10 +218,10 @@ namespace Facebook.Yoga
|
||||
root.Height = 200;
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.SetPadding(YogaEdge.Left, 20);
|
||||
root_child0.SetPadding(YogaEdge.Top, 20);
|
||||
root_child0.SetPadding(YogaEdge.Right, 20);
|
||||
root_child0.SetPadding(YogaEdge.Bottom, 20);
|
||||
root_child0.PaddingLeft = 20;
|
||||
root_child0.PaddingTop = 20;
|
||||
root_child0.PaddingRight = 20;
|
||||
root_child0.PaddingBottom = 20;
|
||||
root_child0.Width = 100;
|
||||
root_child0.Height = 100;
|
||||
root.Insert(0, root_child0);
|
||||
|
@@ -71,8 +71,8 @@ namespace Facebook.Yoga
|
||||
root.Height = 400;
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.SetPosition(YogaEdge.Left, 10.Percent());
|
||||
root_child0.SetPosition(YogaEdge.Top, 20.Percent());
|
||||
root_child0.Left = 10.Percent();
|
||||
root_child0.Top = 20.Percent();
|
||||
root_child0.Width = 45.Percent();
|
||||
root_child0.Height = 55.Percent();
|
||||
root.Insert(0, root_child0);
|
||||
@@ -116,8 +116,8 @@ namespace Facebook.Yoga
|
||||
root.Height = 500;
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.SetPosition(YogaEdge.Right, 20.Percent());
|
||||
root_child0.SetPosition(YogaEdge.Bottom, 10.Percent());
|
||||
root_child0.Right = 20.Percent();
|
||||
root_child0.Bottom = 10.Percent();
|
||||
root_child0.Width = 55.Percent();
|
||||
root_child0.Height = 15.Percent();
|
||||
root.Insert(0, root_child0);
|
||||
@@ -691,38 +691,38 @@ namespace Facebook.Yoga
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.FlexGrow = 1;
|
||||
root_child0.FlexBasis = 10.Percent();
|
||||
root_child0.SetMargin(YogaEdge.Left, 5);
|
||||
root_child0.SetMargin(YogaEdge.Top, 5);
|
||||
root_child0.SetMargin(YogaEdge.Right, 5);
|
||||
root_child0.SetMargin(YogaEdge.Bottom, 5);
|
||||
root_child0.SetPadding(YogaEdge.Left, 3);
|
||||
root_child0.SetPadding(YogaEdge.Top, 3);
|
||||
root_child0.SetPadding(YogaEdge.Right, 3);
|
||||
root_child0.SetPadding(YogaEdge.Bottom, 3);
|
||||
root_child0.MarginLeft = 5;
|
||||
root_child0.MarginTop = 5;
|
||||
root_child0.MarginRight = 5;
|
||||
root_child0.MarginBottom = 5;
|
||||
root_child0.PaddingLeft = 3;
|
||||
root_child0.PaddingTop = 3;
|
||||
root_child0.PaddingRight = 3;
|
||||
root_child0.PaddingBottom = 3;
|
||||
root_child0.MinWidth = 60.Percent();
|
||||
root.Insert(0, root_child0);
|
||||
|
||||
YogaNode root_child0_child0 = new YogaNode();
|
||||
root_child0_child0.SetMargin(YogaEdge.Left, 5);
|
||||
root_child0_child0.SetMargin(YogaEdge.Top, 5);
|
||||
root_child0_child0.SetMargin(YogaEdge.Right, 5);
|
||||
root_child0_child0.SetMargin(YogaEdge.Bottom, 5);
|
||||
root_child0_child0.SetPadding(YogaEdge.Left, 3.Percent());
|
||||
root_child0_child0.SetPadding(YogaEdge.Top, 3.Percent());
|
||||
root_child0_child0.SetPadding(YogaEdge.Right, 3.Percent());
|
||||
root_child0_child0.SetPadding(YogaEdge.Bottom, 3.Percent());
|
||||
root_child0_child0.MarginLeft = 5;
|
||||
root_child0_child0.MarginTop = 5;
|
||||
root_child0_child0.MarginRight = 5;
|
||||
root_child0_child0.MarginBottom = 5;
|
||||
root_child0_child0.PaddingLeft = 3.Percent();
|
||||
root_child0_child0.PaddingTop = 3.Percent();
|
||||
root_child0_child0.PaddingRight = 3.Percent();
|
||||
root_child0_child0.PaddingBottom = 3.Percent();
|
||||
root_child0_child0.Width = 50.Percent();
|
||||
root_child0.Insert(0, root_child0_child0);
|
||||
|
||||
YogaNode root_child0_child0_child0 = new YogaNode();
|
||||
root_child0_child0_child0.SetMargin(YogaEdge.Left, 5.Percent());
|
||||
root_child0_child0_child0.SetMargin(YogaEdge.Top, 5.Percent());
|
||||
root_child0_child0_child0.SetMargin(YogaEdge.Right, 5.Percent());
|
||||
root_child0_child0_child0.SetMargin(YogaEdge.Bottom, 5.Percent());
|
||||
root_child0_child0_child0.SetPadding(YogaEdge.Left, 3);
|
||||
root_child0_child0_child0.SetPadding(YogaEdge.Top, 3);
|
||||
root_child0_child0_child0.SetPadding(YogaEdge.Right, 3);
|
||||
root_child0_child0_child0.SetPadding(YogaEdge.Bottom, 3);
|
||||
root_child0_child0_child0.MarginLeft = 5.Percent();
|
||||
root_child0_child0_child0.MarginTop = 5.Percent();
|
||||
root_child0_child0_child0.MarginRight = 5.Percent();
|
||||
root_child0_child0_child0.MarginBottom = 5.Percent();
|
||||
root_child0_child0_child0.PaddingLeft = 3;
|
||||
root_child0_child0_child0.PaddingTop = 3;
|
||||
root_child0_child0_child0.PaddingRight = 3;
|
||||
root_child0_child0_child0.PaddingBottom = 3;
|
||||
root_child0_child0_child0.Width = 45.Percent();
|
||||
root_child0_child0.Insert(0, root_child0_child0_child0);
|
||||
|
||||
@@ -801,10 +801,10 @@ namespace Facebook.Yoga
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.FlexGrow = 1;
|
||||
root_child0.SetMargin(YogaEdge.Left, 10.Percent());
|
||||
root_child0.SetMargin(YogaEdge.Top, 10.Percent());
|
||||
root_child0.SetMargin(YogaEdge.Right, 10.Percent());
|
||||
root_child0.SetMargin(YogaEdge.Bottom, 10.Percent());
|
||||
root_child0.MarginLeft = 10.Percent();
|
||||
root_child0.MarginTop = 10.Percent();
|
||||
root_child0.MarginRight = 10.Percent();
|
||||
root_child0.MarginBottom = 10.Percent();
|
||||
root.Insert(0, root_child0);
|
||||
|
||||
YogaNode root_child0_child0 = new YogaNode();
|
||||
@@ -861,10 +861,10 @@ namespace Facebook.Yoga
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.FlexGrow = 1;
|
||||
root_child0.SetPadding(YogaEdge.Left, 10.Percent());
|
||||
root_child0.SetPadding(YogaEdge.Top, 10.Percent());
|
||||
root_child0.SetPadding(YogaEdge.Right, 10.Percent());
|
||||
root_child0.SetPadding(YogaEdge.Bottom, 10.Percent());
|
||||
root_child0.PaddingLeft = 10.Percent();
|
||||
root_child0.PaddingTop = 10.Percent();
|
||||
root_child0.PaddingRight = 10.Percent();
|
||||
root_child0.PaddingBottom = 10.Percent();
|
||||
root.Insert(0, root_child0);
|
||||
|
||||
YogaNode root_child0_child0 = new YogaNode();
|
||||
@@ -921,8 +921,8 @@ namespace Facebook.Yoga
|
||||
|
||||
YogaNode root_child0 = new YogaNode();
|
||||
root_child0.PositionType = YogaPositionType.Absolute;
|
||||
root_child0.SetPosition(YogaEdge.Left, 30.Percent());
|
||||
root_child0.SetPosition(YogaEdge.Top, 10.Percent());
|
||||
root_child0.Left = 30.Percent();
|
||||
root_child0.Top = 10.Percent();
|
||||
root_child0.Width = 10;
|
||||
root_child0.Height = 10;
|
||||
root.Insert(0, root_child0);
|
||||
|
@@ -420,14 +420,14 @@ namespace Facebook.Yoga
|
||||
YogaNode root_child0_child0 = new YogaNode();
|
||||
root_child0_child0.FlexGrow = 1;
|
||||
root_child0_child0.FlexBasis = 0.3f;
|
||||
root_child0_child0.SetPosition(YogaEdge.Bottom, 13.3f);
|
||||
root_child0_child0.Bottom = 13.3f;
|
||||
root_child0_child0.Height = 9.9f;
|
||||
root_child0.Insert(0, root_child0_child0);
|
||||
|
||||
YogaNode root_child0_child1 = new YogaNode();
|
||||
root_child0_child1.FlexGrow = 4;
|
||||
root_child0_child1.FlexBasis = 0.3f;
|
||||
root_child0_child1.SetPosition(YogaEdge.Top, 13.3f);
|
||||
root_child0_child1.Top = 13.3f;
|
||||
root_child0_child1.Height = 1.1f;
|
||||
root_child0.Insert(1, root_child0_child1);
|
||||
|
||||
@@ -661,7 +661,7 @@ namespace Facebook.Yoga
|
||||
YogaNode.SetExperimentalFeatureEnabled(YogaExperimentalFeature.Rounding, true);
|
||||
|
||||
YogaNode root = new YogaNode();
|
||||
root.SetPosition(YogaEdge.Top, 0.3f);
|
||||
root.Top = 0.3f;
|
||||
root.Width = 100;
|
||||
root.Height = 113.4f;
|
||||
|
||||
@@ -735,7 +735,7 @@ namespace Facebook.Yoga
|
||||
YogaNode.SetExperimentalFeatureEnabled(YogaExperimentalFeature.Rounding, true);
|
||||
|
||||
YogaNode root = new YogaNode();
|
||||
root.SetPosition(YogaEdge.Top, 0.7f);
|
||||
root.Top = 0.7f;
|
||||
root.Width = 100;
|
||||
root.Height = 113.4f;
|
||||
|
||||
|
@@ -1,143 +0,0 @@
|
||||
/**
|
||||
* Copyright (c) 2014-present, Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD-style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
|
||||
using NUnit.Framework;
|
||||
using System;
|
||||
|
||||
/**
|
||||
* Tests for {@link YogaNode}.
|
||||
*/
|
||||
namespace Facebook.Yoga
|
||||
{
|
||||
[TestFixture]
|
||||
public class YogaNodeCreateTest
|
||||
{
|
||||
[Test]
|
||||
public void TestSimple()
|
||||
{
|
||||
YogaNode nodeDefault = new YogaNode();
|
||||
YogaNode nodeCreated = YogaNode.Create(flexDirection: YogaFlexDirection.Row);
|
||||
Assert.AreEqual(YogaFlexDirection.Row, nodeCreated.FlexDirection);
|
||||
Assert.IsFalse(nodeDefault.IsDirty);
|
||||
nodeDefault.CopyStyle(nodeCreated);
|
||||
Assert.IsTrue(nodeDefault.IsDirty);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TestSame()
|
||||
{
|
||||
YogaNode nodeDefault = new YogaNode();
|
||||
YogaNode nodeCreated = YogaNode.Create();
|
||||
Assert.IsFalse(nodeDefault.IsDirty);
|
||||
nodeDefault.CopyStyle(nodeCreated);
|
||||
Assert.IsFalse(nodeDefault.IsDirty);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TestMultiple()
|
||||
{
|
||||
YogaNode node = YogaNode.Create(
|
||||
positionType: YogaPositionType.Absolute,
|
||||
wrap: YogaWrap.Wrap,
|
||||
position: new Spacing(top:6, right:4),
|
||||
margin: new Spacing(bottom:5, left:3));
|
||||
|
||||
Assert.AreEqual(YogaFlexDirection.Column, node.FlexDirection);
|
||||
Assert.AreEqual(YogaPositionType.Absolute, node.PositionType);
|
||||
Assert.AreEqual(YogaWrap.Wrap, node.Wrap);
|
||||
Assert.AreEqual(6.Px(), node.GetPosition(YogaEdge.Top));
|
||||
Assert.IsTrue(YogaConstants.IsUndefined(node.GetPosition(YogaEdge.Bottom)));
|
||||
Assert.AreEqual(4.Px(), node.GetPosition(YogaEdge.Right));
|
||||
Assert.IsTrue(YogaConstants.IsUndefined(node.GetPosition(YogaEdge.Left)));
|
||||
Assert.AreEqual(0.Px(), node.GetMargin(YogaEdge.Top));
|
||||
Assert.AreEqual(5.Px(), node.GetMargin(YogaEdge.Bottom));
|
||||
Assert.AreEqual(3.Px(), node.GetMargin(YogaEdge.Left));
|
||||
Assert.AreEqual(0.Px(), node.GetMargin(YogaEdge.Right));
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TestFull()
|
||||
{
|
||||
YogaNode node = YogaNode.Create(
|
||||
styleDirection: YogaDirection.RTL,
|
||||
flexDirection: YogaFlexDirection.RowReverse,
|
||||
|
||||
justifyContent: YogaJustify.SpaceAround,
|
||||
alignContent: YogaAlign.Center,
|
||||
alignItems: YogaAlign.FlexEnd,
|
||||
alignSelf: YogaAlign.Stretch,
|
||||
|
||||
positionType: YogaPositionType.Absolute,
|
||||
wrap: YogaWrap.Wrap,
|
||||
overflow: YogaOverflow.Scroll,
|
||||
|
||||
flex: 1,
|
||||
flexGrow: 2,
|
||||
flexShrink: 3,
|
||||
flexBasis: 4,
|
||||
|
||||
position: new Spacing(top: 5, bottom: 6, left: 7, right: 8),
|
||||
margin: new Spacing(top: 9, bottom: 10, left: 11, right: 12),
|
||||
padding: new Spacing(top: 13, bottom: 14, left: 15, right: 16),
|
||||
border: new Border(top: 17, bottom: 18, left: 19, right: 20),
|
||||
|
||||
width: 21,
|
||||
height: 22,
|
||||
minWidth: 23,
|
||||
minHeight: 24,
|
||||
maxWidth: 25,
|
||||
maxHeight: 26);
|
||||
|
||||
Assert.AreEqual(YogaDirection.RTL, node.StyleDirection);
|
||||
Assert.AreEqual(YogaFlexDirection.RowReverse, node.FlexDirection);
|
||||
|
||||
Assert.AreEqual(YogaJustify.SpaceAround, node.JustifyContent);
|
||||
Assert.AreEqual(YogaAlign.Center, node.AlignContent);
|
||||
Assert.AreEqual(YogaAlign.FlexEnd, node.AlignItems);
|
||||
Assert.AreEqual(YogaAlign.Stretch, node.AlignSelf);
|
||||
|
||||
Assert.AreEqual(YogaPositionType.Absolute, node.PositionType);
|
||||
Assert.AreEqual(YogaWrap.Wrap, node.Wrap);
|
||||
Assert.AreEqual(YogaOverflow.Scroll, node.Overflow);
|
||||
|
||||
Assert.AreEqual(2, node.FlexGrow);
|
||||
Assert.AreEqual(3, node.FlexShrink);
|
||||
Assert.AreEqual(4.Px(), node.FlexBasis);
|
||||
node.FlexGrow = YogaConstants.Undefined;
|
||||
Assert.AreEqual(1, node.FlexGrow);
|
||||
|
||||
Assert.AreEqual(5.Px(), node.GetPosition(YogaEdge.Top));
|
||||
Assert.AreEqual(6.Px(), node.GetPosition(YogaEdge.Bottom));
|
||||
Assert.AreEqual(7.Px(), node.GetPosition(YogaEdge.Left));
|
||||
Assert.AreEqual(8.Px(), node.GetPosition(YogaEdge.Right));
|
||||
|
||||
Assert.AreEqual(9.Px(), node.GetMargin(YogaEdge.Top));
|
||||
Assert.AreEqual(10.Px(), node.GetMargin(YogaEdge.Bottom));
|
||||
Assert.AreEqual(11.Px(), node.GetMargin(YogaEdge.Left));
|
||||
Assert.AreEqual(12.Px(), node.GetMargin(YogaEdge.Right));
|
||||
|
||||
Assert.AreEqual(13.Px(), node.GetPadding(YogaEdge.Top));
|
||||
Assert.AreEqual(14.Px(), node.GetPadding(YogaEdge.Bottom));
|
||||
Assert.AreEqual(15.Px(), node.GetPadding(YogaEdge.Left));
|
||||
Assert.AreEqual(16.Px(), node.GetPadding(YogaEdge.Right));
|
||||
|
||||
Assert.AreEqual(17, node.GetBorder(YogaEdge.Top));
|
||||
Assert.AreEqual(18, node.GetBorder(YogaEdge.Bottom));
|
||||
Assert.AreEqual(19, node.GetBorder(YogaEdge.Left));
|
||||
Assert.AreEqual(20, node.GetBorder(YogaEdge.Right));
|
||||
|
||||
Assert.AreEqual(21.Px(), node.Width);
|
||||
Assert.AreEqual(22.Px(), node.Height);
|
||||
Assert.AreEqual(23.Px(), node.MinWidth);
|
||||
Assert.AreEqual(24.Px(), node.MinHeight);
|
||||
Assert.AreEqual(25.Px(), node.MaxWidth);
|
||||
Assert.AreEqual(26.Px(), node.MaxHeight);
|
||||
}
|
||||
}
|
||||
}
|
114
csharp/tests/Facebook.Yoga/YogaNodeSpacingTest.cs
Normal file
114
csharp/tests/Facebook.Yoga/YogaNodeSpacingTest.cs
Normal file
@@ -0,0 +1,114 @@
|
||||
/**
|
||||
* Copyright (c) 2014-present, Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD-style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*/
|
||||
|
||||
using NUnit.Framework;
|
||||
using System;
|
||||
|
||||
/**
|
||||
* Tests for {@link YogaNode}.
|
||||
*/
|
||||
namespace Facebook.Yoga
|
||||
{
|
||||
[TestFixture]
|
||||
public class YogaNodeSpacingTest
|
||||
{
|
||||
[Test]
|
||||
public void TestObjectInitializer()
|
||||
{
|
||||
YogaNode node = new YogaNode
|
||||
{
|
||||
Top = 1,
|
||||
Bottom = 2,
|
||||
Left = 3,
|
||||
Right = 4,
|
||||
|
||||
MarginTop = 5,
|
||||
MarginBottom = 6,
|
||||
MarginLeft = 7,
|
||||
MarginRight = 8,
|
||||
|
||||
PaddingTop = 9,
|
||||
PaddingBottom = 10,
|
||||
PaddingLeft = 11,
|
||||
PaddingRight = 12,
|
||||
|
||||
BorderTopWidth = 13,
|
||||
BorderBottomWidth = 14,
|
||||
BorderLeftWidth = 15,
|
||||
BorderRightWidth = 16,
|
||||
};
|
||||
|
||||
Assert.AreEqual(1.Px(), node.Top);
|
||||
Assert.AreEqual(2.Px(), node.Bottom);
|
||||
Assert.AreEqual(3.Px(), node.Left);
|
||||
Assert.AreEqual(4.Px(), node.Right);
|
||||
|
||||
Assert.AreEqual(5.Px(), node.MarginTop);
|
||||
Assert.AreEqual(6.Px(), node.MarginBottom);
|
||||
Assert.AreEqual(7.Px(), node.MarginLeft);
|
||||
Assert.AreEqual(8.Px(), node.MarginRight);
|
||||
|
||||
Assert.AreEqual(9.Px(), node.PaddingTop);
|
||||
Assert.AreEqual(10.Px(), node.PaddingBottom);
|
||||
Assert.AreEqual(11.Px(), node.PaddingLeft);
|
||||
Assert.AreEqual(12.Px(), node.PaddingRight);
|
||||
|
||||
Assert.AreEqual(13, node.BorderTopWidth);
|
||||
Assert.AreEqual(14, node.BorderBottomWidth);
|
||||
Assert.AreEqual(15, node.BorderLeftWidth);
|
||||
Assert.AreEqual(16, node.BorderRightWidth);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TestWriteRead()
|
||||
{
|
||||
YogaNode node = new YogaNode();
|
||||
|
||||
node.Top = 1;
|
||||
node.Bottom = 2;
|
||||
node.Left = 3;
|
||||
node.Right = 4;
|
||||
|
||||
node.MarginTop = 5;
|
||||
node.MarginBottom = 6;
|
||||
node.MarginLeft = 7;
|
||||
node.MarginRight = 8;
|
||||
|
||||
node.PaddingTop = 9;
|
||||
node.PaddingBottom = 10;
|
||||
node.PaddingLeft = 11;
|
||||
node.PaddingRight = 12;
|
||||
|
||||
node.BorderTopWidth = 13;
|
||||
node.BorderBottomWidth = 14;
|
||||
node.BorderLeftWidth = 15;
|
||||
node.BorderRightWidth = 16;
|
||||
|
||||
Assert.AreEqual(1.Px(), node.Top);
|
||||
Assert.AreEqual(2.Px(), node.Bottom);
|
||||
Assert.AreEqual(3.Px(), node.Left);
|
||||
Assert.AreEqual(4.Px(), node.Right);
|
||||
|
||||
Assert.AreEqual(5.Px(), node.MarginTop);
|
||||
Assert.AreEqual(6.Px(), node.MarginBottom);
|
||||
Assert.AreEqual(7.Px(), node.MarginLeft);
|
||||
Assert.AreEqual(8.Px(), node.MarginRight);
|
||||
|
||||
Assert.AreEqual(9.Px(), node.PaddingTop);
|
||||
Assert.AreEqual(10.Px(), node.PaddingBottom);
|
||||
Assert.AreEqual(11.Px(), node.PaddingLeft);
|
||||
Assert.AreEqual(12.Px(), node.PaddingRight);
|
||||
|
||||
Assert.AreEqual(13, node.BorderTopWidth);
|
||||
Assert.AreEqual(14, node.BorderBottomWidth);
|
||||
Assert.AreEqual(15, node.BorderLeftWidth);
|
||||
Assert.AreEqual(16, node.BorderRightWidth);
|
||||
}
|
||||
}
|
||||
}
|
@@ -197,6 +197,54 @@ namespace Facebook.Yoga
|
||||
});
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TestBaselineFunc()
|
||||
{
|
||||
YogaNode node = new YogaNode();
|
||||
node.Height = 200;
|
||||
node.FlexDirection = YogaFlexDirection.Row;
|
||||
node.AlignItems = YogaAlign.Baseline;
|
||||
|
||||
YogaNode child0 = new YogaNode();
|
||||
child0.Width = 100;
|
||||
child0.Height = 110;
|
||||
child0.SetBaselineFunction((_, width, height) => {
|
||||
Assert.AreEqual(100, width);
|
||||
Assert.AreEqual(110, height);
|
||||
return 65;
|
||||
});
|
||||
node.Insert(0, child0);
|
||||
|
||||
YogaNode child1 = new YogaNode();
|
||||
child1.Width = 100;
|
||||
child1.Height = 110;
|
||||
child1.SetBaselineFunction((_, width, height) => {
|
||||
Assert.AreEqual(100, width);
|
||||
Assert.AreEqual(110, height);
|
||||
return 80;
|
||||
});
|
||||
node.Insert(1, child1);
|
||||
|
||||
YogaNode child2 = new YogaNode();
|
||||
child2.Width = 100;
|
||||
child2.Height = 110;
|
||||
child2.SetBaselineFunction((_, width, height) => {
|
||||
Assert.AreEqual(100, width);
|
||||
Assert.AreEqual(110, height);
|
||||
return 88;
|
||||
});
|
||||
node.Insert(2, child2);
|
||||
|
||||
node.CalculateLayout();
|
||||
|
||||
Assert.AreEqual(0, child0.LayoutX);
|
||||
Assert.AreEqual(23, child0.LayoutY);
|
||||
Assert.AreEqual(100, child1.LayoutX);
|
||||
Assert.AreEqual(8, child1.LayoutY);
|
||||
Assert.AreEqual(200, child2.LayoutX);
|
||||
Assert.AreEqual(0, child2.LayoutY);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TestPrint()
|
||||
{
|
||||
@@ -228,6 +276,36 @@ namespace Facebook.Yoga
|
||||
Assert.AreEqual(100.Px(), node0.MaxHeight);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TestCopyConstructor()
|
||||
{
|
||||
YogaNode node0 = new YogaNode();
|
||||
node0.MaxWidth = 80;
|
||||
|
||||
YogaNode node1 = new YogaNode(node0);
|
||||
Assert.AreEqual(80.Px(), node1.MaxWidth);
|
||||
|
||||
YogaNode node2 = new YogaNode(node1)
|
||||
{
|
||||
MaxHeight = 90,
|
||||
};
|
||||
Assert.AreEqual(80.Px(), node2.MaxWidth);
|
||||
Assert.AreEqual(90.Px(), node2.MaxHeight);
|
||||
|
||||
YogaNode node3 = new YogaNode(node0)
|
||||
{
|
||||
MaxWidth = 100,
|
||||
};
|
||||
Assert.AreEqual(100.Px(), node3.MaxWidth);
|
||||
|
||||
YogaNode node4 = new YogaNode(node2)
|
||||
{
|
||||
MaxWidth = 100,
|
||||
};
|
||||
Assert.AreEqual(100.Px(), node4.MaxWidth);
|
||||
Assert.AreEqual(90.Px(), node4.MaxHeight);
|
||||
}
|
||||
|
||||
private void ForceGC()
|
||||
{
|
||||
GC.Collect(GC.MaxGeneration);
|
||||
@@ -361,16 +439,16 @@ namespace Facebook.Yoga
|
||||
YogaNode node = new YogaNode();
|
||||
node.Width = 100;
|
||||
node.Height = 100;
|
||||
node.SetPadding(YogaEdge.Start, 1);
|
||||
node.SetPadding(YogaEdge.End, 2);
|
||||
node.SetPadding(YogaEdge.Top, 3);
|
||||
node.SetPadding(YogaEdge.Bottom, 4);
|
||||
node.PaddingStart = 1;
|
||||
node.PaddingEnd = 2;
|
||||
node.PaddingTop = 3;
|
||||
node.PaddingBottom = 4;
|
||||
node.CalculateLayout();
|
||||
|
||||
Assert.AreEqual(1, node.GetLayoutPadding(YogaEdge.Left));
|
||||
Assert.AreEqual(2, node.GetLayoutPadding(YogaEdge.Right));
|
||||
Assert.AreEqual(3, node.GetLayoutPadding(YogaEdge.Top));
|
||||
Assert.AreEqual(4, node.GetLayoutPadding(YogaEdge.Bottom));
|
||||
Assert.AreEqual(1, node.LayoutPaddingLeft);
|
||||
Assert.AreEqual(2, node.LayoutPaddingRight);
|
||||
Assert.AreEqual(3, node.LayoutPaddingTop);
|
||||
Assert.AreEqual(4, node.LayoutPaddingBottom);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -102,12 +102,12 @@ CSEmitter.prototype = Object.create(Emitter.prototype, {
|
||||
YGDirectionLTR:{value:'YogaDirection.LTR'},
|
||||
YGDirectionRTL:{value:'YogaDirection.RTL'},
|
||||
|
||||
YGEdgeBottom:{value:'YogaEdge.Bottom'},
|
||||
YGEdgeEnd:{value:'YogaEdge.End'},
|
||||
YGEdgeLeft:{value:'YogaEdge.Left'},
|
||||
YGEdgeRight:{value:'YogaEdge.Right'},
|
||||
YGEdgeStart:{value:'YogaEdge.Start'},
|
||||
YGEdgeTop:{value:'YogaEdge.Top'},
|
||||
YGEdgeBottom:{value:'Bottom'},
|
||||
YGEdgeEnd:{value:'End'},
|
||||
YGEdgeLeft:{value:'Left'},
|
||||
YGEdgeRight:{value:'Right'},
|
||||
YGEdgeStart:{value:'Start'},
|
||||
YGEdgeTop:{value:'Top'},
|
||||
|
||||
YGFlexDirectionColumn:{value:'YogaFlexDirection.Column'},
|
||||
YGFlexDirectionColumnReverse:{value:'YogaFlexDirection.ColumnReverse'},
|
||||
@@ -169,7 +169,7 @@ CSEmitter.prototype = Object.create(Emitter.prototype, {
|
||||
}},
|
||||
|
||||
YGNodeStyleSetBorder:{value:function(nodeName, edge, value) {
|
||||
this.push(nodeName + '.SetBorder(' + edge + ', ' + toValueCs(value) + ');');
|
||||
this.push(nodeName + '.Border' + edge + 'Width = ' + toValueCs(value) + ';');
|
||||
}},
|
||||
|
||||
YGNodeStyleSetDirection:{value:function(nodeName, value) {
|
||||
@@ -205,7 +205,7 @@ CSEmitter.prototype = Object.create(Emitter.prototype, {
|
||||
}},
|
||||
|
||||
YGNodeStyleSetMargin:{value:function(nodeName, edge, value) {
|
||||
this.push(nodeName + '.SetMargin(' + edge + ', ' + toCsUnitValue(value) + ');');
|
||||
this.push(nodeName + '.Margin' + edge + ' = ' + toCsUnitValue(value) + ';');
|
||||
}},
|
||||
|
||||
YGNodeStyleSetMaxHeight:{value:function(nodeName, value) {
|
||||
@@ -229,11 +229,11 @@ CSEmitter.prototype = Object.create(Emitter.prototype, {
|
||||
}},
|
||||
|
||||
YGNodeStyleSetPadding:{value:function(nodeName, edge, value) {
|
||||
this.push(nodeName + '.SetPadding(' + edge + ', ' + toCsUnitValue(value) + ');');
|
||||
this.push(nodeName + '.Padding' + edge + ' = ' + toCsUnitValue(value) + ';');
|
||||
}},
|
||||
|
||||
YGNodeStyleSetPosition:{value:function(nodeName, edge, value) {
|
||||
this.push(nodeName + '.SetPosition(' + edge + ', ' + toCsUnitValue(value) + ');');
|
||||
this.push(nodeName + '.' + edge + ' = ' + toCsUnitValue(value) + ';');
|
||||
}},
|
||||
|
||||
YGNodeStyleSetPositionType:{value:function(nodeName, value) {
|
||||
|
@@ -41,18 +41,12 @@
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifndef YG_ENUM_BEGIN
|
||||
#ifndef NS_ENUM
|
||||
#define YG_ENUM_BEGIN(name) enum name
|
||||
#else
|
||||
#define YG_ENUM_BEGIN(name) NS_ENUM(NSInteger, name)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef YG_ENUM_END
|
||||
#ifndef NS_ENUM
|
||||
#define YG_ENUM_END(name) name
|
||||
#else
|
||||
#ifdef NS_ENUM
|
||||
// Cannot use NSInteger as NSInteger has a different size than int (which is the default type of a enum).
|
||||
// Therefor when linking the Yoga C library into obj-c the header is a missmatch for the Yoga ABI.
|
||||
#define YG_ENUM_BEGIN(name) NS_ENUM(int, name)
|
||||
#define YG_ENUM_END(name)
|
||||
#endif
|
||||
#else
|
||||
#define YG_ENUM_BEGIN(name) enum name
|
||||
#define YG_ENUM_END(name) name
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user