aboutsummaryrefslogtreecommitdiff
path: root/Histacom2.Engine/Theme.cs
blob: 2d4633f59767de38ff0214e860543481dc67bf65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Histacom2.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 threeDObjectsColor { get; set; }
        public Color threeDObjectsTextColor { get; set; }

        public Font buttonFont { get; set; }

        public Color windowColor { get; set; }

        public Color activeTitleBarColor { get; set; }
        public Color activeTitleTextColor { get; set; }
        public Color inactiveTitleBarColor { get; set; }
        public Color inactiveTitleTextColor { get; set; }

        public Color selectedBackColor { get; set; }
        public Color selectedTextColor { 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;

            threeDObjectsColor = Color.Silver;
            threeDObjectsTextColor = Color.Black;

            buttonFont = new Font("Microsoft Sans Serif", 8.25F, FontStyle.Regular);

            windowColor = Color.White;

            activeTitleBarColor = Color.Navy;
            activeTitleTextColor = Color.White;
            inactiveTitleBarColor = Color.Gray;
            inactiveTitleTextColor = Color.Silver;

            selectedBackColor = Color.Navy;
            selectedTextColor = Color.White;

            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;

            threeDObjectsColor = Color.Silver;
            threeDObjectsTextColor = Color.Black;

            buttonFont = new Font("Microsoft Sans Serif", 8.25F, FontStyle.Regular);

            windowColor = Color.White;

            activeTitleBarColor = Color.Navy;
            activeTitleTextColor = Color.White;
            inactiveTitleBarColor = Color.Gray;
            inactiveTitleTextColor = Color.Silver;

            selectedBackColor = Color.Navy;
            selectedTextColor = Color.White;

            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;

            threeDObjectsColor = Color.FromArgb(112, 112, 112);
            threeDObjectsTextColor = Color.Black;

            buttonFont = new Font("Microsoft Sans Serif", 8.25F, FontStyle.Bold);

            windowColor = Color.FromArgb(184, 184, 184);

            activeTitleBarColor = Color.Teal;
            activeTitleTextColor = Color.White;
            inactiveTitleBarColor = Color.FromArgb(72, 72, 72);
            inactiveTitleTextColor = Color.Gray;

            selectedBackColor = Color.Teal;
            selectedTextColor = Color.White;

            defaultWallpaper = Properties.Resources.Win95PlusDangerousCreaturesWallpaper;
            themeName = "dangeranimals";
        }
    }

    public class InsideComputerTheme: Theme
    {
        public InsideComputerTheme()
        {
            startSound = Properties.Resources.Win95PlusInsideComputerStart;
            stopSound = Properties.Resources.Win95PlusInsideComputerStop;

            asteriskSound = Properties.Resources.Win95PlusInsideComputerAsterisk;

            threeDObjectsColor = Color.FromArgb(169, 200, 169);
            threeDObjectsTextColor = Color.Black;

            buttonFont = new Font("Microsoft Sans Serif", 8.25F, FontStyle.Bold);

            windowColor = Color.White;

            activeTitleBarColor = Color.FromArgb(224, 0, 0);
            activeTitleTextColor = Color.White;
            inactiveTitleBarColor = Color.FromArgb(96, 168, 128);
            inactiveTitleTextColor = Color.FromArgb(216, 224, 216);

            selectedBackColor = Color.FromArgb(248, 255, 160);
            selectedTextColor = Color.Black;

            defaultWallpaper = Properties.Resources.Win95PlusInsideComputerWallpaper;
            themeName = "insidepc";
        }
    }
}