Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'UVtools.Core/Operations/OperationChangeResolution.cs')
-rw-r--r--UVtools.Core/Operations/OperationChangeResolution.cs34
1 files changed, 32 insertions, 2 deletions
diff --git a/UVtools.Core/Operations/OperationChangeResolution.cs b/UVtools.Core/Operations/OperationChangeResolution.cs
index 9fa8eb1..da9160c 100644
--- a/UVtools.Core/Operations/OperationChangeResolution.cs
+++ b/UVtools.Core/Operations/OperationChangeResolution.cs
@@ -13,6 +13,7 @@ using UVtools.Core.Objects;
namespace UVtools.Core.Operations
{
+ [Serializable]
public sealed class OperationChangeResolution : Operation
{
private uint _newResolutionX;
@@ -48,8 +49,8 @@ namespace UVtools.Core.Operations
#region Overrides
- public override Enumerations.LayerRangeSelection LayerRangeSelection => Enumerations.LayerRangeSelection.None;
- public override bool CanROI { get; set; } = false;
+ public override Enumerations.LayerRangeSelection StartLayerRangeSelection => Enumerations.LayerRangeSelection.None;
+ public override bool CanROI => false;
public override string Title => "Change print resolution";
public override string Description =>
"Crops or resizes all layer images to fit an alternate print area\n\n" +
@@ -145,6 +146,35 @@ namespace UVtools.Core.Operations
public static Resolution[] Presets => GetResolutions();
+ public override string ToString()
+ {
+ var result = $"{_newResolutionX} x {_newResolutionY}";
+ if (!string.IsNullOrEmpty(ProfileName)) result = $"{ProfileName}: {result}";
+ return result;
+ }
+
+ #endregion
+
+ #region Equality
+
+ private bool Equals(OperationChangeResolution other)
+ {
+ return _newResolutionX == other._newResolutionX && _newResolutionY == other._newResolutionY;
+ }
+
+ public override bool Equals(object obj)
+ {
+ return ReferenceEquals(this, obj) || obj is OperationChangeResolution other && Equals(other);
+ }
+
+ public override int GetHashCode()
+ {
+ unchecked
+ {
+ return ((int) _newResolutionX * 397) ^ (int) _newResolutionY;
+ }
+ }
+
#endregion
}