Index: Core/Common/src/Core.Common.Gui/Core.Common.Gui.csproj =================================================================== diff -u -r75aa4fefacf584d5172dc3bdffd348b0aacb05a4 -rbd8291af14687d29a602b64864c37f2e254459f8 --- Core/Common/src/Core.Common.Gui/Core.Common.Gui.csproj (.../Core.Common.Gui.csproj) (revision 75aa4fefacf584d5172dc3bdffd348b0aacb05a4) +++ Core/Common/src/Core.Common.Gui/Core.Common.Gui.csproj (.../Core.Common.Gui.csproj) (revision bd8291af14687d29a602b64864c37f2e254459f8) @@ -115,6 +115,7 @@ + Index: Core/Common/src/Core.Common.Gui/Forms/MainWindow/Interop/NativeWin32.cs =================================================================== diff -u --- Core/Common/src/Core.Common.Gui/Forms/MainWindow/Interop/NativeWin32.cs (revision 0) +++ Core/Common/src/Core.Common.Gui/Forms/MainWindow/Interop/NativeWin32.cs (revision bd8291af14687d29a602b64864c37f2e254459f8) @@ -0,0 +1,10 @@ +using System.Runtime.InteropServices; + +namespace Core.Common.Gui.Forms.MainWindow.Interop +{ + public static class NativeWin32 + { + [DllImport("user32.dll", CharSet = CharSet.Auto, ExactSpelling = true)] + public static extern bool EnableWindow(HandleRef hWnd, bool enable); + } +} \ No newline at end of file Index: Core/Common/src/Core.Common.Gui/Forms/MainWindow/MainWindow.xaml.cs =================================================================== diff -u -r80d33e42292f20775a8230ba6d14e357a002e4ae -rbd8291af14687d29a602b64864c37f2e254459f8 --- Core/Common/src/Core.Common.Gui/Forms/MainWindow/MainWindow.xaml.cs (.../MainWindow.xaml.cs) (revision 80d33e42292f20775a8230ba6d14e357a002e4ae) +++ Core/Common/src/Core.Common.Gui/Forms/MainWindow/MainWindow.xaml.cs (.../MainWindow.xaml.cs) (revision bd8291af14687d29a602b64864c37f2e254459f8) @@ -16,13 +16,15 @@ using System.Windows.Input; using System.Windows.Interop; using System.Windows.Media.Imaging; + +using Core.Common.Gui.Forms.MainWindow.Interop; using Core.Common.Gui.Forms.MessageWindow; using Core.Common.Gui.Forms.Options; using Core.Common.Gui.Properties; using Core.Common.Gui.Theme; using Core.Common.Utils; using Core.Common.Utils.Collections; -using Core.Common.Utils.Interop; + using Fluent; using log4net; using Microsoft.Win32; Fisheye: Tag bd8291af14687d29a602b64864c37f2e254459f8 refers to a dead (removed) revision in file `Core/Common/src/Core.Common.Utils/Collections/Extensions/ListExtensions.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag bd8291af14687d29a602b64864c37f2e254459f8 refers to a dead (removed) revision in file `Core/Common/src/Core.Common.Utils/Comparer.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Core/Common/src/Core.Common.Utils/Core.Common.Utils.csproj =================================================================== diff -u -r23981d00366f6ee42b7b3c2b776a687c1dc70d07 -rbd8291af14687d29a602b64864c37f2e254459f8 --- Core/Common/src/Core.Common.Utils/Core.Common.Utils.csproj (.../Core.Common.Utils.csproj) (revision 23981d00366f6ee42b7b3c2b776a687c1dc70d07) +++ Core/Common/src/Core.Common.Utils/Core.Common.Utils.csproj (.../Core.Common.Utils.csproj) (revision bd8291af14687d29a602b64864c37f2e254459f8) @@ -88,14 +88,12 @@ Properties\GlobalAssembly.cs - - True @@ -117,7 +115,6 @@ - @@ -128,12 +125,9 @@ - - - Index: Core/Common/src/Core.Common.Utils/Drawing/ImageExtensions.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rbd8291af14687d29a602b64864c37f2e254459f8 --- Core/Common/src/Core.Common.Utils/Drawing/ImageExtensions.cs (.../ImageExtensions.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Utils/Drawing/ImageExtensions.cs (.../ImageExtensions.cs) (revision bd8291af14687d29a602b64864c37f2e254459f8) @@ -6,25 +6,6 @@ { /// /// Draws on top of at the provided x and y offset - /// - /// Original image - /// Overlay image - /// X offset for overlay drawing - /// Y offset for overlay drawing - public static Image AddOverlayImage(this Image originalImage, Image overlayImage, int xOffSet, int yOffSet) - { - var image = (Image) originalImage.Clone(); - - using (var gfx = Graphics.FromImage(image)) - { - gfx.DrawImage(overlayImage, new Point(xOffSet, yOffSet)); - } - - return image; - } - - /// - /// Draws on top of at the provided x and y offset /// and scales down/up to the provided and /// /// Original image Fisheye: Tag bd8291af14687d29a602b64864c37f2e254459f8 refers to a dead (removed) revision in file `Core/Common/src/Core.Common.Utils/IDeepCloneable.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag bd8291af14687d29a602b64864c37f2e254459f8 refers to a dead (removed) revision in file `Core/Common/src/Core.Common.Utils/Interop/NativeLibrary.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag bd8291af14687d29a602b64864c37f2e254459f8 refers to a dead (removed) revision in file `Core/Common/src/Core.Common.Utils/Interop/NativeWin32.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Core/Common/src/Core.Common.Utils/Properties/Resource.Designer.cs =================================================================== diff -u -r83b9621346f7f3ca887096468de965815eb609ac -rbd8291af14687d29a602b64864c37f2e254459f8 --- Core/Common/src/Core.Common.Utils/Properties/Resource.Designer.cs (.../Resource.Designer.cs) (revision 83b9621346f7f3ca887096468de965815eb609ac) +++ Core/Common/src/Core.Common.Utils/Properties/Resource.Designer.cs (.../Resource.Designer.cs) (revision bd8291af14687d29a602b64864c37f2e254459f8) @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // This code was generated by a tool. -// Runtime Version:4.0.30319.18063 +// Runtime Version:4.0.30319.18444 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. @@ -196,17 +196,6 @@ } /// - /// Looks up a localized string similar to Kon {0} niet vinden, dan wel laden. - ///Fout: {1} - {2} - ///Bestand: {3}\{0}. - /// - internal static string NativeLibrary_LoadNativeDll_Could_not_find_load_0_Error_1_2_File_3_0_ { - get { - return ResourceManager.GetString("NativeLibrary_LoadNativeDll_Could_not_find_load_0_Error_1_2_File_3_0_", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Geprobeerd het kenmerk in de beschikbare spatiale data te vervangen, maar kon kenmerk niet vinden in de oorspronkelijke context: {0}.. /// internal static string ObjectHelper_CouldNotFindFeatureInOriginalContext { Index: Core/Common/src/Core.Common.Utils/Properties/Resource.resx =================================================================== diff -u -r83b9621346f7f3ca887096468de965815eb609ac -rbd8291af14687d29a602b64864c37f2e254459f8 --- Core/Common/src/Core.Common.Utils/Properties/Resource.resx (.../Resource.resx) (revision 83b9621346f7f3ca887096468de965815eb609ac) +++ Core/Common/src/Core.Common.Utils/Properties/Resource.resx (.../Resource.resx) (revision bd8291af14687d29a602b64864c37f2e254459f8) @@ -153,11 +153,6 @@ {0} gebruikt DynamicVisibleAttribute, maar heeft geen methode gemarkeerd met DynamicVisibleValidationMethodAttribute. - - Kon {0} niet vinden, dan wel laden. -Fout: {1} - {2} -Bestand: {3}\{0} - Geen 'default constructor' gevonden voor type {0}. Fisheye: Tag bd8291af14687d29a602b64864c37f2e254459f8 refers to a dead (removed) revision in file `Core/Common/src/Core.Common.Utils/SnappingCalculator.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Core/Common/src/Core.Common.Utils/TypeConverter.cs =================================================================== diff -u -r8a9a2efad299327b082088189b9a37c32c55a890 -rbd8291af14687d29a602b64864c37f2e254459f8 --- Core/Common/src/Core.Common.Utils/TypeConverter.cs (.../TypeConverter.cs) (revision 8a9a2efad299327b082088189b9a37c32c55a890) +++ Core/Common/src/Core.Common.Utils/TypeConverter.cs (.../TypeConverter.cs) (revision bd8291af14687d29a602b64864c37f2e254459f8) @@ -7,20 +7,9 @@ /// Type conversion ie string conversion, works with nullable types. /// /// http://www.dogaoztuzun.com/post/C-Generic-Type-Conversion.aspx - public class TypeConverter + public static class TypeConverter { /// - /// Convert (and cast) value to given type using the current type's TypeConverter - /// - /// The target type to convert to - /// The value object to convert from - /// The value object, converted and casted into the target type - public static T ConvertValueToTargetType(object value) - { - return (T) ConvertValueToTargetType(typeof(T), value); - } - - /// /// Converts value to given type using the current type's TypeConverter /// /// The target type to convert to @@ -31,32 +20,5 @@ System.ComponentModel.TypeConverter tc = TypeDescriptor.GetConverter(t); return tc.ConvertFrom(value); } - - /// - /// Convert the object value using a specified TypeConveter, circumventing the Type's TypeConverter - /// - /// The original object to convert from - /// The type converter that will be used - /// - public static object ConvertValueToTargetType(object value, System.ComponentModel.TypeConverter tc) - { - //System.ComponentModel.TypeConverter tc = TypeDescriptor.GetConverter(t); - return tc.ConvertFrom(value); - } - - /// - /// Overrides the original TypeConverter with the specified TypeConverter - /// Usefull for registering TypeConverters to Types that are closed such as library types - /// - /// The type to attach the specified converter to - /// The converter that will handle all type conversions to and from the type - public static void RegisterTypeConverter() where TC : System.ComponentModel.TypeConverter - { - TypeConverterAttribute tca = new TypeConverterAttribute(typeof(TC)); - if (!TypeDescriptor.GetAttributes(typeof(T)).Contains(tca)) - { - TypeDescriptor.AddAttributes(typeof(T), tca); - } - } } } \ No newline at end of file Fisheye: Tag bd8291af14687d29a602b64864c37f2e254459f8 refers to a dead (removed) revision in file `Core/Common/test/Core.Common.Utils.Test/Collections/Extensions/ListExtensions.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag bd8291af14687d29a602b64864c37f2e254459f8 refers to a dead (removed) revision in file `Core/Common/test/Core.Common.Utils.Test/ComparerTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Core/Common/test/Core.Common.Utils.Test/Core.Common.Utils.Test.csproj =================================================================== diff -u -rd6e6eadf4a2521df75b6d371bacbb181a43058a3 -rbd8291af14687d29a602b64864c37f2e254459f8 --- Core/Common/test/Core.Common.Utils.Test/Core.Common.Utils.Test.csproj (.../Core.Common.Utils.Test.csproj) (revision d6e6eadf4a2521df75b6d371bacbb181a43058a3) +++ Core/Common/test/Core.Common.Utils.Test/Core.Common.Utils.Test.csproj (.../Core.Common.Utils.Test.csproj) (revision bd8291af14687d29a602b64864c37f2e254459f8) @@ -89,13 +89,10 @@ - - - @@ -111,7 +108,6 @@ - Fisheye: Tag bd8291af14687d29a602b64864c37f2e254459f8 refers to a dead (removed) revision in file `Core/Common/test/Core.Common.Utils.Test/General/TypeConverterTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag bd8291af14687d29a602b64864c37f2e254459f8 refers to a dead (removed) revision in file `Core/Common/test/Core.Common.Utils.Test/SnappingCalculatorTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: Core/GIS/src/Core.GIS.SharpMap.Extensions/Core.GIS.SharpMap.Extensions.csproj =================================================================== diff -u -r495f1fccd6473bf385415a762cfa49d020b54784 -rbd8291af14687d29a602b64864c37f2e254459f8 --- Core/GIS/src/Core.GIS.SharpMap.Extensions/Core.GIS.SharpMap.Extensions.csproj (.../Core.GIS.SharpMap.Extensions.csproj) (revision 495f1fccd6473bf385415a762cfa49d020b54784) +++ Core/GIS/src/Core.GIS.SharpMap.Extensions/Core.GIS.SharpMap.Extensions.csproj (.../Core.GIS.SharpMap.Extensions.csproj) (revision bd8291af14687d29a602b64864c37f2e254459f8) @@ -105,6 +105,8 @@ + + @@ -186,6 +188,7 @@ +