aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS-TheRevival/MainForms/WindowManager/DualWindowManager/DuWM_Main.vb
blob: f3985a909bd9346b6116e567bd392889faffe0fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
Module DuWM_Main
    Public IsDual As Boolean

    Public Sub DuWM_FirstWindowSet(WindowName As Form)
        WindowName.Height = Desktop.Height - 20
        WindowName.Width = (Desktop.Width / 2) - 20
        WindowName.Location = New Point(10, 10)
    End Sub

    Public Sub DuWM_SecondWindowSet(WindowName As Form)
        WindowName.Show()
        WindowName.Height = Desktop.Height - 20
        WindowName.Width = (Desktop.Width / 2) - 20
        WindowName.Location = New Point((Desktop.Width / 2) + 10, 10)
    End Sub

    'Public Sub DuWM_GenerateWindowSet(WindowName As Form, PID As Integer)
    '    Dim NewWContainer As New DuWM_WindowContainer
    '    NewWContainer.Width = (Desktop.Width / 2) - 10
    '    NewWContainer.Height = Desktop.Height - 20
    '    NewWContainer.ChildForm = WindowName
    '    NewWContainer.ChildForm.TopLevel = False
    '    NewWContainer.ChildForm.FormBorderStyle = FormBorderStyle.None
    '    NewWContainer.ChildForm.Size = New Size((Desktop.Width / 2) - 10, Desktop.Height - 20)
    '    Select Case PID
    '        Case 0
    '            NewWContainer.Location = New Point(10, 10)
    '        Case 1
    '            NewWContainer.Location = New Point((Desktop.Width / 2) + 10, 10)
    '    End Select
    '    NewWContainer.ChildForm.WindowState = FormWindowState.Normal
    '    NewWContainer.ChildForm.Visible = False
    '    NewWContainer.DuWM_ContainerPanel.Controls.Add(NewWContainer.ChildForm)
    '    Select Case NewWContainer.ChildForm.Visible
    '        Case False
    '            NewWContainer.ChildForm.Visible = True
    '        Case Else
    '            NewWContainer.ChildForm.Visible = False
    '    End Select
    '    Dim WindowNameStr As String = Convert.ToString(WindowName)
    '    Select Case WindowNameStr
    '        Case "Console"
    '            NewWContainer.DuWM_PID = 0
    '            Strings.ProcessID(0) = 1
    '        Case "Shifter"
    '            NewWContainer.DuWM_PID = 1
    '            Strings.ProcessID(1) = 1
    '    End Select
    '    NewWContainer.Show()
    '    NewWContainer.DuWM_WMCheck.Start()
    'End Sub

    'Public Sub DuWM_KillAllWindow()
    '    Strings.ProcessID(0) = 0
    '    Strings.ProcessID(1) = 0
    'End Sub
End Module