mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-01-23 17:43:08 -05:00
48 lines
No EOL
1.9 KiB
C#
48 lines
No EOL
1.9 KiB
C#
using System;
|
|
using System.Drawing;
|
|
using ClassicalSharp;
|
|
|
|
namespace Launcher2 {
|
|
|
|
public static class LauncherSkin {
|
|
|
|
public static FastColour BackgroundCol = new FastColour( 153, 127, 172 );
|
|
public static FastColour ButtonBorderCol = new FastColour( 97, 81, 110 );
|
|
public static FastColour ButtonForeActiveCol = new FastColour( 189, 168, 206 );
|
|
public static FastColour ButtonForeCol = new FastColour( 101, 110, 137 );
|
|
public static FastColour ButtonHighlightCol = new FastColour( 122, 122, 145 );
|
|
|
|
public static void ResetToDefault() {
|
|
BackgroundCol = new FastColour( 153, 127, 172 );
|
|
ButtonBorderCol = new FastColour( 97, 81, 110 );
|
|
ButtonForeActiveCol = new FastColour( 189, 168, 206 );
|
|
ButtonForeCol = new FastColour( 101, 110, 137 );
|
|
ButtonHighlightCol = new FastColour( 122, 122, 145 );
|
|
}
|
|
|
|
public static void LoadFromOptions() {
|
|
Get( "launcher-back-col", ref BackgroundCol );
|
|
Get( "launcher-btn-border-col", ref ButtonBorderCol );
|
|
Get( "launcher-btn-fore-active-col", ref ButtonForeActiveCol );
|
|
Get( "launcher-btn-fore-col", ref ButtonForeCol );
|
|
Get( "launcher-btn-highlight-col", ref ButtonHighlightCol );
|
|
}
|
|
|
|
public static void SaveToOptions() {
|
|
Options.Set( "launcher-back-col", BackgroundCol.ToRGBHexString() );
|
|
Options.Set( "launcher-btn-border-col", ButtonBorderCol.ToRGBHexString() );
|
|
Options.Set( "launcher-btn-fore-active-col", ButtonForeActiveCol.ToRGBHexString() );
|
|
Options.Set( "launcher-btn-fore-col", ButtonForeCol.ToRGBHexString() );
|
|
Options.Set( "launcher-btn-highlight-col", ButtonHighlightCol.ToRGBHexString() );
|
|
}
|
|
|
|
static void Get( string key, ref FastColour col ) {
|
|
FastColour defaultCol = col;
|
|
string value = Options.Get( key );
|
|
if( String.IsNullOrEmpty( value ) ) return;
|
|
|
|
if( !FastColour.TryParse( value, out col ) )
|
|
col = defaultCol;
|
|
}
|
|
}
|
|
} |