From c81573594f509177214bbc9b64427c8aabdc30a6 Mon Sep 17 00:00:00 2001 From: AShifter Date: Sat, 25 Nov 2017 08:59:48 -0700 Subject: Add SaveSystem, FullScreen Terminal and stuff Git had a horrible seizure and removed our repo but Alex-TIMEHACK helped us get it back. --- ShiftOS.Engine/WindowManager/ShiftSkinData.cs | 47 ++++++++++++++++++--------- 1 file changed, 32 insertions(+), 15 deletions(-) (limited to 'ShiftOS.Engine/WindowManager/ShiftSkinData.cs') diff --git a/ShiftOS.Engine/WindowManager/ShiftSkinData.cs b/ShiftOS.Engine/WindowManager/ShiftSkinData.cs index 165f5bb..cfaf4be 100644 --- a/ShiftOS.Engine/WindowManager/ShiftSkinData.cs +++ b/ShiftOS.Engine/WindowManager/ShiftSkinData.cs @@ -5,19 +5,36 @@ namespace ShiftOS.Engine.WindowManager public abstract class ShiftSkinData { // ColorData - public static Color LeftTopCornerColor = Color.Empty; - public static Color TitleBarColor = Color.Empty; - public static Color RightTopCornerColor = Color.Empty; - public static Color BtnCloseColor = Color.Empty; - public static Color BtnMaxColor = Color.Empty; - public static Color BtnMinColor = Color.Empty; - public static Color BtnCloseHoverColor = Color.Empty; - public static Color BtnMaxHoverColor = Color.Empty; - public static Color BtnMinHoverColor = Color.Empty; - public static Color LeftSideColor = Color.Empty; - public static Color RightSideColor = Color.Empty; - public static Color LeftBottomCornerColor = Color.Empty; - public static Color BottomSideColor = Color.Empty; - public static Color RightBottomCornerColor = Color.Empty; - } + public static skinColors Colors = new skinColors(); + public static skinTextures Images = new skinTextures(); + } + + public class skinTextures + { + public skinTextures() + { + + } + } +} + +namespace ShiftOS.Engine.WindowManager +{ + public class skinColors + { + public Color LeftTopCornerColor; + public Color TitleBarColor; + public Color RightTopCornerColor; + public Color BtnCloseColor; + public Color BtnMaxColor; + public Color BtnMinColor; + public Color BtnCloseHoverColor; + public Color BtnMaxHoverColor; + public Color BtnMinHoverColor; + public Color LeftSideColor; + public Color RightSideColor; + public Color LeftBottomCornerColor; + public Color BottomSideColor; + public Color RightBottomCornerColor; + } } \ No newline at end of file -- cgit v1.2.3