Code reorganization
This commit is contained in:
23
Eve-O-Preview/Configuration/Interface/ClientLayout.cs
Normal file
23
Eve-O-Preview/Configuration/Interface/ClientLayout.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
namespace EveOPreview.Configuration
|
||||
{
|
||||
public class ClientLayout
|
||||
{
|
||||
public ClientLayout()
|
||||
{
|
||||
}
|
||||
|
||||
public ClientLayout(int x, int y, int width, int height)
|
||||
{
|
||||
this.X = x;
|
||||
this.Y = y;
|
||||
this.Width = width;
|
||||
this.Height = height;
|
||||
}
|
||||
|
||||
public int X { get; set; }
|
||||
public int Y { get; set; }
|
||||
|
||||
public int Width { get; set; }
|
||||
public int Height { get; set; }
|
||||
}
|
||||
}
|
||||
10
Eve-O-Preview/Configuration/Interface/IAppConfig.cs
Normal file
10
Eve-O-Preview/Configuration/Interface/IAppConfig.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace EveOPreview.Configuration
|
||||
{
|
||||
/// <summary>
|
||||
/// Application configuration
|
||||
/// </summary>
|
||||
public interface IAppConfig
|
||||
{
|
||||
string ConfigFileName { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
namespace EveOPreview.Configuration
|
||||
{
|
||||
public interface IConfigurationStorage
|
||||
{
|
||||
void Load();
|
||||
void Save();
|
||||
}
|
||||
}
|
||||
15
Eve-O-Preview/Configuration/Interface/ZoomAnchor.cs
Normal file
15
Eve-O-Preview/Configuration/Interface/ZoomAnchor.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace EveOPreview.Configuration
|
||||
{
|
||||
public enum ZoomAnchor
|
||||
{
|
||||
NW,
|
||||
N,
|
||||
NE,
|
||||
W,
|
||||
C,
|
||||
E,
|
||||
SW,
|
||||
S,
|
||||
SE
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user