aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Engine/WindowManager/ShiftSkinData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ShiftOS.Engine/WindowManager/ShiftSkinData.cs')
-rw-r--r--ShiftOS.Engine/WindowManager/ShiftSkinData.cs47
1 files changed, 32 insertions, 15 deletions
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