-
Notifications
You must be signed in to change notification settings - Fork 1
/
umainform.lfm
88 lines (88 loc) · 2.02 KB
/
umainform.lfm
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
object MainForm: TMainForm
Left = 300
Height = 526
Top = 250
Width = 390
Caption = 'LootProp Maker'
ClientHeight = 526
ClientWidth = 390
OnCreate = FormCreate
Position = poDefault
LCLVersion = '2.3.0.0'
object WarningsListBox: TListBox
AnchorSideTop.Control = CreateLootpropsButton
AnchorSideTop.Side = asrBottom
Left = 0
Height = 309
Top = 217
Width = 390
Align = alBottom
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Top = 24
ItemHeight = 0
TabOrder = 0
end
object SelectDirectoryButton: TButton
Left = 16
Height = 25
Top = 16
Width = 216
Caption = 'Select Equipments Directory…'
OnClick = SelectDirectoryButtonClick
TabOrder = 1
end
object ProbabilityInput: TFloatSpinEditEx
Left = 16
Height = 23
Top = 112
Width = 103
MaxLength = 0
TabOrder = 2
MaxValue = 100
Value = 10
Precision = 2
end
object SelectedDirectoryPathLabel: TLabel
AnchorSideTop.Control = SelectDirectoryButton
AnchorSideTop.Side = asrBottom
Left = 16
Height = 15
Top = 45
Width = 112
BorderSpacing.Top = 4
Caption = 'ChosenDirectoryPath'
end
object ProbabilityInputLabel: TLabel
AnchorSideBottom.Control = ProbabilityInput
Left = 16
Height = 15
Top = 93
Width = 83
Anchors = [akLeft, akBottom]
BorderSpacing.Bottom = 4
Caption = 'Probability in %'
end
object CreateLootpropsButton: TButton
AnchorSideTop.Side = asrBottom
Left = 16
Height = 25
Top = 168
Width = 216
Caption = 'Create Lootprops.ini'
OnClick = CreateLootpropsButtonClick
TabOrder = 3
end
object SelectDirectoryDialog: TSelectDirectoryDialog
Title = 'Select Freelancer EQUIPMENT directory'
Left = 248
Top = 16
end
object SaveLootpropsDialog: TSaveDialog
Title = 'Save LootProps '
FileName = 'LootProps.ini'
Filter = '.ini'
Options = [ofOverwritePrompt, ofEnableSizing, ofDontAddToRecent, ofViewDetail]
Left = 248
Top = 168
end
end