From c9121873b5b36b4a3cdce5bd2fb0dde70c7527ae Mon Sep 17 00:00:00 2001 From: Anton Kasyanov Date: Tue, 3 Apr 2018 23:50:27 +0300 Subject: [PATCH] Code reorganization --- .../Configuration/{ => Implementation}/AppConfig.cs | 2 +- .../{ => Implementation}/ConfigurationStorage.cs | 2 +- .../Implementation/ThumbnailConfiguration.cs | 2 +- .../Configuration/{ => Interface}/ClientLayout.cs | 0 .../Configuration/{ => Interface}/IAppConfig.cs | 0 .../{ => Interface}/IConfigurationStorage.cs | 0 .../Configuration/{ => Interface}/ZoomAnchor.cs | 0 Eve-O-Preview/Eve-O-Preview.csproj | 12 ++++++------ 8 files changed, 9 insertions(+), 9 deletions(-) rename Eve-O-Preview/Configuration/{ => Implementation}/AppConfig.cs (71%) rename Eve-O-Preview/Configuration/{ => Implementation}/ConfigurationStorage.cs (92%) rename Eve-O-Preview/Configuration/{ => Interface}/ClientLayout.cs (100%) rename Eve-O-Preview/Configuration/{ => Interface}/IAppConfig.cs (100%) rename Eve-O-Preview/Configuration/{ => Interface}/IConfigurationStorage.cs (100%) rename Eve-O-Preview/Configuration/{ => Interface}/ZoomAnchor.cs (100%) diff --git a/Eve-O-Preview/Configuration/AppConfig.cs b/Eve-O-Preview/Configuration/Implementation/AppConfig.cs similarity index 71% rename from Eve-O-Preview/Configuration/AppConfig.cs rename to Eve-O-Preview/Configuration/Implementation/AppConfig.cs index c059d39..daa7de0 100644 --- a/Eve-O-Preview/Configuration/AppConfig.cs +++ b/Eve-O-Preview/Configuration/Implementation/AppConfig.cs @@ -1,4 +1,4 @@ -namespace EveOPreview.Configuration +namespace EveOPreview.Configuration.Implementation { class AppConfig : IAppConfig { diff --git a/Eve-O-Preview/Configuration/ConfigurationStorage.cs b/Eve-O-Preview/Configuration/Implementation/ConfigurationStorage.cs similarity index 92% rename from Eve-O-Preview/Configuration/ConfigurationStorage.cs rename to Eve-O-Preview/Configuration/Implementation/ConfigurationStorage.cs index 50a0663..e07ec8f 100644 --- a/Eve-O-Preview/Configuration/ConfigurationStorage.cs +++ b/Eve-O-Preview/Configuration/Implementation/ConfigurationStorage.cs @@ -1,7 +1,7 @@ using System.IO; using Newtonsoft.Json; -namespace EveOPreview.Configuration +namespace EveOPreview.Configuration.Implementation { class ConfigurationStorage : IConfigurationStorage { diff --git a/Eve-O-Preview/Configuration/Implementation/ThumbnailConfiguration.cs b/Eve-O-Preview/Configuration/Implementation/ThumbnailConfiguration.cs index b22c926..eac17e9 100644 --- a/Eve-O-Preview/Configuration/Implementation/ThumbnailConfiguration.cs +++ b/Eve-O-Preview/Configuration/Implementation/ThumbnailConfiguration.cs @@ -3,7 +3,7 @@ using System.Drawing; using System.Windows.Forms; using Newtonsoft.Json; -namespace EveOPreview.Configuration.Omplementation +namespace EveOPreview.Configuration.Implementation { sealed class ThumbnailConfiguration : IThumbnailConfiguration { diff --git a/Eve-O-Preview/Configuration/ClientLayout.cs b/Eve-O-Preview/Configuration/Interface/ClientLayout.cs similarity index 100% rename from Eve-O-Preview/Configuration/ClientLayout.cs rename to Eve-O-Preview/Configuration/Interface/ClientLayout.cs diff --git a/Eve-O-Preview/Configuration/IAppConfig.cs b/Eve-O-Preview/Configuration/Interface/IAppConfig.cs similarity index 100% rename from Eve-O-Preview/Configuration/IAppConfig.cs rename to Eve-O-Preview/Configuration/Interface/IAppConfig.cs diff --git a/Eve-O-Preview/Configuration/IConfigurationStorage.cs b/Eve-O-Preview/Configuration/Interface/IConfigurationStorage.cs similarity index 100% rename from Eve-O-Preview/Configuration/IConfigurationStorage.cs rename to Eve-O-Preview/Configuration/Interface/IConfigurationStorage.cs diff --git a/Eve-O-Preview/Configuration/ZoomAnchor.cs b/Eve-O-Preview/Configuration/Interface/ZoomAnchor.cs similarity index 100% rename from Eve-O-Preview/Configuration/ZoomAnchor.cs rename to Eve-O-Preview/Configuration/Interface/ZoomAnchor.cs diff --git a/Eve-O-Preview/Eve-O-Preview.csproj b/Eve-O-Preview/Eve-O-Preview.csproj index 2d0e212..abdecee 100644 --- a/Eve-O-Preview/Eve-O-Preview.csproj +++ b/Eve-O-Preview/Eve-O-Preview.csproj @@ -108,11 +108,11 @@ - - - + + + - + @@ -143,7 +143,7 @@ - + @@ -167,7 +167,7 @@ MainForm.cs - +