-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmPartitions.form
100 lines (99 loc) · 3.78 KB
/
frmPartitions.form
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# Gambas Form File 2.0
{ Form Form
MoveScaled(4,6,90.5,78.25)
Font = Font["Luxi Sans"]
Background = &HFFFFFF&
Text = ("")
Border = Window.None
Arrangement = Arrange.Horizontal
{ ScrollView1 ScrollView
MoveScaled(1,2,59,66)
Background = &HDFFFFF&
Expand = True
ScrollBar = Scroll.Vertical
{ TextLabel1 TextLabel
MoveScaled(0,0,68,50)
Font = Font["Luxi Sans,14"]
Background = &HDFFFFF&
Padding = 10
AutoResize = True
Text = ("<center><h3><b>Available partitioning modes:</b></h3></center>\n\n<b><u>Automatic partitioning:</u></b> The installer will handle all partition related decisions for you:\n<ul>\n<li><b>Full disk:</b> Choose this option if you want to use your entire hard disk for VL. <font color=\"#FF0000\">WARNING: this option will DELETE everything on your hard disk, or offer a choice if there are multiple disks. You have been WARNED.</font></li>\n<li><b>Unpartitioned space:</b> using available free (unpartitioned) disk space.</li>\n</ul>\n<b><u>Manual partitioning:</u></b> You have full control of partitioning.\n<ul>\n<li><b>Using gparted</b> (the advanced graphical partitioner).</li>\n<li><b>Using cfdisk</b> (the traditional partition tool).</li>\n</ul>\n<b><u>Other partitioning:</u></b>\n<ul>\n<li><b>Preset strategies:</b> auto allocates partitions according to most common usage strategy intended for this computer.</li>\n<li><b>No partitioning:</b> If you wish to use existing Linux and swap partitions. <font color=\"#FF0000\">WARNING: The existing Linux partitions will be OVERWRITTEN. You have been WARNED.</font></li>\n</ul>\n")
}
}
{ VBox1 VBox
MoveScaled(61,1,29,68)
Font = Font["Luxi Sans"]
{ lblSubTitle Label
MoveScaled(0,0,29,4)
Font = Font["Luxi Sans,Bold,12"]
Background = &H0055FF&
Text = ("Partitioning mode")
Alignment = Align.Center
Border = Border.Etched
}
{ Panel1 Panel
MoveScaled(0,4,29,62)
Font = Font["Luxi Sans"]
Background = &H0055FF&
Expand = True
Border = Border.Etched
{ Frame1 Frame
MoveScaled(2,1,25,15)
Font = Font["Luxi Sans,14"]
Text = ("Automatic")
{ btnFullDisk Button
MoveScaled(1,3,23,5)
Font = Font["Luxi Sans,14"]
Background = Color.ButtonBackground
Foreground = Color.ButtonForeground
Text = ("Full disk")
}
{ btnUnpartSpace Button
MoveScaled(1,9,23,5)
Font = Font["Luxi Sans,14"]
Background = Color.ButtonBackground
Foreground = Color.ButtonForeground
Text = ("Unpartitioned space")
}
}
{ Frame2 Frame
MoveScaled(2,16,25,15)
Font = Font["Luxi Sans,14"]
Text = ("Manual")
{ btnGParted Button
MoveScaled(1,3,23,5)
Font = Font["Luxi Sans,14"]
Background = Color.ButtonBackground
Foreground = Color.ButtonForeground
Text = ("GParted")
}
{ btnCfdisk Button
MoveScaled(1,9,23,5)
Font = Font["Luxi Sans,14"]
Background = Color.ButtonBackground
Foreground = Color.ButtonForeground
Text = ("cfdisk")
}
}
{ Frame3 Frame
MoveScaled(2,31,25,15)
Font = Font["Luxi Sans,14"]
Text = ("Others")
{ btnPreset Button
MoveScaled(1,3,23,5)
Font = Font["Luxi Sans,14"]
Background = Color.ButtonBackground
Foreground = Color.ButtonForeground
Text = ("Preset strategies")
}
{ btnNoPart Button
MoveScaled(1,9,23,5)
Font = Font["Luxi Sans,14"]
Background = Color.ButtonBackground
Foreground = Color.ButtonForeground
Text = ("No partitioning")
}
}
}
}
}