Copy.dfm 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. object CopyDialog: TCopyDialog
  2. Left = 363
  3. Top = 198
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_copy'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'CopyDialog'
  9. ClientHeight = 225
  10. ClientWidth = 511
  11. Color = clBtnFace
  12. ParentFont = True
  13. OldCreateOrder = False
  14. Position = poOwnerFormCenter
  15. OnCloseQuery = FormCloseQuery
  16. OnShow = FormShow
  17. DesignSize = (
  18. 511
  19. 225)
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object Image: TImage
  23. Left = 8
  24. Top = 11
  25. Width = 32
  26. Height = 32
  27. AutoSize = True
  28. end
  29. object DirectoryLabel: TLabel
  30. Left = 46
  31. Top = 8
  32. Width = 195
  33. Height = 13
  34. Caption = 'Copy 2 selected files to remote directory'
  35. end
  36. object LocalDirectoryEdit: THistoryComboBox
  37. Left = 46
  38. Top = 25
  39. Width = 372
  40. Height = 21
  41. AutoComplete = False
  42. Anchors = [akLeft, akTop, akRight]
  43. TabOrder = 0
  44. Text = 'LocalDirectoryEdit'
  45. OnChange = ControlChange
  46. OnExit = LocalDirectoryEditExit
  47. end
  48. object RemoteDirectoryEdit: THistoryComboBox
  49. Left = 46
  50. Top = 25
  51. Width = 456
  52. Height = 21
  53. AutoComplete = False
  54. Anchors = [akLeft, akTop, akRight]
  55. MaxLength = 1000
  56. TabOrder = 2
  57. Text = 'RemoteDirectoryEdit'
  58. OnChange = ControlChange
  59. end
  60. object OkButton: TButton
  61. Left = 260
  62. Top = 136
  63. Width = 75
  64. Height = 25
  65. Anchors = [akTop, akRight]
  66. Caption = 'OK'
  67. Default = True
  68. ModalResult = 1
  69. TabOrder = 6
  70. end
  71. object CancelButton: TButton
  72. Left = 343
  73. Top = 136
  74. Width = 75
  75. Height = 25
  76. Anchors = [akTop, akRight]
  77. Cancel = True
  78. Caption = 'Cancel'
  79. ModalResult = 2
  80. TabOrder = 7
  81. end
  82. object LocalDirectoryBrowseButton: TButton
  83. Left = 427
  84. Top = 23
  85. Width = 75
  86. Height = 25
  87. Caption = 'B&rowse...'
  88. TabOrder = 1
  89. OnClick = LocalDirectoryBrowseButtonClick
  90. end
  91. object QueueCheck2: TCheckBox
  92. Left = 12
  93. Top = 112
  94. Width = 297
  95. Height = 17
  96. Caption = 'Transfer on background (add to transfer &queue) X'
  97. TabOrder = 4
  98. OnClick = ControlChange
  99. end
  100. object HelpButton: TButton
  101. Left = 427
  102. Top = 136
  103. Width = 75
  104. Height = 25
  105. Anchors = [akTop, akRight]
  106. Caption = '&Help'
  107. TabOrder = 8
  108. OnClick = HelpButtonClick
  109. end
  110. object NeverShowAgainCheck: TCheckBox
  111. Left = 12
  112. Top = 167
  113. Width = 493
  114. Height = 17
  115. Caption = '&Do not show this dialog box again'
  116. TabOrder = 10
  117. OnClick = NeverShowAgainCheckClick
  118. end
  119. object TransferSettingsButton: TButton
  120. Left = 8
  121. Top = 136
  122. Width = 161
  123. Height = 25
  124. Caption = 'Transfer settin&gs...'
  125. Style = bsSplitButton
  126. TabOrder = 5
  127. OnClick = TransferSettingsButtonClick
  128. OnDropDownClick = TransferSettingsButtonDropDownClick
  129. end
  130. object CopyParamGroup: TGroupBox
  131. Left = 8
  132. Top = 53
  133. Width = 496
  134. Height = 50
  135. Caption = 'Transfer settings'
  136. TabOrder = 3
  137. OnClick = CopyParamGroupClick
  138. OnContextPopup = CopyParamGroupContextPopup
  139. DesignSize = (
  140. 496
  141. 50)
  142. object CopyParamLabel: TLabel
  143. Left = 7
  144. Top = 15
  145. Width = 482
  146. Height = 26
  147. Anchors = [akLeft, akTop, akRight, akBottom]
  148. AutoSize = False
  149. Caption = 'CopyParamLabel'
  150. ShowAccelChar = False
  151. WordWrap = True
  152. OnClick = CopyParamGroupClick
  153. end
  154. end
  155. object ShortCutHintPanel: TPanel
  156. Left = 0
  157. Top = 191
  158. Width = 511
  159. Height = 34
  160. Align = alBottom
  161. BevelOuter = bvNone
  162. ParentBackground = False
  163. TabOrder = 9
  164. object ShortCutHintLabel: TLabel
  165. Left = 12
  166. Top = 3
  167. Width = 490
  168. Height = 28
  169. AutoSize = False
  170. Caption =
  171. 'In Commander interface the keyboard shortcut F5 is used to trans' +
  172. 'fer files. Should you want to use it to refresh a file panel, cl' +
  173. 'ick here to go to preferences.'
  174. ShowAccelChar = False
  175. WordWrap = True
  176. OnClick = ShortCutHintLabelClick
  177. end
  178. end
  179. end