From a5534cac909e9b06abdf9cb887d2d36ac8bc7d58 Mon Sep 17 00:00:00 2001 From: Dobin Park Date: Tue, 5 Oct 2021 11:05:15 +0900 Subject: [PATCH] Update Flow.Launcher/Converters/BorderClipConverter.cs Co-authored-by: Jeremy Wu --- .../Converters/BorderClipConverter.cs | 97 ------------------- 1 file changed, 97 deletions(-) diff --git a/Flow.Launcher/Converters/BorderClipConverter.cs b/Flow.Launcher/Converters/BorderClipConverter.cs index 9fd409ffc..83e83f1de 100644 --- a/Flow.Launcher/Converters/BorderClipConverter.cs +++ b/Flow.Launcher/Converters/BorderClipConverter.cs @@ -54,101 +54,4 @@ namespace Flow.Launcher.Converters } } - public class PartiallyRoundedRectangle : Shape - { - public static readonly DependencyProperty RadiusXProperty; - public static readonly DependencyProperty RadiusYProperty; - - public static readonly DependencyProperty RoundTopLeftProperty; - public static readonly DependencyProperty RoundTopRightProperty; - public static readonly DependencyProperty RoundBottomLeftProperty; - public static readonly DependencyProperty RoundBottomRightProperty; - - public int RadiusX - { - get { return (int)GetValue(RadiusXProperty); } - set { SetValue(RadiusXProperty, value); } - } - - public int RadiusY - { - get { return (int)GetValue(RadiusYProperty); } - set { SetValue(RadiusYProperty, value); } - } - - public bool RoundTopLeft - { - get { return (bool)GetValue(RoundTopLeftProperty); } - set { SetValue(RoundTopLeftProperty, value); } - } - - public bool RoundTopRight - { - get { return (bool)GetValue(RoundTopRightProperty); } - set { SetValue(RoundTopRightProperty, value); } - } - - public bool RoundBottomLeft - { - get { return (bool)GetValue(RoundBottomLeftProperty); } - set { SetValue(RoundBottomLeftProperty, value); } - } - - public bool RoundBottomRight - { - get { return (bool)GetValue(RoundBottomRightProperty); } - set { SetValue(RoundBottomRightProperty, value); } - } - - static PartiallyRoundedRectangle() - { - RadiusXProperty = DependencyProperty.Register - ("RadiusX", typeof(int), typeof(PartiallyRoundedRectangle)); - RadiusYProperty = DependencyProperty.Register - ("RadiusY", typeof(int), typeof(PartiallyRoundedRectangle)); - - RoundTopLeftProperty = DependencyProperty.Register - ("RoundTopLeft", typeof(bool), typeof(PartiallyRoundedRectangle)); - RoundTopRightProperty = DependencyProperty.Register - ("RoundTopRight", typeof(bool), typeof(PartiallyRoundedRectangle)); - RoundBottomLeftProperty = DependencyProperty.Register - ("RoundBottomLeft", typeof(bool), typeof(PartiallyRoundedRectangle)); - RoundBottomRightProperty = DependencyProperty.Register - ("RoundBottomRight", typeof(bool), typeof(PartiallyRoundedRectangle)); - } - - public PartiallyRoundedRectangle() - { - } - - protected override Geometry DefiningGeometry - { - get - { - Geometry result = new RectangleGeometry - (new Rect(0, 0, base.Width, base.Height), RadiusX, RadiusY); - double halfWidth = base.Width / 2; - double halfHeight = base.Height / 2; - - if (!RoundTopLeft) - result = new CombinedGeometry - (GeometryCombineMode.Union, result, new RectangleGeometry - (new Rect(0, 0, halfWidth, halfHeight))); - if (!RoundTopRight) - result = new CombinedGeometry - (GeometryCombineMode.Union, result, new RectangleGeometry - (new Rect(halfWidth, 0, halfWidth, halfHeight))); - if (!RoundBottomLeft) - result = new CombinedGeometry - (GeometryCombineMode.Union, result, new RectangleGeometry - (new Rect(0, halfHeight, halfWidth, halfHeight))); - if (!RoundBottomRight) - result = new CombinedGeometry - (GeometryCombineMode.Union, result, new RectangleGeometry - (new Rect(halfWidth, halfHeight, halfWidth, halfHeight))); - - return result; - } - } - } }