aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS/FullScreenLogin.vb
diff options
context:
space:
mode:
authorFloppyDiskDrive <[email protected]>2017-09-21 17:16:49 -0500
committerFloppyDiskDrive <[email protected]>2017-09-21 17:16:49 -0500
commitcf1bf85e01c8d99f052c09b72d2fb2bbbc0b99b0 (patch)
treefe0d16447fab2a74b6161b4c981c036a93ed8239 /ShiftOS/FullScreenLogin.vb
parent30b6a49d5b0e720eee131e970761ece7c6ed7ef0 (diff)
downloadshiftos-rewind-cf1bf85e01c8d99f052c09b72d2fb2bbbc0b99b0.tar.gz
shiftos-rewind-cf1bf85e01c8d99f052c09b72d2fb2bbbc0b99b0.tar.bz2
shiftos-rewind-cf1bf85e01c8d99f052c09b72d2fb2bbbc0b99b0.zip
Added the SOS code (VB and C#)
Very, very incomplete (C# isn't *remotely* complete.)
Diffstat (limited to 'ShiftOS/FullScreenLogin.vb')
-rw-r--r--ShiftOS/FullScreenLogin.vb40
1 files changed, 40 insertions, 0 deletions
diff --git a/ShiftOS/FullScreenLogin.vb b/ShiftOS/FullScreenLogin.vb
new file mode 100644
index 0000000..f9deb1b
--- /dev/null
+++ b/ShiftOS/FullScreenLogin.vb
@@ -0,0 +1,40 @@
+Public Class FullScreenLogin
+
+ Private Sub FullScreenLogin_Load(sender As Object, e As EventArgs) Handles MyBase.Load
+ Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None
+ Me.WindowState = FormWindowState.Maximized
+ setskin()
+ End Sub
+
+ Public Sub setskin()
+ Me.BackColor = Color.Black
+ Me.BackgroundImage = Skins.loginbg
+ Me.BackgroundImageLayout = Skins.loginbglayout
+ userpic.Size = New Size(Skins.userimagesize, Skins.userimagesize)
+ userpic.BackgroundImage = Skins.userimage
+ userpic.BackColor = Color.Transparent
+ userpic.BackgroundImageLayout = Skins.userimagelayout
+ If Not IsNothing(Skins.userimagelocation) Then userpic.Location = Skins.userimagelocation
+ txtusername.Location = New Point(Skins.userTextboxX, Skins.userTextBoxY)
+ txtpassword.Location = New Point(Skins.passTextBoxX, Skins.passTextBoxY)
+ loginbtn.Location = New Point(Skins.loginbtnX, Skins.loginbtnY)
+ shutdown.Location = New Point(Skins.shutdownbtnX, Skins.shutdownbtnY)
+ Me.TopMost = True
+ End Sub
+
+ Private Sub loginbtn_Click(sender As Object, e As EventArgs) Handles loginbtn.Click
+ If txtusername.Text = ShiftOSDesktop.username And txtpassword.Text = ShiftOSDesktop.password Then
+ Me.Close()
+ infobox.showinfo("Login Screen", "The Login Screen has completed with no errors!")
+ End If
+ End Sub
+
+ Private Sub Button1_Click(sender As Object, e As EventArgs) Handles shutdown.Click
+ ShiftOSDesktop.shutdownshiftos()
+ End Sub
+
+ Private Sub clearChars(sender As Object, e As MouseEventArgs) Handles txtusername.MouseDown, txtpassword.MouseDown
+ txtusername.Text = ""
+ txtpassword.Text = ""
+ End Sub
+End Class \ No newline at end of file