aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Engine/Theme.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-08-23 13:38:40 -0400
committerlempamo <[email protected]>2017-08-23 13:38:40 -0400
commit3306d36ecbc024775972e5cf7971b2a7a70671d0 (patch)
tree0a79e67b6723a8c75ffd66c7828bdd0ebb1bf74d /TimeHACK.Engine/Theme.cs
parent99fef5c57360f07259fc86f433bed8a9ab59c48e (diff)
downloadhistacom2-3306d36ecbc024775972e5cf7971b2a7a70671d0.tar.gz
histacom2-3306d36ecbc024775972e5cf7971b2a7a70671d0.tar.bz2
histacom2-3306d36ecbc024775972e5cf7971b2a7a70671d0.zip
Renaming the game!
Diffstat (limited to 'TimeHACK.Engine/Theme.cs')
-rw-r--r--TimeHACK.Engine/Theme.cs114
1 files changed, 0 insertions, 114 deletions
diff --git a/TimeHACK.Engine/Theme.cs b/TimeHACK.Engine/Theme.cs
deleted file mode 100644
index 43d9661..0000000
--- a/TimeHACK.Engine/Theme.cs
+++ /dev/null
@@ -1,114 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Drawing;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
-namespace TimeHACK.Engine
-{
- public class Theme
- {
- public Stream startSound { get; set; }
- public Stream stopSound { get; set; }
-
- public Stream asteriskSound { get; set; }
- public Stream critStopSound { get; set; }
- public Stream exclamationSound { get; set; }
- 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; }
- }
-
- public class Default95Theme: Theme
- {
- public Default95Theme()
- {
- startSound = Properties.Resources.Win95Start;
- stopSound = Properties.Resources.Win95Stop;
-
- asteriskSound = Properties.Resources.CHORD;
- critStopSound = Properties.Resources.CHORD;
- exclamationSound = Properties.Resources.CHORD;
- progErrorSound = Properties.Resources.CHORD;
- questionSound = Properties.Resources.CHORD;
-
- activeTitleBarColor = Color.Navy;
- activeTitleTextColor = Color.White;
- inactiveTitleBarColor = Color.Gray;
- inactiveTitleTextColor = Color.Silver;
-
- defaultWallpaper = null;
- themeName = "default95";
- }
- }
-
- public class Default98Theme : Theme
- {
- public Default98Theme()
- {
- startSound = Properties.Resources.Win98Start;
- stopSound = Properties.Resources.Win98Stop;
-
- asteriskSound = Properties.Resources.CHORD;
- critStopSound = Properties.Resources.CHORD;
- exclamationSound = Properties.Resources.CHORD;
- progErrorSound = Properties.Resources.CHORD;
- questionSound = Properties.Resources.CHORD;
-
- defaultWallpaper = null;
- themeName = "default98";
- }
- }
-
- public class DangerousCreaturesTheme: Theme
- {
- public DangerousCreaturesTheme()
- {
- startSound = Properties.Resources.Win95PlusDangerousCreaturesStart;
- stopSound = Properties.Resources.Win95PlusDangerousCreaturesStart;
-
- asteriskSound = Properties.Resources.Win95PlusDangerousCreaturesAsterisk;
- critStopSound = Properties.Resources.Win95PlusDangerousCreaturesCritStop;
- exclamationSound = Properties.Resources.Win95PlusDangerousCreaturesExclamation;
- 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";
- }
- }
-
- public class InsideComputerTheme: Theme
- {
- public InsideComputerTheme()
- {
- 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";
- }
- }
-}