From 10ae6bcf8fc9168bfda105de31b9525ec34d1b3d Mon Sep 17 00:00:00 2001 From: lempamo Date: Mon, 31 Jul 2017 15:40:59 -0400 Subject: more themey things --- TimeHACK.Engine/Theme.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'TimeHACK.Engine/Theme.cs') diff --git a/TimeHACK.Engine/Theme.cs b/TimeHACK.Engine/Theme.cs index 8e75756..43d9661 100644 --- a/TimeHACK.Engine/Theme.cs +++ b/TimeHACK.Engine/Theme.cs @@ -19,6 +19,11 @@ namespace TimeHACK.Engine public Stream progErrorSound { get; set; } public Stream questionSound { get; set; } + public Color activeTitleBarColor { get; set; } + public Color activeTitleTextColor { get; set; } + public Color inactiveTitleBarColor { get; set; } + public Color inactiveTitleTextColor { get; set; } + public Image defaultWallpaper { get; set; } public string themeName { get; set; } @@ -37,6 +42,11 @@ namespace TimeHACK.Engine progErrorSound = Properties.Resources.CHORD; questionSound = Properties.Resources.CHORD; + activeTitleBarColor = Color.Navy; + activeTitleTextColor = Color.White; + inactiveTitleBarColor = Color.Gray; + inactiveTitleTextColor = Color.Silver; + defaultWallpaper = null; themeName = "default95"; } @@ -73,6 +83,11 @@ namespace TimeHACK.Engine progErrorSound = Properties.Resources.Win95PlusDangerousCreaturesProgError; questionSound = Properties.Resources.Win95PlusDangerousCreaturesQuestion; + activeTitleBarColor = Color.Teal; + activeTitleTextColor = Color.White; + inactiveTitleBarColor = Color.FromArgb(72, 72, 72); + inactiveTitleTextColor = Color.Gray; + defaultWallpaper = Properties.Resources.Win95PlusDangerousCreaturesWallpaper; themeName = "dangeranimals"; } @@ -85,6 +100,13 @@ namespace TimeHACK.Engine startSound = Properties.Resources.Win95PlusInsideComputerStart; stopSound = Properties.Resources.Win95PlusInsideComputerStop; + asteriskSound = Properties.Resources.Win95PlusInsideComputerAsterisk; + + activeTitleBarColor = Color.FromArgb(224, 0, 0); + activeTitleTextColor = Color.White; + inactiveTitleBarColor = Color.FromArgb(96, 168, 128); + inactiveTitleTextColor = Color.FromArgb(216, 224, 216); + defaultWallpaper = Properties.Resources.Win95PlusInsideComputerWallpaper; themeName = "insidepc"; } -- cgit v1.2.3