CopyLocal.dfm 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. object CopyLocalDialog: TCopyLocalDialog
  2. Left = 0
  3. Top = 0
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_copy_local'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'CopyLocalDialog'
  9. ClientHeight = 126
  10. ClientWidth = 511
  11. Color = clBtnFace
  12. ParentFont = True
  13. Position = poOwnerFormCenter
  14. OnAfterMonitorDpiChanged = FormAfterMonitorDpiChanged
  15. OnCloseQuery = FormCloseQuery
  16. OnShow = FormShow
  17. DesignSize = (
  18. 511
  19. 126)
  20. TextHeight = 15
  21. object Image: TImage
  22. Left = 8
  23. Top = 11
  24. Width = 32
  25. Height = 32
  26. AutoSize = True
  27. end
  28. object DirectoryLabel: TLabel
  29. Left = 46
  30. Top = 8
  31. Width = 63
  32. Height = 15
  33. Caption = '&Target path:'
  34. FocusControl = DirectoryEdit
  35. end
  36. object DirectoryEdit: THistoryComboBox
  37. Left = 46
  38. Top = 26
  39. Width = 371
  40. Height = 23
  41. AutoComplete = False
  42. Anchors = [akLeft, akTop, akRight]
  43. DropDownCount = 16
  44. TabOrder = 0
  45. Text = 'DirectoryEdit'
  46. OnExit = DirectoryEditExit
  47. end
  48. object OkButton: TButton
  49. Left = 251
  50. Top = 55
  51. Width = 80
  52. Height = 25
  53. Anchors = [akTop, akRight]
  54. Caption = 'OK'
  55. Default = True
  56. ModalResult = 1
  57. TabOrder = 3
  58. end
  59. object CancelButton: TButton
  60. Left = 337
  61. Top = 55
  62. Width = 80
  63. Height = 25
  64. Anchors = [akTop, akRight]
  65. Cancel = True
  66. Caption = 'Cancel'
  67. ModalResult = 2
  68. TabOrder = 4
  69. end
  70. object LocalDirectoryBrowseButton: TButton
  71. Left = 423
  72. Top = 25
  73. Width = 80
  74. Height = 25
  75. Caption = 'B&rowse...'
  76. TabOrder = 1
  77. OnClick = LocalDirectoryBrowseButtonClick
  78. end
  79. object HelpButton: TButton
  80. Left = 423
  81. Top = 55
  82. Width = 80
  83. Height = 25
  84. Anchors = [akTop, akRight]
  85. Caption = '&Help'
  86. TabOrder = 5
  87. OnClick = HelpButtonClick
  88. end
  89. object NeverShowAgainCheck: TCheckBox
  90. Left = 10
  91. Top = 59
  92. Width = 237
  93. Height = 17
  94. Caption = '&Do not show this dialog box again'
  95. TabOrder = 2
  96. end
  97. object ShortCutHintPanel: TPanel
  98. Left = 0
  99. Top = 88
  100. Width = 511
  101. Height = 38
  102. Align = alBottom
  103. BevelOuter = bvNone
  104. ParentBackground = False
  105. TabOrder = 6
  106. DesignSize = (
  107. 511
  108. 38)
  109. object ShortCutHintLabel: TLabel
  110. Left = 8
  111. Top = 3
  112. Width = 495
  113. Height = 32
  114. Anchors = [akLeft, akTop, akRight, akBottom]
  115. AutoSize = False
  116. Caption =
  117. 'In Commander interface the keyboard shortcut F5 is used to trans' +
  118. 'fer files. Should you want to use it to refresh a file panel, cl' +
  119. 'ick here to go to preferences.'
  120. ShowAccelChar = False
  121. WordWrap = True
  122. OnClick = ShortCutHintLabelClick
  123. end
  124. end
  125. end