Skip to content

Commit 0e87b91

Browse files
author
LoneWandererProductions
committed
sync back stuff
1 parent a7f7174 commit 0e87b91

26 files changed

Lines changed: 182 additions & 106 deletions

CommonControls.Images/ColorPicker.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public sealed partial class ColorPicker : INotifyPropertyChanged
4848
public event PropertyChangedEventHandler? PropertyChanged;
4949

5050
/// <summary>
51-
///
51+
///
5252
/// </summary>
5353
/// <param name="colorHsv">The color HSV.</param>
5454
public delegate void DelegateColor(ColorHsv colorHsv);

CommonControls.Images/CommonControls.Images.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313

1414
<ItemGroup>
15-
<ProjectReference Include="..\ExtendedSystemObjects\ExtendedSystemObjects.csproj" />
1615
<ProjectReference Include="..\Imaging\Imaging.csproj" />
1716
</ItemGroup>
1817

CommonControls.Images/ImageZoom.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
66
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
77
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
8-
xmlns:imag="clr-namespace:Imaging;assembly=Imaging"
8+
xmlns:imag="clr-namespace:Imaging.Gifs;assembly=Imaging"
99
mc:Ignorable="d"
1010
Name="ImgZoom"
1111
d:DesignHeight="450" d:DesignWidth="800">

CommonControls.Images/ImageZoom.xaml.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,15 @@ public sealed partial class ImageZoom : IDisposable
116116
/// <param name="point">The point.</param>
117117
public delegate void DelegatePoint(Point point);
118118

119+
/// <summary>
120+
/// Delegate for the Selection Frames.
121+
/// </summary>
122+
/// <param name="frames">The frames.</param>
119123
public delegate void DelegateMultiFrame(List<SelectionFrame> frames);
120124

125+
/// <summary>
126+
/// Occurs when [selected multi frames].
127+
/// </summary>
121128
public event DelegateMultiFrame SelectedMultiFrames;
122129

123130
/// <summary>
@@ -146,7 +153,7 @@ public sealed partial class ImageZoom : IDisposable
146153
new PropertyMetadata(OnSelectionToolChanged));
147154

148155
/// <summary>
149-
/// The autoplay gif Property
156+
/// The auto play gif Property
150157
/// </summary>
151158
public static readonly DependencyProperty AutoplayGif = DependencyProperty.Register(nameof(AutoplayGifImage),
152159
typeof(bool),

CommonControls.Images/Thumbnails.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -990,4 +990,4 @@ private void Dispose(bool disposing)
990990
Dispose(false);
991991
}
992992
}
993-
}
993+
}

ImageCompare/AnalysisProcessing.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
using System.Threading.Tasks;
1616
using ExtendedSystemObjects;
1717
using Imaging;
18+
using Imaging.Cifs;
1819
using Imaging.Enums;
1920
using Imaging.Interfaces;
2021

Imaging/Cif.cs renamed to Imaging/Cifs/Cif.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* COPYRIGHT: See COPYING in the top level directory
3-
* PROJECT: Imaging
3+
* PROJECT: Imaging.Cifs
44
* FILE: Cif.cs
55
* PURPOSE: Custom Image Format object, that contains all attributes and basic information
66
* PROGRAMER: Peter Geinitz (Wayfarer)
@@ -17,7 +17,7 @@
1717
using System.Linq;
1818
using Imaging.Interfaces;
1919

20-
namespace Imaging
20+
namespace Imaging.Cifs
2121
{
2222
/// <summary>
2323
/// Image in Cif format, with various further Tools
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* COPYRIGHT: See COPYING in the top level directory
3-
* PROJECT: Imaging
3+
* PROJECT: Imaging.Cifs
44
* FILE: CifImageData.cs
55
* PURPOSE: The Parser Object that will hold the actual Image Data
66
* PROGRAMER: Peter Geinitz (Wayfarer)
@@ -11,7 +11,7 @@
1111
using System.Drawing;
1212
using System.Linq;
1313

14-
namespace Imaging
14+
namespace Imaging.Cifs
1515
{
1616
/// <summary>
1717
/// Image Data Parser Object.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* COPYRIGHT: See COPYING in the top level directory
3-
* PROJECT: Imaging
3+
* PROJECT: Imaging.Cifs
44
* FILE: CifMetadata.cs
55
* PURPOSE: The Parser Object that will hold the actual meta Image Data
66
* PROGRAMER: Peter Geinitz (Wayfarer)
@@ -9,7 +9,7 @@
99
using System;
1010
using System.Collections.Generic;
1111

12-
namespace Imaging
12+
namespace Imaging.Cifs
1313
{
1414
/// <summary>
1515
/// Meta Data of Cif Images
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* COPYRIGHT: See COPYING in the top level directory
3-
* PROJECT: Imaging
3+
* PROJECT: Imaging.Cifs
44
* FILE: CifProcessing.cs
55
* PURPOSE: Processing of our custom Image Format, with custom compression
66
* PROGRAMER: Peter Geinitz (Wayfarer)
@@ -13,7 +13,7 @@
1313
using DataFormatter;
1414
using ExtendedSystemObjects;
1515

16-
namespace Imaging
16+
namespace Imaging.Cifs
1717
{
1818
//TODO add checksum Fun and custom image Exceptions
1919

0 commit comments

Comments
 (0)