-
-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathprotontricksunit.lfm
More file actions
98 lines (98 loc) · 1.92 KB
/
Copy pathprotontricksunit.lfm
File metadata and controls
98 lines (98 loc) · 1.92 KB
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
object protontricksform: Tprotontricksform
Left = 400
Height = 430
Top = 250
Width = 600
Caption = 'Wine prefix manager'
ClientHeight = 430
ClientWidth = 600
Position = poScreenCenter
LCLVersion = '4.4.0.0'
OnCreate = FormCreate
object gamesListView: TListView
Left = 10
Height = 310
Top = 10
Width = 580
Anchors = [akTop, akLeft, akRight, akBottom]
Columns = <
item
Caption = 'Game'
Width = 350
end
item
Caption = 'AppID'
Width = 100
end
item
Caption = 'Windows Version'
Width = 100
end>
ReadOnly = True
RowSelect = True
TabOrder = 0
ViewStyle = vsReport
OnSelectItem = gamesListViewSelectItem
end
object statusLabel: TLabel
Left = 10
Height = 1
Top = 345
Width = 580
Anchors = [akLeft, akRight, akBottom]
Font.Color = clSilver
ParentFont = False
end
object applyProgressBar: TProgressBar
Left = 10
Height = 14
Top = 350
Width = 580
Anchors = [akLeft, akRight, akBottom]
Style = pbstMarquee
TabOrder = 4
Visible = False
end
object winVerComboBox: TComboBox
Left = 10
Height = 32
Top = 381
Width = 150
Anchors = [akLeft, akBottom]
ItemHeight = 24
Items.Strings = (
'win11'
'win10'
'win81'
'win8'
'win7'
'winvista'
'winxp'
)
ParentShowHint = False
ShowHint = True
Style = csDropDownList
TabOrder = 1
TextHint = 'Windows Version'
end
object applyButton: TButton
Left = 170
Height = 33
Top = 380
Width = 100
Anchors = [akLeft, akBottom]
Caption = 'Apply'
TabOrder = 2
OnClick = applyButtonClick
end
object closeButton: TButton
Left = 490
Height = 33
Top = 380
Width = 100
Anchors = [akRight, akBottom]
Caption = 'Close'
TabOrder = 3
OnClick = closeButtonClick
end
end