/Tools/IronStudio/IronStudioCore/IronStudioCore/Repl/ResizingAdorner.cs

http://github.com/IronLanguages/main · C# · 95 lines · 67 code · 12 blank · 16 comment · 8 complexity · 67a2434a853431c3da40e95915582643 MD5 · raw file

  1. /* ****************************************************************************
  2. *
  3. * Copyright (c) Microsoft Corporation.
  4. *
  5. * This source code is subject to terms and conditions of the Apache License, Version 2.0. A
  6. * copy of the license can be found in the License.html file at the root of this distribution. If
  7. * you cannot locate the Apache License, Version 2.0, please send an email to
  8. * ironpy@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
  9. * by the terms of the Apache License, Version 2.0.
  10. *
  11. * You must not remove this notice, or any other, from this software.
  12. *
  13. * ***************************************************************************/
  14. using System;
  15. using System.Windows;
  16. using System.Windows.Controls.Primitives;
  17. using System.Windows.Documents;
  18. using System.Windows.Input;
  19. using System.Windows.Media;
  20. namespace Microsoft.IronStudio.Core.Repl {
  21. internal class ResizingAdorner : Adorner {
  22. private readonly VisualCollection _visualChildren;
  23. private readonly Thumb _bottomRight;
  24. public ResizingAdorner(UIElement adornedElement)
  25. : base(adornedElement) {
  26. _visualChildren = new VisualCollection(this);
  27. _bottomRight = BuildAdornerCorner(Cursors.SizeNWSE, HandleBottomRight);
  28. }
  29. private Thumb BuildAdornerCorner(Cursor cursor, DragDeltaEventHandler dragHandler) {
  30. var thumb = new Thumb();
  31. // TODO: this thumb should be styled to look like a dotted triangle,
  32. // similar to the one you can see on the bottom right corner of
  33. // Internet Explorer window
  34. thumb.Cursor = cursor;
  35. thumb.Height = thumb.Width = 10;
  36. thumb.Opacity = 0.40;
  37. thumb.Background = new SolidColorBrush(Colors.MediumBlue);
  38. thumb.DragDelta += dragHandler;
  39. thumb.DragStarted += (s, e) => {
  40. var handler = ResizeStarted;
  41. if (handler != null) {
  42. handler(this, e);
  43. }
  44. };
  45. thumb.DragCompleted += (s, e) => {
  46. var handler = ResizeCompleted;
  47. if (handler != null) {
  48. handler(this, e);
  49. }
  50. };
  51. _visualChildren.Add(thumb);
  52. return thumb;
  53. }
  54. private void HandleBottomRight(object sender, DragDeltaEventArgs eventArgs) {
  55. var thumb = sender as Thumb;
  56. var element = AdornedElement as FrameworkElement;
  57. if (element == null || thumb == null) {
  58. return;
  59. }
  60. element.MaxWidth = Math.Max(element.MaxWidth + eventArgs.HorizontalChange, thumb.DesiredSize.Width);
  61. element.MaxHeight = Math.Max(element.MaxHeight + eventArgs.VerticalChange, thumb.DesiredSize.Height);
  62. var size = new Size(element.MaxWidth, element.MaxHeight);
  63. AdornedElement.Measure(size);
  64. }
  65. protected override Size ArrangeOverride(Size finalSize) {
  66. var desiredWidth = AdornedElement.DesiredSize.Width;
  67. var desiredHeight = AdornedElement.DesiredSize.Height;
  68. var adornerWidth = DesiredSize.Width;
  69. var adornerHeight = DesiredSize.Height;
  70. _bottomRight.Arrange(new Rect((desiredWidth - adornerWidth) / 2,
  71. (desiredHeight - adornerHeight) / 2, adornerWidth, adornerHeight));
  72. return finalSize;
  73. }
  74. protected override int VisualChildrenCount {
  75. get { return _visualChildren.Count; }
  76. }
  77. protected override Visual GetVisualChild(int index) {
  78. return _visualChildren[index];
  79. }
  80. public event RoutedEventHandler ResizeStarted;
  81. public event RoutedEventHandler ResizeCompleted;
  82. }
  83. }