mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
110 lines
2.6 KiB
Text
110 lines
2.6 KiB
Text
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
|