mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
204 lines
11 KiB
XML
204 lines
11 KiB
XML
<UserControl x:Class="Artemis.UI.Screens.Module.ProfileEditor.Visualization.Tools.EditToolView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:Artemis.UI.Screens.Module.ProfileEditor.Visualization.Tools"
|
|
xmlns:s="https://github.com/canton7/Stylet"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800"
|
|
d:DataContext="{d:DesignInstance {x:Type local:EditToolViewModel}}">
|
|
<Canvas UseLayoutRounding="False">
|
|
<!-- The part of the layer's shape that is inside the layer -->
|
|
<Path Data="{Binding ShapeGeometry, Mode=OneWay}"
|
|
Fill="Transparent"
|
|
Stroke="{DynamicResource PrimaryHueMidBrush}"
|
|
StrokeThickness="1"
|
|
StrokeDashArray="2 2"
|
|
Cursor="Hand"
|
|
MouseDown="{s:Action ShapeEditMouseDown}"
|
|
MouseUp="{s:Action ShapeEditMouseUp}"
|
|
MouseMove="{s:Action Move}" />
|
|
|
|
<!-- Mutation points -->
|
|
<Rectangle Width="4" Height="4" Canvas.Left="{Binding TopLeft.X}" Canvas.Top="{Binding TopLeft.Y}" Fill="{DynamicResource SecondaryAccentBrush}" Margin="-2,-2,0,0" />
|
|
<Rectangle Width="4" Height="4" Canvas.Left="{Binding TopRight.X}" Canvas.Top="{Binding TopRight.Y}" Fill="{DynamicResource SecondaryAccentBrush}" Margin="-2,-2,0,0" />
|
|
<Rectangle Width="4" Height="4" Canvas.Left="{Binding BottomRight.X}" Canvas.Top="{Binding BottomRight.Y}" Fill="{DynamicResource SecondaryAccentBrush}" Margin="-2,-2,0,0" />
|
|
<Rectangle Width="4" Height="4" Canvas.Left="{Binding BottomLeft.X}" Canvas.Top="{Binding BottomLeft.Y}" Fill="{DynamicResource SecondaryAccentBrush}" Margin="-2,-2,0,0" />
|
|
<Rectangle Width="4" Height="4" Canvas.Left="{Binding TopCenter.X}" Canvas.Top="{Binding TopCenter.Y}" Fill="{DynamicResource SecondaryAccentBrush}" Margin="-2,-2,0,0" />
|
|
<Rectangle Width="4" Height="4" Canvas.Left="{Binding RightCenter.X}" Canvas.Top="{Binding RightCenter.Y}" Fill="{DynamicResource SecondaryAccentBrush}" Margin="-2,-2,0,0" />
|
|
<Rectangle Width="4" Height="4" Canvas.Left="{Binding BottomCenter.X}" Canvas.Top="{Binding BottomCenter.Y}" Fill="{DynamicResource SecondaryAccentBrush}" Margin="-2,-2,0,0" />
|
|
<Rectangle Width="4" Height="4" Canvas.Left="{Binding LeftCenter.X}" Canvas.Top="{Binding LeftCenter.Y}" Fill="{DynamicResource SecondaryAccentBrush}" Margin="-2,-2,0,0" />
|
|
|
|
<Canvas>
|
|
<Canvas.RenderTransform>
|
|
<TransformGroup Children="{Binding ShapeTransformCollection}" />
|
|
</Canvas.RenderTransform>
|
|
<!-- Top left rotate handle -->
|
|
<Rectangle MouseDown="{s:Action ShapeEditMouseDown}"
|
|
MouseUp="{s:Action ShapeEditMouseUp}"
|
|
MouseMove="{s:Action TopLeftRotate}"
|
|
Width="15" Height="15"
|
|
Canvas.Left="{Binding ShapeRectangle.Left}"
|
|
Canvas.Top="{Binding ShapeRectangle.Top}"
|
|
Fill="Transparent"
|
|
Margin="-12,-12,0,0"
|
|
Cursor="/Resources/aero_rotate_tl.cur" />
|
|
<!-- Top left resize handle -->
|
|
<Rectangle MouseDown="{s:Action ShapeEditMouseDown}"
|
|
MouseUp="{s:Action ShapeEditMouseUp}"
|
|
MouseMove="{s:Action TopLeftResize}"
|
|
Width="6"
|
|
Height="6"
|
|
Canvas.Left="{Binding ShapeRectangle.Left}"
|
|
Canvas.Top="{Binding ShapeRectangle.Top}"
|
|
Fill="Transparent"
|
|
Margin="-3,-3,0,0"
|
|
Cursor="SizeNWSE" />
|
|
|
|
<!-- Top center resize handle -->
|
|
<Rectangle MouseDown="{s:Action ShapeEditMouseDown}"
|
|
MouseUp="{s:Action ShapeEditMouseUp}"
|
|
MouseMove="{s:Action TopCenterResize}"
|
|
Width="10"
|
|
Height="10"
|
|
Canvas.Left="{Binding ShapeRectangle.MidX}"
|
|
Canvas.Top="{Binding ShapeRectangle.Top}"
|
|
Fill="Transparent"
|
|
Margin="-5,-5,0,0"
|
|
Cursor="SizeNS" />
|
|
|
|
<!-- Top right rotate handle -->
|
|
<Rectangle MouseDown="{s:Action ShapeEditMouseDown}"
|
|
MouseUp="{s:Action ShapeEditMouseUp}"
|
|
MouseMove="{s:Action TopRightRotate}"
|
|
Width="15"
|
|
Height="15"
|
|
Canvas.Left="{Binding ShapeRectangle.Right}"
|
|
Canvas.Top="{Binding ShapeRectangle.Top}"
|
|
Fill="Transparent"
|
|
Margin="-3,-12,0,0"
|
|
Cursor="/Resources/aero_rotate_tr.cur" />
|
|
<!-- Top right resize handle -->
|
|
<Rectangle MouseDown="{s:Action ShapeEditMouseDown}"
|
|
MouseUp="{s:Action ShapeEditMouseUp}"
|
|
MouseMove="{s:Action TopRightResize}"
|
|
Width="6"
|
|
Height="6"
|
|
Canvas.Left="{Binding ShapeRectangle.Right}"
|
|
Canvas.Top="{Binding ShapeRectangle.Top}"
|
|
Fill="Transparent"
|
|
Margin="-3,-3,0,0"
|
|
Cursor="SizeNESW" />
|
|
|
|
<!-- Center right resize handle -->
|
|
<Rectangle MouseDown="{s:Action ShapeEditMouseDown}"
|
|
MouseUp="{s:Action ShapeEditMouseUp}"
|
|
MouseMove="{s:Action CenterRightResize}"
|
|
Width="10"
|
|
Height="10"
|
|
Canvas.Left="{Binding ShapeRectangle.Right}"
|
|
Canvas.Top="{Binding ShapeRectangle.MidY}"
|
|
Fill="Transparent"
|
|
Margin="-5,-5,0,0"
|
|
Cursor="SizeWE" />
|
|
|
|
|
|
<!-- Bottom right rotate handle -->
|
|
<Rectangle MouseDown="{s:Action ShapeEditMouseDown}"
|
|
MouseUp="{s:Action ShapeEditMouseUp}"
|
|
MouseMove="{s:Action BottomRightRotate}"
|
|
Width="15"
|
|
Height="15"
|
|
Canvas.Left="{Binding ShapeRectangle.Right}"
|
|
Canvas.Top="{Binding ShapeRectangle.Bottom}"
|
|
Fill="Transparent"
|
|
Margin="-3,-3,0,0"
|
|
Cursor="/Resources/aero_rotate_br.cur" />
|
|
<!-- Bottom right resize handle -->
|
|
<Rectangle MouseDown="{s:Action ShapeEditMouseDown}"
|
|
MouseUp="{s:Action ShapeEditMouseUp}"
|
|
MouseMove="{s:Action BottomRightResize}"
|
|
Width="6"
|
|
Height="6"
|
|
Canvas.Left="{Binding ShapeRectangle.Right}"
|
|
Canvas.Top="{Binding ShapeRectangle.Bottom}"
|
|
Fill="Transparent"
|
|
Margin="-3,-3,0,0"
|
|
Cursor="SizeNWSE" />
|
|
|
|
|
|
<!-- Bottom center resize handle -->
|
|
<Rectangle MouseDown="{s:Action ShapeEditMouseDown}"
|
|
MouseUp="{s:Action ShapeEditMouseUp}"
|
|
MouseMove="{s:Action BottomCenterResize}"
|
|
Width="10"
|
|
Height="10"
|
|
Canvas.Left="{Binding ShapeRectangle.MidX}"
|
|
Canvas.Top="{Binding ShapeRectangle.Bottom}"
|
|
Fill="Transparent"
|
|
Margin="-5,-5,0,0"
|
|
Cursor="SizeNS" />
|
|
|
|
|
|
<!-- Bottom left rotate handle -->
|
|
<Rectangle MouseDown="{s:Action ShapeEditMouseDown}"
|
|
MouseUp="{s:Action ShapeEditMouseUp}"
|
|
MouseMove="{s:Action BottomLeftRotate}"
|
|
Width="15"
|
|
Height="15"
|
|
Canvas.Left="{Binding ShapeRectangle.Left}"
|
|
Canvas.Top="{Binding ShapeRectangle.Bottom}"
|
|
Fill="Transparent"
|
|
Margin="-12,-3,0,0"
|
|
Cursor="/Resources/aero_rotate_bl.cur" />
|
|
<!-- Bottom left resize handle -->
|
|
<Rectangle MouseDown="{s:Action ShapeEditMouseDown}"
|
|
MouseUp="{s:Action ShapeEditMouseUp}"
|
|
MouseMove="{s:Action BottomLeftResize}"
|
|
Width="6"
|
|
Height="6"
|
|
Canvas.Left="{Binding ShapeRectangle.Left}"
|
|
Canvas.Top="{Binding ShapeRectangle.Bottom}"
|
|
Fill="Transparent"
|
|
Margin="-3, -3, 0,0"
|
|
Cursor="SizeNESW" />
|
|
|
|
|
|
<!-- Center left resize handle -->
|
|
<Rectangle MouseDown="{s:Action ShapeEditMouseDown}"
|
|
MouseUp="{s:Action ShapeEditMouseUp}"
|
|
MouseMove="{s:Action CenterLeftResize}"
|
|
Width="10"
|
|
Height="10"
|
|
Canvas.Left="{Binding ShapeRectangle.Left}"
|
|
Canvas.Top="{Binding ShapeRectangle.MidY}"
|
|
Fill="Transparent"
|
|
Margin="-5,-5,0,0"
|
|
Cursor="SizeWE" />
|
|
</Canvas>
|
|
|
|
<!-- Anchor point -->
|
|
<materialDesign:PackIcon Kind="Crosshairs"
|
|
Width="8"
|
|
Height="8"
|
|
Foreground="{DynamicResource SecondaryAccentBrush}"
|
|
Canvas.Left="{Binding ShapeAnchor.X}"
|
|
Canvas.Top="{Binding ShapeAnchor.Y}"
|
|
Margin="-4,-4,0,0" />
|
|
<Ellipse MouseDown="{s:Action AnchorEditMouseDown}"
|
|
MouseUp="{s:Action ShapeEditMouseUp}"
|
|
MouseMove="{s:Action AnchorMove}"
|
|
Width="8"
|
|
Height="8"
|
|
Fill="Transparent"
|
|
Canvas.Left="{Binding ShapeAnchor.X}"
|
|
Canvas.Top="{Binding ShapeAnchor.Y}"
|
|
Margin="-4,-4,0,0"
|
|
Cursor="SizeAll">
|
|
</Ellipse>
|
|
</Canvas>
|
|
|
|
</UserControl> |