From 9a68e5ed46f76d4ddda94c234a65a757797bdae9 Mon Sep 17 00:00:00 2001 From: lempamo Date: Tue, 1 Aug 2017 14:10:19 -0400 Subject: Replaced IE4 --- TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.cs | 76 ----------------------------- 1 file changed, 76 deletions(-) delete mode 100644 TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.cs (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.cs') 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(); - } - } - } -} -- cgit v1.2.3