aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-08-01 14:10:19 -0400
committerlempamo <[email protected]>2017-08-01 14:10:19 -0400
commit9a68e5ed46f76d4ddda94c234a65a757797bdae9 (patch)
tree09a54eb94023fdf69263acf55fbd6b968bddacec /TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.cs
parentc0fd6c4d1b176d44f05d2f20c4d4439f3278f632 (diff)
downloadhistacom2-9a68e5ed46f76d4ddda94c234a65a757797bdae9.tar.gz
histacom2-9a68e5ed46f76d4ddda94c234a65a757797bdae9.tar.bz2
histacom2-9a68e5ed46f76d4ddda94c234a65a757797bdae9.zip
Replaced IE4
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.cs')
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.cs76
1 files changed, 0 insertions, 76 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.cs b/TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.cs
deleted file mode 100644
index d41add1..0000000
--- a/TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.cs
+++ /dev/null
@@ -1,76 +0,0 @@
-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;
-using TimeHACK.OS.Win95.Win95Apps.IE4Sites;
-
-namespace TimeHACK.OS.Win95.Win95Apps
-{
- public partial class TempIE4 : UserControl
- {
- public static Panel browsingArea = new Panel();
- public static ComboBox addressbar = new ComboBox();
-
- public TempIE4()
- {
- InitializeComponent();
- browsingArea = _browsingArea;
- addressbar = _addressbar;
- }
-
- public static async void GoToPage(string url)
- {
- UserControl uc = new UserControl();
-
- switch (url)
- {
- case "www.microsoft.com/windows/ie/default.htm":
- uc = new IE4Start();
- break;
- case "www.google.com":
- uc = new GoogleHome();
- break;
- case "www.google.stanford.edu":
- uc = new GooglePrototype();
- break;
- default:
- uc = new IE4NoPage();
- break;
- }
-
- addressbar.Text = url;
- uc.Dock = DockStyle.Fill;
-
- await Task.Delay(new Random().Next(500, 1500));
-
- browsingArea.Controls.Clear();
- browsingArea.Controls.Add(uc);
- }
-
- private void TempIE4_Load(object sender, EventArgs e)
- {
- GoToPage("www.microsoft.com/windows/ie/default.htm");
- GoButton.Paint += (s, args) => Engine.Paintbrush.PaintClassicBorders(s, args, 2);
- }
-
- private void GoButton_Click(object sender, EventArgs e)
- {
- GoToPage(addressbar.Text);
- }
-
- private void _addressbar_KeyDown(object sender, KeyEventArgs e)
- {
- if (e.KeyCode == Keys.Enter)
- {
- GoButton_Click(this, new EventArgs());
- e.SuppressKeyPress = true;
- browsingArea.Focus();
- }
- }
- }
-}