diff options
| author | lempamo <[email protected]> | 2017-07-27 00:25:37 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-07-27 00:25:37 -0400 |
| commit | b56050694f6473b13807a10d39881591e0f0f469 (patch) | |
| tree | 416ef18ac065815a0456a67998e739b80d63f550 /TimeHACK.Main | |
| parent | 27b0ef74642e98bf8c9a83d2700e7ce6643e3114 (diff) | |
| download | histacom2-b56050694f6473b13807a10d39881591e0f0f469.tar.gz histacom2-b56050694f6473b13807a10d39881591e0f0f469.tar.bz2 histacom2-b56050694f6473b13807a10d39881591e0f0f469.zip | |
the files thing, will fix in morning
Diffstat (limited to 'TimeHACK.Main')
| -rw-r--r-- | TimeHACK.Main/GlobalPrograms/WinClassicDownloader.cs | 4 | ||||
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95.Designer.cs | 8 | ||||
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95.cs | 2 | ||||
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs | 4 | ||||
| -rw-r--r-- | TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs | 4 | ||||
| -rw-r--r-- | TimeHACK.Main/Properties/Resources.Designer.cs | 42 | ||||
| -rw-r--r-- | TimeHACK.Main/Properties/Resources.resx | 12 | ||||
| -rw-r--r-- | TimeHACK.Main/Resources/WinClassic/Win95File.png | bin | 0 -> 236 bytes | |||
| -rw-r--r-- | TimeHACK.Main/Resources/WinClassic/WinClassicApp.png | bin | 0 -> 148 bytes | |||
| -rw-r--r-- | TimeHACK.Main/Resources/WinClassic/WinClassicMinesweeper.png | bin | 0 -> 309 bytes | |||
| -rw-r--r-- | TimeHACK.Main/TimeHACK.Main.csproj | 3 |
11 files changed, 54 insertions, 25 deletions
diff --git a/TimeHACK.Main/GlobalPrograms/WinClassicDownloader.cs b/TimeHACK.Main/GlobalPrograms/WinClassicDownloader.cs index ce71b40..0237fac 100644 --- a/TimeHACK.Main/GlobalPrograms/WinClassicDownloader.cs +++ b/TimeHACK.Main/GlobalPrograms/WinClassicDownloader.cs @@ -38,10 +38,10 @@ namespace TimeHACK.OS.Win95.Win95Apps switch (appName.Text) { case "Downloading: FTP Client": - CreateWindowsFile(Path.Combine(ProfileWindowsDirectory, "Desktop", "FTP Client setup.exe"), "ftp client setup"); + CreateWindowsFile(Path.Combine(ProfileWindowsDirectory, "Desktop"), "FTP Client Setup.exe", "ftp client setup"); break; case "Downloading: Web Chat 1998": - CreateWindowsFile(Path.Combine(ProfileWindowsDirectory, "Desktop", "Web Chat Setup.exe"), "web chat setup"); + CreateWindowsFile(Path.Combine(ProfileWindowsDirectory, "Desktop"), "Web Chat Setup.exe", "web chat setup"); break; } /* if (appName.Text == "Downloading: Guess The Number") diff --git a/TimeHACK.Main/OS/Win95/Win95.Designer.cs b/TimeHACK.Main/OS/Win95/Win95.Designer.cs index df05e65..49bfba6 100644 --- a/TimeHACK.Main/OS/Win95/Win95.Designer.cs +++ b/TimeHACK.Main/OS/Win95/Win95.Designer.cs @@ -434,7 +434,7 @@ namespace TimeHACK.OS.Win95 this.MinsweeperToolStripMenuItem.BackColor = System.Drawing.Color.Silver; this.MinsweeperToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; this.MinsweeperToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.MinsweeperToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.minsweeper_logo; + this.MinsweeperToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicMinesweeper; this.MinsweeperToolStripMenuItem.Name = "MinsweeperToolStripMenuItem"; this.MinsweeperToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.MinsweeperToolStripMenuItem.Text = "Minesweeper"; @@ -963,9 +963,9 @@ namespace TimeHACK.OS.Win95 this.desktopImages.Images.SetKeyName(5, "WinClassicNetworking.png"); this.desktopImages.Images.SetKeyName(6, "WinClassicOutlook.png"); this.desktopImages.Images.SetKeyName(7, "WinClassicRecycle.png"); - this.desktopImages.Images.SetKeyName(8, "WinClassicSetup.png"); - this.desktopImages.Images.SetKeyName(9, "WinClassicSetup.png"); - this.desktopImages.Images.SetKeyName(10, "WinClassicSetup.png"); + this.desktopImages.Images.SetKeyName(8, "Win95File.png"); + this.desktopImages.Images.SetKeyName(9, "WinClassicFolder.png"); + this.desktopImages.Images.SetKeyName(10, "WinClassicApp.png"); this.desktopImages.Images.SetKeyName(11, "WinClassicSetup.png"); this.desktopImages.Images.SetKeyName(12, "blank-file-Windows95Icon.gif"); // diff --git a/TimeHACK.Main/OS/Win95/Win95.cs b/TimeHACK.Main/OS/Win95/Win95.cs index caef618..3279967 100644 --- a/TimeHACK.Main/OS/Win95/Win95.cs +++ b/TimeHACK.Main/OS/Win95/Win95.cs @@ -574,7 +574,7 @@ namespace TimeHACK.OS.Win95 private void MinsweeperToolStripMenuItem_Click(object sender, EventArgs e) { - WinClassic app = wm.StartWin95(new WinClassicMinesweeper(), "Minesweeper", Properties.Resources.minsweeper_logo, false, false); + WinClassic app = wm.StartWin95(new WinClassicMinesweeper(), "Minesweeper", Properties.Resources.WinClassicMinesweeper, false, false); AddTaskBarItem(app, app.Tag.ToString(), "Calculator", Properties.Resources.WinClassicCalc); nonimportantapps.Add(app); diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs index 4b0157e..7c999c8 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs @@ -93,14 +93,14 @@ namespace TimeHACK.OS.Win95.Win95Apps if (returnYesIfProtected == true) { - if (toRead.Isprotected == true) + if (toRead.IsProtected == true) { return "yes"; } } else { - return toRead.label; + return toRead.Label; } return Val; } diff --git a/TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs b/TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs index ef28bca..290d2f2 100644 --- a/TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs +++ b/TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs @@ -110,14 +110,14 @@ namespace TimeHACK.OS.Win95.Win95Apps if (returnYesIfProtected == true) { - if (toRead.Isprotected == true) + if (toRead.IsProtected == true) { return "yes"; } } else { - return toRead.label; + return toRead.Label; } return Val; } diff --git a/TimeHACK.Main/Properties/Resources.Designer.cs b/TimeHACK.Main/Properties/Resources.Designer.cs index c4e9524..4abab30 100644 --- a/TimeHACK.Main/Properties/Resources.Designer.cs +++ b/TimeHACK.Main/Properties/Resources.Designer.cs @@ -378,16 +378,6 @@ namespace TimeHACK.Properties { /// <summary> /// Looks up a localized resource of type System.Drawing.Bitmap. /// </summary> - internal static System.Drawing.Bitmap minsweeper_logo { - get { - object obj = ResourceManager.GetObject("minsweeper logo", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// <summary> - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// </summary> internal static System.Drawing.Bitmap minsweeper_sad { get { object obj = ResourceManager.GetObject("minsweeper_sad", resourceCulture); @@ -400,7 +390,7 @@ namespace TimeHACK.Properties { /// </summary> internal static System.Drawing.Bitmap minsweeper_smile { get { - object obj = ResourceManager.GetObject("minsweeper smile", resourceCulture); + object obj = ResourceManager.GetObject("minsweeper_smile", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } @@ -787,6 +777,16 @@ namespace TimeHACK.Properties { /// <summary> /// Looks up a localized resource of type System.Drawing.Bitmap. /// </summary> + internal static System.Drawing.Bitmap Win95File { + get { + object obj = ResourceManager.GetObject("Win95File", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> internal static System.Drawing.Bitmap Win95HardDiskIcon { get { object obj = ResourceManager.GetObject("Win95HardDiskIcon", resourceCulture); @@ -1024,6 +1024,16 @@ namespace TimeHACK.Properties { /// <summary> /// Looks up a localized resource of type System.Drawing.Bitmap. /// </summary> + internal static System.Drawing.Bitmap WinClassicApp { + get { + object obj = ResourceManager.GetObject("WinClassicApp", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> internal static System.Drawing.Bitmap WinClassicCalc { get { object obj = ResourceManager.GetObject("WinClassicCalc", resourceCulture); @@ -1204,6 +1214,16 @@ namespace TimeHACK.Properties { /// <summary> /// Looks up a localized resource of type System.Drawing.Bitmap. /// </summary> + internal static System.Drawing.Bitmap WinClassicMinesweeper { + get { + object obj = ResourceManager.GetObject("WinClassicMinesweeper", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> internal static System.Drawing.Bitmap WinClassicMSN { get { object obj = ResourceManager.GetObject("WinClassicMSN", resourceCulture); diff --git a/TimeHACK.Main/Properties/Resources.resx b/TimeHACK.Main/Properties/Resources.resx index 779be5c..7a96a19 100644 --- a/TimeHACK.Main/Properties/Resources.resx +++ b/TimeHACK.Main/Properties/Resources.resx @@ -148,7 +148,7 @@ <data name="WinClassicNew" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\Resources\WinClassic\WinClassicNew.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> - <data name="minsweeper smile" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <data name="minsweeper_smile" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\Resources\minsweeper smile.PNG;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> <data name="WinClassicAddressBookDeleteIcon" type="System.Resources.ResXFileRef, System.Windows.Forms"> @@ -681,7 +681,13 @@ <data name="ie4_mail" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\Resources\ie4_mail.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> - <data name="minsweeper logo" type="System.Resources.ResXFileRef, System.Windows.Forms"> - <value>..\Resources\minsweeper logo.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + <data name="Win95File" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\Win95File.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinClassicApp" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinClassicApp.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinClassicMinesweeper" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinClassicMinesweeper.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> </root>
\ No newline at end of file diff --git a/TimeHACK.Main/Resources/WinClassic/Win95File.png b/TimeHACK.Main/Resources/WinClassic/Win95File.png Binary files differnew file mode 100644 index 0000000..ada2ccd --- /dev/null +++ b/TimeHACK.Main/Resources/WinClassic/Win95File.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicApp.png b/TimeHACK.Main/Resources/WinClassic/WinClassicApp.png Binary files differnew file mode 100644 index 0000000..5d954ac --- /dev/null +++ b/TimeHACK.Main/Resources/WinClassic/WinClassicApp.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicMinesweeper.png b/TimeHACK.Main/Resources/WinClassic/WinClassicMinesweeper.png Binary files differnew file mode 100644 index 0000000..c528175 --- /dev/null +++ b/TimeHACK.Main/Resources/WinClassic/WinClassicMinesweeper.png diff --git a/TimeHACK.Main/TimeHACK.Main.csproj b/TimeHACK.Main/TimeHACK.Main.csproj index 77192ec..c6433e0 100644 --- a/TimeHACK.Main/TimeHACK.Main.csproj +++ b/TimeHACK.Main/TimeHACK.Main.csproj @@ -572,6 +572,7 @@ <None Include="Resources\WinClassic\Win95ComputerIcon.png" /> <None Include="Resources\WinClassic\Win95NetworkIcon.png" /> <None Include="Resources\WinClassic\Win95RecycleIcon.png" /> + <None Include="Resources\WinClassic\Win95File.png" /> <Content Include="Resources\WinClassic\Win95SideBar.png" /> <Content Include="Resources\WinClassic\Win95Start.wav" /> <None Include="Resources\WinClassic\Win95Warning.png" /> @@ -582,6 +583,7 @@ <None Include="Resources\WinClassic\Win98Computer.png" /> <None Include="Resources\WinClassic\Win98Start.wav" /> <None Include="Resources\WinClassic\Win98Stop.WAV" /> + <None Include="Resources\WinClassic\WinClassicApp.png" /> <Content Include="Resources\WinClassic\WinClassicClock.png" /> <Content Include="Resources\WinClassic\WinClassicComputer.png" /> <None Include="Resources\WinClassic\WinClassicCopy.png" /> @@ -599,6 +601,7 @@ <Content Include="Resources\WinClassic\WinClassicIE4.png" /> <Content Include="Resources\WinClassic\WinClassicInbox.png" /> <None Include="Resources\WinClassic\WinClassicInstallPic.png" /> + <None Include="Resources\WinClassic\WinClassicMinesweeper.png" /> <Content Include="Resources\WinClassic\WinClassicMSN.png" /> <Content Include="Resources\WinClassic\WinClassicNetworking.png" /> <None Include="Resources\WinClassic\WinClassicNotepad.png" /> |
