doublecmd/src/fhardlink.lfm

119 lines
2.9 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'
ClientHeight = 177
ClientWidth = 512
KeyPreview = True
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '1.0.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
BorderSpacing.Top = 6
Caption = '&Link name'
FocusControl = edtLinkToCreate
ParentColor = False
end
object edtExistingFile: TEdit
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = lblExistingFile
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 25
Top = 81
Width = 500
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 6
BorderSpacing.Top = 6
BorderSpacing.Right = 6
Constraints.MinWidth = 400
TabOrder = 1
end
object edtLinkToCreate: TEdit
AnchorSideLeft.Control = Owner
AnchorSideTop.Control = lblLinkToCreate
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = Owner
AnchorSideRight.Side = asrBottom
Left = 6
Height = 25
Top = 28
Width = 500
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 6
BorderSpacing.Top = 6
BorderSpacing.Right = 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.Bottom = 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.Bottom = 6
BorderSpacing.InnerBorder = 2
Cancel = True
Caption = '&Cancel'
Constraints.MinWidth = 100
Kind = bkCancel
ModalResult = 2
TabOrder = 3
end
end