forked from doublecmd/doublecmd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfhardlink.lfm
110 lines (110 loc) · 2.64 KB
/
fhardlink.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
object frmHardLink: TfrmHardLink
Left = 320
Height = 177
Top = 320
Width = 512
ActiveControl = edtLinkToCreate
AutoSize = True
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Create hard link'
ChildSizing.LeftRightSpacing = 6
ChildSizing.TopBottomSpacing = 6
ClientHeight = 177
ClientWidth = 512
KeyPreview = True
OnShow = FormShow
Position = poOwnerFormCenter
LCLVersion = '1.8.4.0'
object lblExistingFile: TLabel
AnchorSideLeft.Control = edtExistingFile
AnchorSideTop.Control = edtLinkToCreate
AnchorSideTop.Side = asrBottom
Left = 6
Height = 16
Top = 59
Width = 240
BorderSpacing.Top = 6
Caption = '&Destination that the link will point to'
FocusControl = edtExistingFile
ParentColor = False
end
object lblLinkToCreate: TLabel
AnchorSideLeft.Control = edtLinkToCreate
AnchorSideTop.Control = Owner
Left = 6
Height = 16
Top = 6
Width = 69
Caption = '&Link name'
FocusControl = edtLinkToCreate
ParentColor = False
end
object edtExistingFile: TEdit
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = lblExistingFile
AnchorSideTop.Side = asrBottom
AnchorSideRight.Side = asrBottom
Left = 6
Height = 25
Top = 81
Width = 500
BorderSpacing.Top = 6
Constraints.MinWidth = 400
TabOrder = 1
end
object edtLinkToCreate: TEdit
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = lblLinkToCreate
AnchorSideTop.Side = asrBottom
AnchorSideRight.Side = asrBottom
Left = 6
Height = 25
Top = 28
Width = 500
BorderSpacing.Top = 6
Constraints.MinWidth = 400
TabOrder = 0
end
object btnOK: TBitBtn
AnchorSideTop.Control = edtExistingFile
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = btnCancel
Left = 300
Height = 36
Top = 118
Width = 100
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Top = 12
BorderSpacing.Right = 6
BorderSpacing.InnerBorder = 2
Caption = '&OK'
Constraints.MinWidth = 100
Default = True
Kind = bkOK
ModalResult = 1
OnClick = btnOKClick
TabOrder = 2
end
object btnCancel: TBitBtn
AnchorSideTop.Control = edtExistingFile
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = edtExistingFile
AnchorSideRight.Side = asrBottom
Left = 406
Height = 36
Top = 118
Width = 100
Anchors = [akTop, akRight]
AutoSize = True
BorderSpacing.Top = 12
BorderSpacing.InnerBorder = 2
Cancel = True
Caption = '&Cancel'
Constraints.MinWidth = 100
Kind = bkCancel
ModalResult = 2
TabOrder = 3
end
end