Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5cc0397acb | |||
| 73448f483c | |||
| 7b7fac07b3 | |||
| 759655059d | |||
| fa3d912e41 |
@@ -0,0 +1,36 @@
|
||||
using NUnit.Framework;
|
||||
using QuestPDF.Examples.Engine;
|
||||
using QuestPDF.Fluent;
|
||||
using QuestPDF.Helpers;
|
||||
|
||||
namespace QuestPDF.Examples
|
||||
{
|
||||
public class RelativePaddingExamples
|
||||
{
|
||||
[Test]
|
||||
public void ItemTypes()
|
||||
{
|
||||
RenderingTest
|
||||
.Create()
|
||||
.ProduceImages()
|
||||
.PageSize(250, 250)
|
||||
.ShowResults()
|
||||
.Render(container =>
|
||||
{
|
||||
container
|
||||
.Width(250)
|
||||
.Height(250)
|
||||
|
||||
.Padding(50)
|
||||
.Background(Colors.Grey.Lighten2)
|
||||
|
||||
.RelativePaddingLeft(0.1f)
|
||||
.RelativePaddingTop(0.2f)
|
||||
.RelativePaddingRight(0.3f)
|
||||
.RelativePaddingBottom(0.4f)
|
||||
|
||||
.Background(Colors.Grey.Darken2);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
using System.Linq;
|
||||
using NUnit.Framework;
|
||||
using QuestPDF.Examples.Engine;
|
||||
using QuestPDF.Fluent;
|
||||
using QuestPDF.Helpers;
|
||||
|
||||
namespace QuestPDF.Examples
|
||||
{
|
||||
public class RelativePositionExamples
|
||||
{
|
||||
[Test]
|
||||
public void ItemTypes()
|
||||
{
|
||||
RenderingTest
|
||||
.Create()
|
||||
.ProduceImages()
|
||||
.PageSize(500, 500)
|
||||
.ShowResults()
|
||||
.Render(container =>
|
||||
{
|
||||
container
|
||||
.Padding(100)
|
||||
.Background(Colors.Grey.Lighten2)
|
||||
.RelativePositionVertical(0.5f, -0.5f)
|
||||
.RelativePositionHorizontal(1f, -0.5f)
|
||||
.RelativeWidth(0.4f)
|
||||
.RelativeHeight(0.6f)
|
||||
.Background(Colors.Grey.Darken2);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
using System.Linq;
|
||||
using NUnit.Framework;
|
||||
using QuestPDF.Examples.Engine;
|
||||
using QuestPDF.Fluent;
|
||||
using QuestPDF.Helpers;
|
||||
|
||||
namespace QuestPDF.Examples
|
||||
{
|
||||
public class RelativeSizeExamples
|
||||
{
|
||||
[Test]
|
||||
public void ItemTypes()
|
||||
{
|
||||
RenderingTest
|
||||
.Create()
|
||||
.ProduceImages()
|
||||
.PageSize(600, 600)
|
||||
.ShowResults()
|
||||
.Render(container =>
|
||||
{
|
||||
container
|
||||
.AlignMiddle()
|
||||
.AlignCenter()
|
||||
.Width(400)
|
||||
.Height(400)
|
||||
.Background(Colors.Grey.Lighten2)
|
||||
.AlignMiddle()
|
||||
.AlignCenter()
|
||||
.Container()
|
||||
.AlignMiddle()
|
||||
.AlignCenter()
|
||||
.RelativeWidth(0.25f)
|
||||
.RelativeHeight(0.5f)
|
||||
.Background(Colors.Grey.Darken2);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,93 @@
|
||||
using NUnit.Framework;
|
||||
using QuestPDF.Examples.Engine;
|
||||
using QuestPDF.Fluent;
|
||||
using QuestPDF.Helpers;
|
||||
|
||||
namespace QuestPDF.Examples
|
||||
{
|
||||
public class ShrinkExamples
|
||||
{
|
||||
[Test]
|
||||
public void Shrink_Without()
|
||||
{
|
||||
RenderingTest
|
||||
.Create()
|
||||
.PageSize(300, 200)
|
||||
.ProduceImages()
|
||||
.ShowResults()
|
||||
.Render(container =>
|
||||
{
|
||||
container
|
||||
.Padding(20)
|
||||
.Border(2)
|
||||
.Background(Colors.Grey.Lighten2)
|
||||
.Padding(20)
|
||||
.Text("This is test.")
|
||||
.FontSize(20);
|
||||
});
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Shrink_Horizontal()
|
||||
{
|
||||
RenderingTest
|
||||
.Create()
|
||||
.PageSize(300, 200)
|
||||
.ProduceImages()
|
||||
.ShowResults()
|
||||
.Render(container =>
|
||||
{
|
||||
container
|
||||
.Padding(20)
|
||||
.Border(2)
|
||||
.ShrinkHorizontal()
|
||||
.Background(Colors.Grey.Lighten2)
|
||||
.Padding(20)
|
||||
.Text("This is test.")
|
||||
.FontSize(20);
|
||||
});
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Shrink_Vertical()
|
||||
{
|
||||
RenderingTest
|
||||
.Create()
|
||||
.PageSize(300, 200)
|
||||
.ProduceImages()
|
||||
.ShowResults()
|
||||
.Render(container =>
|
||||
{
|
||||
container
|
||||
.Padding(20)
|
||||
.Border(2)
|
||||
.ShrinkVertical()
|
||||
.Background(Colors.Grey.Lighten2)
|
||||
.Padding(20)
|
||||
.Text("This is test.")
|
||||
.FontSize(20);
|
||||
});
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void Shrink_Both()
|
||||
{
|
||||
RenderingTest
|
||||
.Create()
|
||||
.PageSize(300, 200)
|
||||
.ProduceImages()
|
||||
.ShowResults()
|
||||
.Render(container =>
|
||||
{
|
||||
container
|
||||
.Padding(20)
|
||||
.Border(2)
|
||||
.Shrink()
|
||||
.Background(Colors.Grey.Lighten2)
|
||||
.Padding(20)
|
||||
.Text("This is test.")
|
||||
.FontSize(20);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -7,18 +7,20 @@ using QuestPDF.UnitTests.TestEngine;
|
||||
namespace QuestPDF.UnitTests
|
||||
{
|
||||
[TestFixture]
|
||||
public class BoxTests
|
||||
public class ShrinkTests
|
||||
{
|
||||
[Test]
|
||||
public void Measure() => SimpleContainerTests.Measure<MinimalBox>();
|
||||
public void Measure() => SimpleContainerTests.Measure<Shrink>();
|
||||
|
||||
[Test]
|
||||
public void Draw_Wrap()
|
||||
{
|
||||
TestPlan
|
||||
.For(x => new MinimalBox
|
||||
.For(x => new Shrink
|
||||
{
|
||||
Child = x.CreateChild()
|
||||
Child = x.CreateChild(),
|
||||
ShrinkVertical = true,
|
||||
ShrinkHorizontal = true
|
||||
})
|
||||
.DrawElement(new Size(400, 300))
|
||||
.ExpectChildMeasure(expectedInput: new Size(400, 300), returns: SpacePlan.Wrap())
|
||||
@@ -29,9 +31,11 @@ namespace QuestPDF.UnitTests
|
||||
public void Measure_PartialRender()
|
||||
{
|
||||
TestPlan
|
||||
.For(x => new MinimalBox
|
||||
.For(x => new Shrink
|
||||
{
|
||||
Child = x.CreateChild()
|
||||
Child = x.CreateChild(),
|
||||
ShrinkVertical = true,
|
||||
ShrinkHorizontal = true
|
||||
})
|
||||
.MeasureElement(new Size(400, 300))
|
||||
.ExpectChildMeasure(expectedInput: new Size(400, 300), returns: SpacePlan.PartialRender(200, 100))
|
||||
@@ -43,9 +47,11 @@ namespace QuestPDF.UnitTests
|
||||
public void Measure_FullRender()
|
||||
{
|
||||
TestPlan
|
||||
.For(x => new MinimalBox
|
||||
.For(x => new Shrink
|
||||
{
|
||||
Child = x.CreateChild()
|
||||
Child = x.CreateChild(),
|
||||
ShrinkVertical = true,
|
||||
ShrinkHorizontal = true
|
||||
})
|
||||
.MeasureElement(new Size(500, 400))
|
||||
.ExpectChildMeasure(expectedInput: new Size(500, 400), returns: SpacePlan.FullRender(300, 200))
|
||||
@@ -1,18 +0,0 @@
|
||||
using QuestPDF.Drawing;
|
||||
using QuestPDF.Infrastructure;
|
||||
|
||||
namespace QuestPDF.Elements
|
||||
{
|
||||
internal class MinimalBox : ContainerElement
|
||||
{
|
||||
internal override void Draw(Size availableSpace)
|
||||
{
|
||||
var targetSize = base.Measure(availableSpace);
|
||||
|
||||
if (targetSize.Type == SpacePlanType.Wrap)
|
||||
return;
|
||||
|
||||
base.Draw(targetSize);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
using System;
|
||||
using QuestPDF.Drawing;
|
||||
using QuestPDF.Infrastructure;
|
||||
|
||||
namespace QuestPDF.Elements
|
||||
{
|
||||
internal class RelativePadding : ContainerElement
|
||||
{
|
||||
public float Top { get; set; }
|
||||
public float Right { get; set; }
|
||||
public float Bottom { get; set; }
|
||||
public float Left { get; set; }
|
||||
|
||||
internal override SpacePlan Measure(Size availableSpace)
|
||||
{
|
||||
if (Child == null)
|
||||
return SpacePlan.FullRender(0, 0);
|
||||
|
||||
var internalSpace = InternalSpace(availableSpace);
|
||||
|
||||
if (internalSpace.Width < 0 || internalSpace.Height < 0)
|
||||
return SpacePlan.Wrap();
|
||||
|
||||
var measure = base.Measure(internalSpace);
|
||||
|
||||
if (measure.Type == SpacePlanType.Wrap)
|
||||
return SpacePlan.Wrap();
|
||||
|
||||
if (measure.Type == SpacePlanType.PartialRender)
|
||||
return SpacePlan.PartialRender(availableSpace);
|
||||
|
||||
if (measure.Type == SpacePlanType.FullRender)
|
||||
return SpacePlan.FullRender(availableSpace);
|
||||
|
||||
throw new NotSupportedException();
|
||||
}
|
||||
|
||||
internal override void Draw(Size availableSpace)
|
||||
{
|
||||
if (Child == null)
|
||||
return;
|
||||
|
||||
var internalOffset = InternalOffset(availableSpace);
|
||||
var internalSpace = InternalSpace(availableSpace);
|
||||
|
||||
Canvas.Translate(internalOffset);
|
||||
base.Draw(internalSpace);
|
||||
Canvas.Translate(internalOffset.Reverse());
|
||||
}
|
||||
|
||||
private Position InternalOffset(Size availableSpace)
|
||||
{
|
||||
return new Position(
|
||||
availableSpace.Width * Left,
|
||||
availableSpace.Height * Top);
|
||||
}
|
||||
|
||||
private Size InternalSpace(Size availableSpace)
|
||||
{
|
||||
return new Size(
|
||||
availableSpace.Width * (1f - Left - Right),
|
||||
availableSpace.Height * (1f - Top - Bottom));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using QuestPDF.Drawing;
|
||||
using QuestPDF.Infrastructure;
|
||||
|
||||
namespace QuestPDF.Elements
|
||||
{
|
||||
internal class RelativePosition : ContainerElement
|
||||
{
|
||||
public float VerticalParent { get; set; }
|
||||
public float VerticalChild { get; set; }
|
||||
|
||||
public float HorizontalParent { get; set; }
|
||||
public float HorizontalChild { get; set; }
|
||||
|
||||
internal override void Draw(Size availableSpace)
|
||||
{
|
||||
if (Child == null)
|
||||
return;
|
||||
|
||||
var childSize = base.Measure(availableSpace);
|
||||
|
||||
if (childSize.Type == SpacePlanType.Wrap)
|
||||
return;
|
||||
|
||||
var left = availableSpace.Width * HorizontalParent + childSize.Width * HorizontalChild;
|
||||
var top = availableSpace.Height * VerticalParent + childSize.Height * VerticalChild;
|
||||
|
||||
Canvas.Translate(new Position(left, top));
|
||||
base.Draw(childSize);
|
||||
Canvas.Translate(new Position(-left, -top));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
using QuestPDF.Drawing;
|
||||
using QuestPDF.Infrastructure;
|
||||
|
||||
namespace QuestPDF.Elements
|
||||
{
|
||||
internal class RelativeSize : ContainerElement
|
||||
{
|
||||
public float? WidthFactor { get; set; } = 1f;
|
||||
public float? HeightFactor { get; set; } = 1f;
|
||||
|
||||
internal override SpacePlan Measure(Size availableSpace)
|
||||
{
|
||||
var internalSpace = new Size(
|
||||
availableSpace.Width * (WidthFactor ?? 1),
|
||||
availableSpace.Height * (HeightFactor ?? 1));
|
||||
|
||||
var childSpace = Child?.Measure(internalSpace) ?? SpacePlan.FullRender(0, 0);
|
||||
|
||||
if (childSpace.Type == SpacePlanType.Wrap)
|
||||
return SpacePlan.Wrap();
|
||||
|
||||
var targetSpace = new Size(
|
||||
WidthFactor.HasValue ? internalSpace.Width : childSpace.Width,
|
||||
HeightFactor.HasValue ? internalSpace.Height : childSpace.Height);
|
||||
|
||||
if (childSpace.Type == SpacePlanType.PartialRender)
|
||||
return SpacePlan.PartialRender(targetSpace);
|
||||
|
||||
if (childSpace.Type == SpacePlanType.FullRender)
|
||||
return SpacePlan.FullRender(targetSpace);
|
||||
|
||||
throw new ArgumentException();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
using QuestPDF.Drawing;
|
||||
using QuestPDF.Infrastructure;
|
||||
|
||||
namespace QuestPDF.Elements
|
||||
{
|
||||
internal class Shrink : ContainerElement
|
||||
{
|
||||
public bool ShrinkVertical { get; set; }
|
||||
public bool ShrinkHorizontal { get; set; }
|
||||
|
||||
internal override void Draw(Size availableSpace)
|
||||
{
|
||||
var childSize = base.Measure(availableSpace);
|
||||
|
||||
if (childSize.Type == SpacePlanType.Wrap)
|
||||
return;
|
||||
|
||||
var targetSize = new Size(
|
||||
ShrinkVertical ? childSize.Width : availableSpace.Width,
|
||||
ShrinkHorizontal ? childSize.Height : availableSpace.Height);
|
||||
|
||||
// TODO: adjust offset for RTL mode
|
||||
|
||||
base.Draw(targetSize);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -154,17 +154,6 @@ namespace QuestPDF.Fluent
|
||||
});
|
||||
}
|
||||
|
||||
[Obsolete("This element has been renamed since version 2022.1. Please use the MinimalBox method.")]
|
||||
public static IContainer Box(this IContainer element)
|
||||
{
|
||||
return element.Element(new MinimalBox());
|
||||
}
|
||||
|
||||
public static IContainer MinimalBox(this IContainer element)
|
||||
{
|
||||
return element.Element(new MinimalBox());
|
||||
}
|
||||
|
||||
public static IContainer Unconstrained(this IContainer element)
|
||||
{
|
||||
return element.Element(new Unconstrained());
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
using System;
|
||||
using QuestPDF.Elements;
|
||||
using QuestPDF.Infrastructure;
|
||||
|
||||
namespace QuestPDF.Fluent
|
||||
{
|
||||
public static class RelativePaddingExtensions
|
||||
{
|
||||
private static IContainer RelativePadding(this IContainer element, Action<RelativePadding> handler)
|
||||
{
|
||||
var relativePadding = element as RelativePadding ?? new RelativePadding();
|
||||
handler(relativePadding);
|
||||
|
||||
return element.Element(relativePadding);
|
||||
}
|
||||
|
||||
public static IContainer RelativePaddingTop(this IContainer element, float value)
|
||||
{
|
||||
return element.RelativePadding(x => x.Top += value);
|
||||
}
|
||||
|
||||
public static IContainer RelativePaddingBottom(this IContainer element, float value)
|
||||
{
|
||||
return element.RelativePadding(x => x.Bottom += value);
|
||||
}
|
||||
|
||||
public static IContainer RelativePaddingLeft(this IContainer element, float value)
|
||||
{
|
||||
return element.RelativePadding(x => x.Left += value);
|
||||
}
|
||||
|
||||
public static IContainer RelativePaddingRight(this IContainer element, float value)
|
||||
{
|
||||
return element.RelativePadding(x => x.Right += value);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using QuestPDF.Elements;
|
||||
using QuestPDF.Infrastructure;
|
||||
|
||||
namespace QuestPDF.Fluent
|
||||
{
|
||||
public static class RelativePositionExtensions
|
||||
{
|
||||
private static IContainer RelativePosition(this IContainer element, Action<RelativePosition> handler)
|
||||
{
|
||||
var relativePosition = element as RelativePosition ?? new RelativePosition();
|
||||
handler(relativePosition);
|
||||
|
||||
return element.Element(relativePosition);
|
||||
}
|
||||
|
||||
public static IContainer RelativePositionVertical(this IContainer element, float parentOffset, float childOffset)
|
||||
{
|
||||
return element.RelativePosition(x =>
|
||||
{
|
||||
x.VerticalParent = parentOffset;
|
||||
x.VerticalChild = childOffset;
|
||||
});
|
||||
}
|
||||
|
||||
public static IContainer RelativePositionHorizontal(this IContainer element, float parentOffset, float childOffset)
|
||||
{
|
||||
return element.RelativePosition(x =>
|
||||
{
|
||||
x.HorizontalParent = parentOffset;
|
||||
x.HorizontalChild = childOffset;
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using QuestPDF.Elements;
|
||||
using QuestPDF.Infrastructure;
|
||||
|
||||
namespace QuestPDF.Fluent
|
||||
{
|
||||
public static class RelativeSizeExtensions
|
||||
{
|
||||
private static IContainer RelativeSize(this IContainer element, Action<RelativeSize> handler)
|
||||
{
|
||||
var relativeSize = element as RelativeSize ?? new RelativeSize();
|
||||
handler(relativeSize);
|
||||
|
||||
return element.Element(relativeSize);
|
||||
}
|
||||
|
||||
public static IContainer RelativeWidth(this IContainer element, float value)
|
||||
{
|
||||
return element.RelativeSize(x => x.WidthFactor = value);
|
||||
}
|
||||
|
||||
public static IContainer RelativeHeight(this IContainer element, float value)
|
||||
{
|
||||
return element.RelativeSize(x => x.HeightFactor = value);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
using QuestPDF.Elements;
|
||||
using QuestPDF.Infrastructure;
|
||||
|
||||
namespace QuestPDF.Fluent
|
||||
{
|
||||
public static class ShrinkExtensions
|
||||
{
|
||||
private static IContainer Shrink(this IContainer element, Action<Shrink> handler)
|
||||
{
|
||||
var shrink = element as Shrink ?? new Shrink();
|
||||
handler(shrink);
|
||||
|
||||
return element.Element(shrink);
|
||||
}
|
||||
|
||||
public static IContainer Shrink(this IContainer element)
|
||||
{
|
||||
return element.ShrinkVertical().ShrinkHorizontal();
|
||||
}
|
||||
|
||||
public static IContainer ShrinkVertical(this IContainer element)
|
||||
{
|
||||
return element.Shrink(x => x.ShrinkVertical = true);
|
||||
}
|
||||
|
||||
public static IContainer ShrinkHorizontal(this IContainer element)
|
||||
{
|
||||
return element.Shrink(x => x.ShrinkHorizontal = true);
|
||||
}
|
||||
|
||||
#region Obsolete
|
||||
|
||||
[Obsolete("This element has been renamed since version 2022.1. Please use the Shrink method.")]
|
||||
public static IContainer Box(this IContainer element)
|
||||
{
|
||||
return element.Element(new Shrink());
|
||||
}
|
||||
|
||||
[Obsolete("This element has been renamed since version 2022.11. Please use the Shrink method.")]
|
||||
public static IContainer MinimalBox(this IContainer element)
|
||||
{
|
||||
return element.Element(new Shrink());
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user