Browse Source

Hotfix + Cleaned up Project Folder

Martin Edlund 5 years ago
parent
commit
46a6fe9e8e

+ 8 - 1
SketchAssistant/SketchAssistantWPF/MVP_Model.cs

@@ -94,6 +94,10 @@ namespace SketchAssistantWPF
         /// Indicates if there is a graphic loaded in the left canvas.
         /// Indicates if there is a graphic loaded in the left canvas.
         /// </summary>
         /// </summary>
         public bool graphicLoaded { get; set; }
         public bool graphicLoaded { get; set; }
+        /// <summary>
+        /// Whether or not the mouse is pressed.
+        /// </summary>
+        private bool mouseDown;
 
 
         Image rightImageWithoutOverlay;
         Image rightImageWithoutOverlay;
 
 
@@ -337,6 +341,7 @@ namespace SketchAssistantWPF
         public void SetCurrentCursorPosition(Point p)
         public void SetCurrentCursorPosition(Point p)
         {
         {
             currentCursorPosition = p;
             currentCursorPosition = p;
+            mouseDown = programPresenter.IsMousePressed();
         }
         }
 
 
         /// <summary>
         /// <summary>
@@ -344,7 +349,8 @@ namespace SketchAssistantWPF
         /// </summary>
         /// </summary>
         public void MouseDown()
         public void MouseDown()
         {
         {
-            if (inDrawingMode)
+            mouseDown = true;
+            if (inDrawingMode && mouseDown)
             {
             {
                 currentLine.Clear();
                 currentLine.Clear();
                 currentLine.Add(currentCursorPosition);
                 currentLine.Add(currentCursorPosition);
@@ -356,6 +362,7 @@ namespace SketchAssistantWPF
         /// </summary>
         /// </summary>
         public void MouseUp()
         public void MouseUp()
         {
         {
+            mouseDown = false;
             if (inDrawingMode && currentLine.Count > 0)
             if (inDrawingMode && currentLine.Count > 0)
             {
             {
                 InternalLine newLine = new InternalLine(currentLine, rightLineList.Count);
                 InternalLine newLine = new InternalLine(currentLine, rightLineList.Count);

+ 12 - 11
SketchAssistant/SketchAssistantWPF/MainWindow.xaml

@@ -10,11 +10,12 @@
         <Grid.ColumnDefinitions>
         <Grid.ColumnDefinitions>
             <ColumnDefinition Width="auto"/>
             <ColumnDefinition Width="auto"/>
             <ColumnDefinition Width="auto"/>
             <ColumnDefinition Width="auto"/>
-            <ColumnDefinition Width="*"/>
-            <ColumnDefinition Width="*"/>
+            <ColumnDefinition Width="170*"/>
+            <ColumnDefinition Width="55*"/>
+            <ColumnDefinition Width="225*"/>
             <ColumnDefinition Width="5"/>
             <ColumnDefinition Width="5"/>
-            <ColumnDefinition Width="*"/>
-            <ColumnDefinition Width="*"/>
+            <ColumnDefinition Width="226*"/>
+            <ColumnDefinition Width="225*"/>
             <ColumnDefinition Width="auto"/>
             <ColumnDefinition Width="auto"/>
             <ColumnDefinition Width="auto"/>
             <ColumnDefinition Width="auto"/>
         </Grid.ColumnDefinitions>
         </Grid.ColumnDefinitions>
@@ -23,7 +24,7 @@
             <RowDefinition Height="*"/>
             <RowDefinition Height="*"/>
             <RowDefinition Height="auto"/>
             <RowDefinition Height="auto"/>
         </Grid.RowDefinitions>
         </Grid.RowDefinitions>
-        <ToolBar x:Name="MenuToolbar" Grid.Column="0" Grid.ColumnSpan="4" Grid.Row="0" Background="LightGray">
+        <ToolBar x:Name="MenuToolbar" Grid.Column="0" Grid.ColumnSpan="5" Grid.Row="0" Background="LightGray">
             <Menu Background="LightGray">
             <Menu Background="LightGray">
                 <MenuItem x:Name="LoadMenuButton" Header="Load">
                 <MenuItem x:Name="LoadMenuButton" Header="Load">
                     <MenuItem x:Name="SVGMenuButton" Header="Load SVG File" Click="MenuItem_Click"/>
                     <MenuItem x:Name="SVGMenuButton" Header="Load SVG File" Click="MenuItem_Click"/>
@@ -41,7 +42,7 @@
             </Menu>
             </Menu>
         </ToolBar>
         </ToolBar>
         <!-- All Icons in the Toolbar taken from openclipart.org -->
         <!-- All Icons in the Toolbar taken from openclipart.org -->
-        <ToolBar x:Name="DrawingToolBar" Grid.Column="5" Grid.Row="0" Grid.ColumnSpan="2" Background="LightGray">
+        <ToolBar x:Name="DrawingToolBar" Grid.Column="6" Grid.Row="0" Grid.ColumnSpan="2" Background="LightGray">
             <Button x:Name="CanvasButton" ToolTip="Create a new Canvas" Click="CanvasButton_Click">
             <Button x:Name="CanvasButton" ToolTip="Create a new Canvas" Click="CanvasButton_Click">
                 <Rectangle Width="30" Height="30">
                 <Rectangle Width="30" Height="30">
                     <Rectangle.Fill>
                     <Rectangle.Fill>
@@ -175,13 +176,13 @@
                 </Rectangle>
                 </Rectangle>
             </Button>
             </Button>
         </ToolBar>
         </ToolBar>
-        <local:CustomCanvas x:Name="LeftCanvas" Background="SlateGray" Grid.Column="2" Grid.Row="1" Height="auto" Grid.ColumnSpan="2"/>
-        <Canvas Name="CanvasSeperator" Grid.Column="4" Grid.Row="1" Background="LightGray"/>
-        <local:CustomCanvas x:Name="RightCanvas" Background="SlateGray" Grid.Column="5" Grid.Row="1" Height="auto"
-            MouseDown="RightCanvas_MouseDown" MouseUp="RightCanvas_MouseUp" MouseMove="RightCanvas_MouseMove" Grid.ColumnSpan="2" MouseLeave="RightCanvas_MouseLeave" TouchLeave="RightCanvas_TouchLeave" />
+        <local:CustomCanvas x:Name="LeftCanvas" Background="SlateGray" Grid.Column="2" Grid.Row="1" Height="auto" Grid.ColumnSpan="3"/>
+        <Canvas Name="CanvasSeperator" Grid.Column="5" Grid.Row="1" Background="LightGray"/>
+        <local:CustomCanvas x:Name="RightCanvas" Background="SlateGray" Grid.Column="6" Grid.Row="1" Height="auto"
+            MouseDown="RightCanvas_MouseDown" MouseUp="RightCanvas_MouseUp" MouseMove="RightCanvas_MouseMove" Grid.ColumnSpan="2" MouseLeave="RightCanvas_MouseLeave" MouseEnter="RightCanvas_MouseEnter" TouchEnter="RightCanvas_TouchEnter" TouchLeave="RightCanvas_TouchLeave"/>
 
 
 
 
-        <DockPanel Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="7">
+        <DockPanel Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="8">
             <StatusBar DockPanel.Dock="Bottom" Name="StatusBar"  Background="LightGray">
             <StatusBar DockPanel.Dock="Bottom" Name="StatusBar"  Background="LightGray">
                 <TextBox Name="LoadStatusBox" Text="nothing loaded" Background="LightGray"/>
                 <TextBox Name="LoadStatusBox" Text="nothing loaded" Background="LightGray"/>
                 <Separator/>
                 <Separator/>

+ 25 - 1
SketchAssistant/SketchAssistantWPF/MainWindow.xaml.cs

@@ -158,7 +158,31 @@ namespace SketchAssistantWPF
         {
         {
             ProgramPresenter.MouseEvent(MVP_Presenter.MouseAction.Up);
             ProgramPresenter.MouseEvent(MVP_Presenter.MouseAction.Up);
         }
         }
-        
+
+        /// <summary>
+        /// If the cursor enters the canvas, it is treated as if the cursor was just pressed if the cursor is pressed.
+        /// </summary>
+        private void RightCanvas_MouseEnter(object sender, MouseEventArgs e)
+        {
+            if (IsMousePressed())
+            {
+                ProgramPresenter.MouseEvent(MVP_Presenter.MouseAction.Move, Mouse.GetPosition(RightCanvas));
+                ProgramPresenter.MouseEvent(MVP_Presenter.MouseAction.Down);
+            }
+        }
+
+        /// <summary>
+        /// If the finger enters the canvas, it is treated as if the finger was just pressed if the finger is pressed.
+        /// </summary>
+        private void RightCanvas_TouchEnter(object sender, TouchEventArgs e)
+        {
+            if (IsMousePressed())
+            {
+                ProgramPresenter.MouseEvent(MVP_Presenter.MouseAction.Move, Mouse.GetPosition(RightCanvas));
+                ProgramPresenter.MouseEvent(MVP_Presenter.MouseAction.Down);
+            }
+        }
+
         /// <summary>
         /// <summary>
         /// If the finger leaves the canvas, it is treated as if the finger was released.
         /// If the finger leaves the canvas, it is treated as if the finger was released.
         /// </summary>
         /// </summary>