-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #89 from Owen2k6/1.5
PRing what we have so far to Latest. No release will be made at this time.
- Loading branch information
Showing
74 changed files
with
3,017 additions
and
977 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using IL2CPU.API.Attribs; | ||
using PrismAPI.Graphics; | ||
using PrismAPI.UI; | ||
|
||
namespace GoOS.GUI.Apps | ||
{ | ||
public class About : Window | ||
{ | ||
public About() | ||
{ | ||
// Create the window. | ||
Contents = new Canvas(200, 180); | ||
Title = "About this GoPC"; | ||
Visible = true; | ||
Closable = true; | ||
Sizable = false; | ||
SetDock(WindowDock.Auto); | ||
// Paint the window. | ||
Contents.DrawImage(0, 0, Resources.abtbg, false); | ||
Contents.DrawString(50, 150, "(Version " + Kernel.version + ")", Resources.Font_1x, Color.White); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.