diff options
| author | lempamo <[email protected]> | 2017-07-31 15:40:59 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-07-31 15:40:59 -0400 |
| commit | 10ae6bcf8fc9168bfda105de31b9525ec34d1b3d (patch) | |
| tree | 9e611a48e01a4f1655061103d88eae7eefd4f8fe /TimeHACK.Engine/Theme.cs | |
| parent | 93702450a4d0a1830807e985acccc616f3bf1b62 (diff) | |
| download | histacom2-10ae6bcf8fc9168bfda105de31b9525ec34d1b3d.tar.gz histacom2-10ae6bcf8fc9168bfda105de31b9525ec34d1b3d.tar.bz2 histacom2-10ae6bcf8fc9168bfda105de31b9525ec34d1b3d.zip | |
more themey things
Diffstat (limited to 'TimeHACK.Engine/Theme.cs')
| -rw-r--r-- | TimeHACK.Engine/Theme.cs | 22 |
1 files changed, 22 insertions, 0 deletions
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"; } |
