BizHawk/BizHawk.Client.Common/config/ToolDialogSettings.cs

60 lines
1.0 KiB
C#

using System.Drawing;
using Newtonsoft.Json;
namespace BizHawk.Client.Common
{
public class ToolDialogSettings
{
public ToolDialogSettings()
{
SaveWindowPosition = true;
FloatingWindow = true;
}
public int? Wndx { get; set; }
public int? Wndy { get; set; }
public int? Width { get; set; }
public int? Height { get; set; }
public bool SaveWindowPosition { get; set; }
public bool TopMost { get; set; }
public bool FloatingWindow { get; set; }
[JsonIgnore]
public bool UseWindowPosition
{
get
{
return SaveWindowPosition && Wndx.HasValue && Wndy.HasValue;
}
}
[JsonIgnore]
public bool UseWindowSize
{
get
{
return SaveWindowPosition && Width.HasValue && Height.HasValue;
}
}
[JsonIgnore]
public Point WindowPosition
{
get
{
return new Point(Wndx ?? 0, Wndy ?? 0);
}
}
[JsonIgnore]
public Size WindowSize
{
get
{
return new Size(Width ?? 0, Height ?? 0);
}
}
}
}