--- /dev/null
+<?xml version="1.0"?>
+<Border BorderWidth="1" Foreground="White" CornerRadius="{./CornerRadius}"
+ Background="{./Background}"
+ MouseEnter="./onBorderMouseEnter"
+ MouseLeave="./onBorderMouseLeave">
+ <VerticalStack Spacing="0">
+<!-- <Border Name="TitleBar" BorderWidth="1" Foreground="White" Width="{./WidthPolicy}" Height="Fit"
+ Background="vgradient|0:0.4,0.6,0.0,0.5|1:0.0,0.8,0.8,0.9">-->
+ <HorizontalStack Background="vgradient|0:0.5,0.6,0.5,0.5|1:0.2,0.3,0.3,0.7"
+ Name="hs" Margin="2" Spacing="0" Height="Fit">
+ <GraphicObject Width="5"/>
+ <Image Margin="1" Width="12" Height="12" Path="{./Icon}"/>
+ <Label Width="Stretched" Foreground="White" Margin="1" TextAlignment="Center" Text="{./Caption}" />
+ <Border CornerRadius="6" BorderWidth="1" Foreground="Transparent" Height="12" Width="12"
+ MouseEnter="{Foreground=White}" MouseLeave="{Foreground=Transparent}">
+ <Image Focusable="true" Name="Image" Margin="0" Width="Stretched" Height="Stretched" Path="#Crow.Images.Icons.exit2.svg"
+ MouseClick="./butQuitPress"/>
+ </Border>
+ <GraphicObject Width="5"/>
+ </HorizontalStack>
+<!-- </Border>-->
+ <Container Name="Content" MinimumSize="50,50" Background="0.5,0.5,0.5,0.5"/>
+ </VerticalStack>
+</Border>
--- /dev/null
+//
+// DockingView.cs
+//
+// Author:
+// Jean-Philippe Bruyère <jp.bruyere@hotmail.com>
+//
+// Copyright (c) 2013-2017 Jean-Philippe Bruyère
+//
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to deal
+// in the Software without restriction, including without limitation the rights
+// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+// copies of the Software, and to permit persons to whom the Software is
+// furnished to do so, subject to the following conditions:
+//
+// The above copyright notice and this permission notice shall be included in
+// all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+// THE SOFTWARE.
+using System;
+
+namespace Crow
+{
+ public class DockingView : Window
+ {
+ #region CTOR
+ public DockingView () : base ()
+ {
+ }
+ #endregion
+
+ bool isDocked = false;
+ Alignment docking = Alignment.Center;
+
+ Point lastMousePos; //last known mouse pos in this control
+ Point undockingMousePosOrig; //mouse pos when docking was donne, use for undocking on mouse move
+ Rectangle savedSlot; //last undocked slot recalled when view is undocked
+ bool wasResizable;
+
+
+ public override void OnLayoutChanges (LayoutingType layoutType)
+ {
+ base.OnLayoutChanges (layoutType);
+
+ if (isDocked)
+ return;
+
+ DocksView dv = Parent as DocksView;
+ if (dv == null)
+ return;
+
+ Rectangle dvCliRect = dv.ClientRectangle;
+
+ if (layoutType == LayoutingType.X) {
+ if (Slot.X < dv.DockingThreshold)
+ dock (Alignment.Left);
+ else if (Slot.Right > dvCliRect.Width - dv.DockingThreshold)
+ dock (Alignment.Right);
+ }else if (layoutType == LayoutingType.Y) {
+ if (Slot.Y < dv.DockingThreshold)
+ dock (Alignment.Top);
+ else if (Slot.Bottom > dvCliRect.Height - dv.DockingThreshold)
+ dock (Alignment.Bottom);
+ }
+ }
+
+ public override void onMouseMove (object sender, MouseMoveEventArgs e)
+ {
+ lastMousePos = e.Position;
+
+ if (this.HasFocus && e.Mouse.IsButtonDown (MouseButton.Left) && isDocked) {
+ DocksView dv = Parent as DocksView;
+ if (docking == Alignment.Left) {
+ if (lastMousePos.X - undockingMousePosOrig.X > dv.DockingThreshold)
+ undock ();
+ } else if (docking == Alignment.Right) {
+ if (undockingMousePosOrig.X - lastMousePos.X > dv.DockingThreshold)
+ undock ();
+ } else if (docking == Alignment.Top) {
+ if (lastMousePos.Y - undockingMousePosOrig.Y > dv.DockingThreshold)
+ undock ();
+ } else if (docking == Alignment.Bottom) {
+ if (undockingMousePosOrig.Y - lastMousePos.Y > dv.DockingThreshold)
+ undock ();
+ }
+ return;
+ }
+
+ base.onMouseMove (sender, e);
+ }
+ public override void onMouseDown (object sender, MouseButtonEventArgs e)
+ {
+ base.onMouseDown (sender, e);
+
+ if (this.HasFocus && isDocked && e.Button == MouseButton.Left)
+ undockingMousePosOrig = lastMousePos;
+ }
+
+// protected override void onBorderMouseEnter (object sender, MouseMoveEventArgs e)
+// {
+// base.onBorderMouseEnter (sender, e);
+//
+// if (isDocked) {
+// switch (docking) {
+// case Alignment.Top:
+// if (this.currentDirection != Window.Direction.S)
+// onBorderMouseLeave (this, null);
+// break;
+// case Alignment.Left:
+// if (this.currentDirection != Window.Direction.E)
+// onBorderMouseLeave (this, null);
+// break;
+// case Alignment.TopLeft:
+// break;
+// case Alignment.Right:
+// if (this.currentDirection != Window.Direction.W)
+// onBorderMouseLeave (this, null);
+// break;
+// case Alignment.TopRight:
+// break;
+// case Alignment.Bottom:
+// if (this.currentDirection != Window.Direction.N)
+// onBorderMouseLeave (this, null);
+// break;
+// case Alignment.BottomLeft:
+// break;
+// case Alignment.BottomRight:
+// break;
+// case Alignment.Center:
+// break;
+// default:
+// break;
+// }
+// }
+// }
+
+ void undock () {
+ this.Left = savedSlot.Left;
+ this.Top = savedSlot.Top;
+ this.Width = savedSlot.Width;
+ this.Height = savedSlot.Height;
+
+ isDocked = false;
+ Resizable = wasResizable;
+ }
+ void dock (Alignment align){
+ isDocked = true;
+ docking = align;
+ undockingMousePosOrig = lastMousePos;
+ savedSlot = this.LastPaintedSlot;
+ wasResizable = Resizable;
+ Resizable = false;
+
+ this.Left = this.Top = 0;
+
+ switch (align) {
+ case Alignment.Top:
+ this.HorizontalAlignment = HorizontalAlignment.Left;
+ this.VerticalAlignment = VerticalAlignment.Top;
+ this.Width = Measure.Stretched;
+ break;
+ case Alignment.Left:
+ this.HorizontalAlignment = HorizontalAlignment.Left;
+ this.VerticalAlignment = VerticalAlignment.Top;
+ this.Height = Measure.Stretched;
+ break;
+ case Alignment.TopLeft:
+ break;
+ case Alignment.Right:
+ this.HorizontalAlignment = HorizontalAlignment.Right;
+ this.VerticalAlignment = VerticalAlignment.Top;
+ this.Height = Measure.Stretched;
+ break;
+ case Alignment.TopRight:
+ break;
+ case Alignment.Bottom:
+ this.HorizontalAlignment = HorizontalAlignment.Left;
+ this.VerticalAlignment = VerticalAlignment.Bottom;
+ this.Width = Measure.Stretched;
+ break;
+ case Alignment.BottomLeft:
+ break;
+ case Alignment.BottomRight:
+ break;
+ case Alignment.Center:
+ break;
+ default:
+ break;
+ }
+
+ }
+ }
+}
+
--- /dev/null
+//
+// DocksView.cs
+//
+// Author:
+// Jean-Philippe Bruyère <jp.bruyere@hotmail.com>
+//
+// Copyright (c) 2013-2017 Jean-Philippe Bruyère
+//
+// Permission is hereby granted, free of charge, to any person obtaining a copy
+// of this software and associated documentation files (the "Software"), to deal
+// in the Software without restriction, including without limitation the rights
+// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+// copies of the Software, and to permit persons to whom the Software is
+// furnished to do so, subject to the following conditions:
+//
+// The above copyright notice and this permission notice shall be included in
+// all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+// THE SOFTWARE.
+using System;
+using System.Xml.Serialization;
+using System.ComponentModel;
+
+namespace Crow
+{
+ public class DocksView : Group
+ {
+ #region CTOR
+ public DocksView () : base ()
+ {
+ }
+ #endregion
+
+ int dockingThreshold;
+
+ [XmlAttributeAttribute][DefaultValue(10)]
+ public virtual int DockingThreshold {
+ get { return dockingThreshold; }
+ set {
+ if (dockingThreshold == value)
+ return;
+ dockingThreshold = value;
+ NotifyValueChanged ("DockingThreshold", dockingThreshold);
+
+ }
+ }
+ }
+}
+