2017-01-09 13:25:52 +03:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Windows;
|
|
|
|
|
|
using System.Windows.Controls;
|
|
|
|
|
|
using System.Windows.Controls.Primitives;
|
|
|
|
|
|
using System.Windows.Documents;
|
|
|
|
|
|
using System.Windows.Media;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Windows.Input;
|
2017-02-18 00:15:59 +03:00
|
|
|
|
using System.ComponentModel;
|
2017-01-09 13:25:52 +03:00
|
|
|
|
|
|
|
|
|
|
namespace Diagrams
|
|
|
|
|
|
{
|
2017-02-18 00:15:59 +03:00
|
|
|
|
[ToolboxItem(false)]
|
2017-01-09 13:25:52 +03:00
|
|
|
|
public class ResizeThumb : Thumb
|
|
|
|
|
|
{
|
|
|
|
|
|
private RotateTransform rotateTransform;
|
|
|
|
|
|
private double angle;
|
|
|
|
|
|
private Adorner adorner;
|
|
|
|
|
|
private Point transformOrigin;
|
|
|
|
|
|
private ContentControl designerItem;
|
|
|
|
|
|
private Canvas canvas;
|
|
|
|
|
|
|
|
|
|
|
|
public ResizeThumb()
|
|
|
|
|
|
{
|
|
|
|
|
|
DragStarted += new DragStartedEventHandler(this.ResizeThumb_DragStarted);
|
|
|
|
|
|
DragDelta += new DragDeltaEventHandler(this.ResizeThumb_DragDelta);
|
|
|
|
|
|
DragCompleted += new DragCompletedEventHandler(this.ResizeThumb_DragCompleted);
|
|
|
|
|
|
MouseRightButtonDown += new MouseButtonEventHandler(this.ResizeThumb_MouseRightButtonDown);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void ResizeThumb_MouseRightButtonDown(object sender, MouseButtonEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.designerItem = this.designerItem ?? this.DataContext as ContentControl;
|
|
|
|
|
|
|
|
|
|
|
|
if (VerticalAlignment == VerticalAlignment.Top || VerticalAlignment == VerticalAlignment.Bottom)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.designerItem.Height = double.NaN;
|
|
|
|
|
|
}
|
|
|
|
|
|
if (HorizontalAlignment == HorizontalAlignment.Left || HorizontalAlignment == HorizontalAlignment.Right)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.designerItem.Width = double.NaN;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void ResizeThumb_DragStarted(object sender, DragStartedEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.designerItem = this.DataContext as ContentControl;
|
|
|
|
|
|
|
|
|
|
|
|
if (this.designerItem != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.canvas = VisualTreeHelper.GetParent(this.designerItem) as Canvas;
|
|
|
|
|
|
|
|
|
|
|
|
if (this.canvas != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.transformOrigin = this.designerItem.RenderTransformOrigin;
|
|
|
|
|
|
|
|
|
|
|
|
this.rotateTransform = this.designerItem.RenderTransform as RotateTransform;
|
|
|
|
|
|
if (this.rotateTransform != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.angle = this.rotateTransform.Angle * Math.PI / 180.0;
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
this.angle = 0.0d;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
AdornerLayer adornerLayer = AdornerLayer.GetAdornerLayer(this.canvas);
|
|
|
|
|
|
if (adornerLayer != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.adorner = new SizeAdorner(this.designerItem);
|
|
|
|
|
|
adornerLayer.Add(this.adorner);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void ResizeThumb_DragDelta(object sender, DragDeltaEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (this.designerItem != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
double deltaVertical, deltaHorizontal;
|
|
|
|
|
|
if (double.IsNaN(Canvas.GetTop(this.designerItem))) Canvas.SetTop(this.designerItem, 0);
|
|
|
|
|
|
if (double.IsNaN(Canvas.GetLeft(this.designerItem))) Canvas.SetLeft(this.designerItem, 0);
|
|
|
|
|
|
if ((VerticalAlignment == VerticalAlignment.Top || VerticalAlignment == VerticalAlignment.Bottom) && double.IsNaN(this.designerItem.Height)) this.designerItem.Height = this.designerItem.ActualHeight;
|
|
|
|
|
|
if ((HorizontalAlignment == HorizontalAlignment.Left || HorizontalAlignment == HorizontalAlignment.Right) && double.IsNaN(this.designerItem.Width)) this.designerItem.Width = this.designerItem.ActualWidth;
|
|
|
|
|
|
|
|
|
|
|
|
switch (VerticalAlignment)
|
|
|
|
|
|
{
|
|
|
|
|
|
case System.Windows.VerticalAlignment.Bottom:
|
|
|
|
|
|
deltaVertical = Math.Min(-e.VerticalChange, this.designerItem.ActualHeight - this.designerItem.MinHeight);
|
2017-02-18 00:15:59 +03:00
|
|
|
|
deltaVertical = Math.Max(deltaVertical, this.designerItem.ActualHeight - this.designerItem.MaxHeight);
|
2017-01-09 13:25:52 +03:00
|
|
|
|
Canvas.SetTop(this.designerItem, Canvas.GetTop(this.designerItem) + (this.transformOrigin.Y * deltaVertical * (1 - Math.Cos(-this.angle))));
|
|
|
|
|
|
Canvas.SetLeft(this.designerItem, Canvas.GetLeft(this.designerItem) - deltaVertical * this.transformOrigin.Y * Math.Sin(-this.angle));
|
|
|
|
|
|
this.designerItem.Height -= deltaVertical;
|
|
|
|
|
|
break;
|
|
|
|
|
|
case System.Windows.VerticalAlignment.Top:
|
|
|
|
|
|
deltaVertical = Math.Min(e.VerticalChange, this.designerItem.ActualHeight - this.designerItem.MinHeight);
|
2017-02-18 00:15:59 +03:00
|
|
|
|
deltaVertical = Math.Max(deltaVertical, this.designerItem.ActualHeight - this.designerItem.MaxHeight);
|
2017-01-09 13:25:52 +03:00
|
|
|
|
Canvas.SetTop(this.designerItem, Canvas.GetTop(this.designerItem) + deltaVertical * Math.Cos(-this.angle) + (this.transformOrigin.Y * deltaVertical * (1 - Math.Cos(-this.angle))));
|
|
|
|
|
|
Canvas.SetLeft(this.designerItem, Canvas.GetLeft(this.designerItem) + deltaVertical * Math.Sin(-this.angle) - (this.transformOrigin.Y * deltaVertical * Math.Sin(-this.angle)));
|
|
|
|
|
|
this.designerItem.Height -= deltaVertical;
|
|
|
|
|
|
break;
|
|
|
|
|
|
default:
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
switch (HorizontalAlignment)
|
|
|
|
|
|
{
|
|
|
|
|
|
case System.Windows.HorizontalAlignment.Left:
|
|
|
|
|
|
deltaHorizontal = Math.Min(e.HorizontalChange, this.designerItem.ActualWidth - this.designerItem.MinWidth);
|
2017-02-18 00:15:59 +03:00
|
|
|
|
deltaHorizontal = Math.Max(deltaHorizontal, this.designerItem.ActualWidth - this.designerItem.MaxWidth);
|
2017-01-09 13:25:52 +03:00
|
|
|
|
Canvas.SetTop(this.designerItem, Canvas.GetTop(this.designerItem) + deltaHorizontal * Math.Sin(this.angle) - this.transformOrigin.X * deltaHorizontal * Math.Sin(this.angle));
|
|
|
|
|
|
Canvas.SetLeft(this.designerItem, Canvas.GetLeft(this.designerItem) + deltaHorizontal * Math.Cos(this.angle) + (this.transformOrigin.X * deltaHorizontal * (1 - Math.Cos(this.angle))));
|
|
|
|
|
|
this.designerItem.Width -= deltaHorizontal;
|
|
|
|
|
|
break;
|
|
|
|
|
|
case System.Windows.HorizontalAlignment.Right:
|
|
|
|
|
|
deltaHorizontal = Math.Min(-e.HorizontalChange, this.designerItem.ActualWidth - this.designerItem.MinWidth);
|
2017-02-18 00:15:59 +03:00
|
|
|
|
deltaHorizontal = Math.Max(deltaHorizontal, this.designerItem.ActualWidth - this.designerItem.MaxWidth);
|
2017-01-09 13:25:52 +03:00
|
|
|
|
Canvas.SetTop(this.designerItem, Canvas.GetTop(this.designerItem) - this.transformOrigin.X * deltaHorizontal * Math.Sin(this.angle));
|
|
|
|
|
|
Canvas.SetLeft(this.designerItem, Canvas.GetLeft(this.designerItem) + (deltaHorizontal * this.transformOrigin.X * (1 - Math.Cos(this.angle))));
|
|
|
|
|
|
this.designerItem.Width -= deltaHorizontal;
|
|
|
|
|
|
break;
|
|
|
|
|
|
default:
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
e.Handled = true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private void ResizeThumb_DragCompleted(object sender, DragCompletedEventArgs e)
|
|
|
|
|
|
{
|
|
|
|
|
|
if (this.adorner != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
AdornerLayer adornerLayer = AdornerLayer.GetAdornerLayer(this.canvas);
|
|
|
|
|
|
if (adornerLayer != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
adornerLayer.Remove(this.adorner);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
this.adorner = null;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|