diff --git a/SBRW.Launcher.Core.Theme/Conversion_/Embeded_Files.cs b/SBRW.Launcher.Core.Theme/Conversion_/Embeded_Files.cs index 1f055e7..207a5d7 100644 --- a/SBRW.Launcher.Core.Theme/Conversion_/Embeded_Files.cs +++ b/SBRW.Launcher.Core.Theme/Conversion_/Embeded_Files.cs @@ -62,6 +62,10 @@ public class Embeded_Files /// /// At Compilee Time Constant Static String File /// + internal const string SVG_Offline = $"{SBRW_Resources_Root_Path}SVGs.Icon_Offline.svg"; + /// + /// At Compilee Time Constant Static String File + /// internal const string SVG_Plug_Connect = $"{SBRW_Resources_Root_Path}SVGs.Icon_Plug_Disconnected.svg"; /// /// At Compilee Time Constant Static String File @@ -70,6 +74,10 @@ public class Embeded_Files /// /// At Compilee Time Constant Static String File /// + internal const string SVG_Server = $"{SBRW_Resources_Root_Path}SVGs.Icon_Server.svg"; + /// + /// At Compilee Time Constant Static String File + /// internal const string SVG_Shield = $"{SBRW_Resources_Root_Path}SVGs.Icon_Shield.svg"; /// /// At Compilee Time Constant Static String File @@ -122,96 +130,112 @@ public static byte[] SBRW_Ico_Bytes() /// /// Check Engine SVG File /// - /// Embeded Resource Check Engine SVG File in Bytes - public static string SVG_Check_Engine_Bytes() + /// Embeded Resource Check Engine SVG File as a String + public static string SvG_Check_Engine() { return SVG_Check_Engine.ByteToString(); } /// /// Cross SVG File /// - /// Embeded Resource Cross SVG File in Bytes - public static string SVG_Cross_Bytes() + /// Embeded Resource Cross SVG File as a String + public static string SvG_Cross() { return SVG_Cross.ByteToString(); } /// /// Discord SVG File /// - /// Embeded Resource Discord SVG File in Bytes - public static string SVG_Discord_Bytes() + /// Embeded Resource Discord SVG File as a String + public static string SvG_Discord() { return SVG_Discord.ByteToString(); } /// /// Facebook SVG File /// - /// Embeded Resource Facebook SVG File in Bytes - public static string SVG_Facebook_Bytes() + /// Embeded Resource Facebook SVG File as a String + public static string SvG_Facebook() { return SVG_Facebook.ByteToString(); } /// /// Gear SVG File /// - /// Embeded Resource Gear SVG File in Bytes - public static string SVG_Gear_Bytes() + /// Embeded Resource Gear SVG File as a String + public static string SvG_Gear() { return SVG_Gear.ByteToString(); } /// /// Globe SVG File /// - /// Embeded Resource Globe SVG File in Bytes - public static string SVG_Globe_Bytes() + /// Embeded Resource Globe SVG File as a String + public static string SvG_Globe() { return SVG_Globe.ByteToString(); } /// /// Home SVG File /// - /// Embeded Resource Home SVG File in Bytes - public static string SVG_Home_Bytes() + /// Embeded Resource Home SVG File as a String + public static string SvG_Home() { return SVG_Home.ByteToString(); } /// + /// Offline SVG File + /// + /// Embeded Resource Offline SVG File as a String + public static string SvG_Offline() + { + return SVG_Offline.ByteToString(); + } + /// /// Plug Connect SVG File /// - /// Embeded Resource Plug Connect SVG File in Bytes - public static string SVG_Plug_Connect_Bytes() + /// Embeded Resource Plug Connect SVG File as a String + public static string SvG_Plug_Connect() { return SVG_Plug_Connect.ByteToString(); } /// /// Save SVG File /// - /// Embeded Resource Save SVG File in Bytes - public static string SVG_Save_Bytes() + /// Embeded Resource Save SVG File as a String + public static string SvG_Save() { return SVG_Save.ByteToString(); } /// /// Shield SVG File /// - /// Embeded Resource Shield SVG File in Bytes - public static string SVG_Shield_Bytes() + /// Embeded Resource Shield SVG File as a String + public static string SvG_Shield() { return SVG_Shield.ByteToString(); } /// + /// Server SVG File + /// + /// Embeded Resource Server SVG File as a String + public static string SvG_Server() + { + return SVG_Server.ByteToString(); + } + /// /// Twitter SVG File /// - /// Embeded Resource Twitter SVG File in Bytes - public static string SVG_Twitter_Bytes() + /// Embeded Resource Twitter SVG File as a String + public static string SvG_Twitter() { return SVG_Twitter.ByteToString(); } /// /// Inputs Box SVG File /// - /// Embeded Resource Inputs Box SVG File in Bytes - public static string SVG_Inputs_Box_Bytes() + /// Embeded Resource Inputs Box SVG File as a String + public static string SvG_Inputs_Box() { return SVG_Inputs.ByteToString(); } diff --git a/SBRW.Launcher.Core.Theme/Resources/SVGs/Icon_Offline.svg b/SBRW.Launcher.Core.Theme/Resources/SVGs/Icon_Offline.svg new file mode 100644 index 0000000..00078a6 --- /dev/null +++ b/SBRW.Launcher.Core.Theme/Resources/SVGs/Icon_Offline.svg @@ -0,0 +1,3 @@ + + + diff --git a/SBRW.Launcher.Core.Theme/Resources/SVGs/Icon_Server.svg b/SBRW.Launcher.Core.Theme/Resources/SVGs/Icon_Server.svg new file mode 100644 index 0000000..93b8eba --- /dev/null +++ b/SBRW.Launcher.Core.Theme/Resources/SVGs/Icon_Server.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/SBRW.Launcher.Core.Theme/Resources/SVGs/Input_Global.svg b/SBRW.Launcher.Core.Theme/Resources/SVGs/Input_Global.svg index 680f1bf..6b94a66 100644 --- a/SBRW.Launcher.Core.Theme/Resources/SVGs/Input_Global.svg +++ b/SBRW.Launcher.Core.Theme/Resources/SVGs/Input_Global.svg @@ -1,13 +1,13 @@ - + - - + + - + diff --git a/SBRW.Launcher.Core.Theme/SBRW.Launcher.Core.Theme.csproj b/SBRW.Launcher.Core.Theme/SBRW.Launcher.Core.Theme.csproj index 36dfc56..9fc8bce 100644 --- a/SBRW.Launcher.Core.Theme/SBRW.Launcher.Core.Theme.csproj +++ b/SBRW.Launcher.Core.Theme/SBRW.Launcher.Core.Theme.csproj @@ -40,8 +40,10 @@ + + @@ -60,8 +62,10 @@ + +