Files
UVtools/UVtools.Core/Operations/OperationSolidify.cs
T
2020-09-09 17:05:28 +01:00

32 lines
1.1 KiB
C#

/*
* GNU AFFERO GENERAL PUBLIC LICENSE
* Version 3, 19 November 2007
* Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
* Everyone is permitted to copy and distribute verbatim copies
* of this license document, but changing it is not allowed.
*/
namespace UVtools.Core.Operations
{
public sealed class OperationSolidify : Operation
{
#region Overrides
public override string Title => "Solidify";
public override string Description =>
"Solidifies the selected layers, closes all inner holes.\n" +
"NOTE: All open areas of the layer that are completely surrounded by pixels will be filled. Please ensure none of the holes in the layer are required before proceeding.";
public override string ConfirmationText =>
$"solidify layers from {LayerIndexStart} to {LayerIndexEnd}?";
public override string ProgressTitle =>
$"Solidifying layers from {LayerIndexStart} to {LayerIndexEnd}";
public override string ProgressAction => "Solidified layers";
#endregion
}
}