From bae58df258e259b5d35187d26630662287875c69 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 20 Jun 2017 19:01:40 -0400 Subject: [PATCH] inactive border images --- ShiftOS_TheReturn/Skinning.cs | 74 +++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) diff --git a/ShiftOS_TheReturn/Skinning.cs b/ShiftOS_TheReturn/Skinning.cs index 656da30..e7ebbc7 100644 --- a/ShiftOS_TheReturn/Skinning.cs +++ b/ShiftOS_TheReturn/Skinning.cs @@ -1190,6 +1190,14 @@ namespace ShiftOS.Engine [RequiresUpgrade("skinning;shift_titlebar")] public byte[] TitleBarBackground = null; + [ShifterMeta("Windows")] + [ShifterCategory("Titlebar")] + [ShifterName("Titlebar inactive background image")] + [Image("titlebarinactive")] + [RequiresUpgrade("skinning;shift_titlebar;shift_states")] + public byte[] TitleBarInactiveBackground = null; + + [ShifterMeta("Windows")] [ShifterCategory("Titlebar")] [RequiresUpgrade("shift_titlebar")] @@ -1256,6 +1264,16 @@ namespace ShiftOS.Engine [Image("titleleft")] public byte[] TitleLeftBG = null; + [ShifterMeta("Windows")] + [ShifterCategory("Titlebar")] + [RequiresUpgrade("skinning;shift_titlebar;shift_states")] + [ShifterFlag("ShowTitleCorners", true)] + [ShifterName("Title left corner inactive background image")] + [ShifterDescription("Select an image to appear as the background texture for the left titlebar corner when the window is inactive.")] + [Image("titleleftinactive")] + public byte[] TitleLeftInactiveBG = null; + + [ShifterMeta("Windows")] [ShifterCategory("Titlebar")] [RequiresUpgrade("skinning;shift_titlebar")] @@ -1265,6 +1283,15 @@ namespace ShiftOS.Engine [Image("titleright")] public byte[] TitleRightBG = null; + [ShifterMeta("Windows")] + [ShifterCategory("Titlebar")] + [RequiresUpgrade("skinning;shift_titlebar;shift_states")] + [ShifterFlag("ShowTitleCorners", true)] + [ShifterName("Title right corner inactive background image")] + [ShifterDescription("Select an image to appear as the background texture for the right titlebar corner when the window is inactive.")] + [Image("titlerightinactive")] + public byte[] TitleRightInactiveBG = null; + [ShifterMeta("System")] [ShifterCategory("General")] @@ -1280,6 +1307,15 @@ namespace ShiftOS.Engine [ShifterDescription("Select an image to appear on the bottom border.")] public byte[] BottomBorderBG = null; + [ShifterMeta("Windows")] + [ShifterCategory("Window border")] + [RequiresUpgrade("skinning;shift_window_borders;shift_states")] + [Image("bottomborderinactive")] + [ShifterName("Bottom Border Inactive Image")] + [ShifterDescription("Select an image to appear on the bottom border when the window is inactive. ")] + public byte[] BottomBorderInactiveBG = null; + + [ShifterMeta("Windows")] [ShifterCategory("Window border")] [RequiresUpgrade("skinning;shift_window_borders")] @@ -1296,6 +1332,25 @@ namespace ShiftOS.Engine [ShifterDescription("Select an image to appear on the bottom left border.")] public byte[] BottomLBorderBG = null; + + [ShifterMeta("Windows")] + [ShifterCategory("Window border")] + [RequiresUpgrade("skinning;shift_window_borders;shift_states")] + [Image("bottomrborderinactive")] + [ShifterName("Bottom Right Border Inactive Image")] + [ShifterDescription("Select an image to appear on the bottom right border when the window is inactive.")] + public byte[] BottomRBorderInactiveBG = null; + + [ShifterMeta("Windows")] + [ShifterCategory("Window border")] + [RequiresUpgrade("skinning;shift_window_borders;shift_states")] + [Image("bottomlborderinactive")] + [ShifterName("Bottom Left Border Inactive Image")] + [ShifterDescription("Select an image to appear on the bottom left border when the window is inactive.")] + public byte[] BottomLBorderInactiveBG = null; + + + [ShifterMeta("Windows")] [ShifterCategory("Window border")] [RequiresUpgrade("skinning;shift_window_borders")] @@ -1312,6 +1367,25 @@ namespace ShiftOS.Engine [ShifterDescription("Select an image to appear on the right border.")] public byte[] RightBorderBG = null; + + [ShifterMeta("Windows")] + [ShifterCategory("Window border")] + [RequiresUpgrade("skinning;shift_window_borders;shift_states")] + [Image("leftborderinactive")] + [ShifterName("Left Border Inactive Image")] + [ShifterDescription("Select an image to appear on the left border when the window is inactive.")] + public byte[] LeftBorderInactiveBG = null; + + [ShifterMeta("Windows")] + [ShifterCategory("Window border")] + [RequiresUpgrade("skinning;shift_window_borders;shift_states")] + [Image("rightborderinactive")] + [ShifterName("Right Border Inactive Image")] + [ShifterDescription("Select an image to appear on the right border when the window is inactive.")] + public byte[] RightBorderInactiveBG = null; + + + [ShifterMeta("Windows")] [ShifterCategory("Window border")] [RequiresUpgrade("shift_window_borders")]