aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/OS/Win95/Win95Apps/Win95Installer.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 /Histacom2/OS/Win95/Win95Apps/Win95Installer.cs
parent99fef5c57360f07259fc86f433bed8a9ab59c48e (diff)
downloadhistacom2-3306d36ecbc024775972e5cf7971b2a7a70671d0.tar.gz
histacom2-3306d36ecbc024775972e5cf7971b2a7a70671d0.tar.bz2
histacom2-3306d36ecbc024775972e5cf7971b2a7a70671d0.zip
Renaming the game!
Diffstat (limited to 'Histacom2/OS/Win95/Win95Apps/Win95Installer.cs')
-rw-r--r--Histacom2/OS/Win95/Win95Apps/Win95Installer.cs129
1 files changed, 129 insertions, 0 deletions
diff --git a/Histacom2/OS/Win95/Win95Apps/Win95Installer.cs b/Histacom2/OS/Win95/Win95Apps/Win95Installer.cs
new file mode 100644
index 0000000..6f8a63e
--- /dev/null
+++ b/Histacom2/OS/Win95/Win95Apps/Win95Installer.cs
@@ -0,0 +1,129 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Drawing;
+using System.Data;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Histacom2.OS.Win95.Win95Apps
+{
+ public partial class Win95Installer : UserControl
+ {
+ public int installStage = 0;
+ private string prog;
+ private Timer installbar = new Timer();
+
+ public event EventHandler InstallCompleted;
+
+ protected void OnInstallCompleted(EventArgs e)
+ {
+ if (InstallCompleted != null) InstallCompleted(this, e);
+ }
+
+ public Win95Installer(string progName)
+ {
+ InitializeComponent();
+ label1.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
+ label2.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
+ label3.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
+ label4.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
+ label5.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
+ label6.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
+ label7.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
+ checkBox1.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
+ cancelbutton1.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2);
+ nextbutton1.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2);
+ backbutton1.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2);
+ prog = progName;
+ }
+
+ private void Win95Installer_Load(object sender, EventArgs e)
+ {
+ label1.Text = label1.Text.Replace("GenericName", prog);
+ label3.Text = label3.Text.Replace("GenericName", prog);
+ label4.Text = label4.Text.Replace("GenericName", prog);
+ label7.Text = label7.Text.Replace("GenericName", prog);
+ installbar.Tick += Installbar_Tick;
+ }
+
+ private void Installbar_Tick(object sender, EventArgs e)
+ {
+ if (progressBar1.Value < 100)
+ {
+ progressBar1.Value = progressBar1.Value + 1;
+ }
+ else
+ {
+ OnInstallCompleted(EventArgs.Empty);
+ panel3.Hide();
+ panel4.Show();
+ backbutton1.Hide();
+ nextbutton1.Hide();
+ cancelbutton1.Enabled = true;
+ cancelbutton1.Text = "Finish";
+ installbar.Stop();
+ }
+ }
+
+ private void nextbutton1_Click(object sender, EventArgs e)
+ {
+ switch (installStage)
+ {
+ case 0:
+ label1.Hide();
+ panel1.Show();
+ backbutton1.Enabled = true;
+ if (!checkBox1.Checked) nextbutton1.Enabled = false;
+ installStage = 1;
+ break;
+ case 1:
+ panel1.Hide();
+ panel2.Show();
+ installStage = 2;
+ break;
+ case 2:
+ panel2.Hide();
+ panel3.Show();
+ backbutton1.Enabled = false;
+ nextbutton1.Enabled = false;
+ cancelbutton1.Enabled = false;
+ installbar.Start();
+ break;
+ }
+ }
+
+ private void checkBox1_CheckedChanged(object sender, EventArgs e)
+ {
+ if (checkBox1.Checked) nextbutton1.Enabled = true;
+ else nextbutton1.Enabled = false;
+ }
+
+ private void backbutton1_Click(object sender, EventArgs e)
+ {
+ switch (installStage)
+ {
+ case 1:
+ panel1.Hide();
+ label1.Show();
+ backbutton1.Enabled = false;
+ nextbutton1.Enabled = true;
+ installStage = 0;
+ break;
+ case 2:
+ panel2.Hide();
+ panel1.Show();
+ if (!checkBox1.Checked) nextbutton1.Enabled = false;
+ installStage = 1;
+ break;
+ }
+ }
+
+ private void cancelbutton1_Click(object sender, EventArgs e)
+ {
+ ParentForm.Close();
+ }
+ }
+}