Copy.dfm 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  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. end
  47. object RemoteDirectoryEdit: THistoryComboBox
  48. Left = 46
  49. Top = 25
  50. Width = 456
  51. Height = 21
  52. AutoComplete = False
  53. Anchors = [akLeft, akTop, akRight]
  54. MaxLength = 1000
  55. TabOrder = 2
  56. Text = 'RemoteDirectoryEdit'
  57. OnChange = ControlChange
  58. end
  59. object OkButton: TButton
  60. Left = 260
  61. Top = 136
  62. Width = 75
  63. Height = 25
  64. Anchors = [akTop, akRight]
  65. Caption = 'OK'
  66. Default = True
  67. ModalResult = 1
  68. TabOrder = 7
  69. end
  70. object CancelButton: TButton
  71. Left = 343
  72. Top = 136
  73. Width = 75
  74. Height = 25
  75. Anchors = [akTop, akRight]
  76. Cancel = True
  77. Caption = 'Cancel'
  78. ModalResult = 2
  79. TabOrder = 8
  80. end
  81. object LocalDirectoryBrowseButton: TButton
  82. Left = 427
  83. Top = 23
  84. Width = 75
  85. Height = 25
  86. Caption = 'B&rowse...'
  87. TabOrder = 1
  88. OnClick = LocalDirectoryBrowseButtonClick
  89. end
  90. object QueueCheck2: TCheckBox
  91. Left = 12
  92. Top = 112
  93. Width = 297
  94. Height = 17
  95. Caption = 'Transfer on background (add to transfer &queue) X'
  96. TabOrder = 4
  97. OnClick = ControlChange
  98. end
  99. object QueueIndividuallyCheck: TCheckBox
  100. Left = 312
  101. Top = 112
  102. Width = 193
  103. Height = 17
  104. Caption = '&Transfer each file individually'
  105. TabOrder = 5
  106. OnClick = ControlChange
  107. end
  108. object HelpButton: TButton
  109. Left = 427
  110. Top = 136
  111. Width = 75
  112. Height = 25
  113. Anchors = [akTop, akRight]
  114. Caption = '&Help'
  115. TabOrder = 9
  116. OnClick = HelpButtonClick
  117. end
  118. object NeverShowAgainCheck: TCheckBox
  119. Left = 12
  120. Top = 167
  121. Width = 493
  122. Height = 17
  123. Caption = '&Do not show this dialog box again'
  124. TabOrder = 10
  125. OnClick = NeverShowAgainCheckClick
  126. end
  127. object TransferSettingsButton: TButton
  128. Left = 8
  129. Top = 136
  130. Width = 161
  131. Height = 25
  132. Caption = 'Transfer settin&gs...'
  133. TabOrder = 6
  134. OnClick = TransferSettingsButtonClick
  135. OnDropDownClick = TransferSettingsButtonDropDownClick
  136. end
  137. object CopyParamGroup: TGroupBox
  138. Left = 8
  139. Top = 53
  140. Width = 496
  141. Height = 50
  142. Caption = 'Transfer settings'
  143. TabOrder = 3
  144. OnClick = CopyParamGroupClick
  145. OnContextPopup = CopyParamGroupContextPopup
  146. DesignSize = (
  147. 496
  148. 50)
  149. object CopyParamLabel: TLabel
  150. Left = 7
  151. Top = 15
  152. Width = 482
  153. Height = 26
  154. Anchors = [akLeft, akTop, akRight, akBottom]
  155. AutoSize = False
  156. Caption = 'CopyParamLabel'
  157. WordWrap = True
  158. OnClick = CopyParamGroupClick
  159. end
  160. end
  161. object ShortCutHintPanel: TPanel
  162. Left = 0
  163. Top = 191
  164. Width = 511
  165. Height = 34
  166. Align = alBottom
  167. BevelOuter = bvNone
  168. ParentBackground = False
  169. TabOrder = 11
  170. object ShortCutHintLabel: TLabel
  171. Left = 12
  172. Top = 3
  173. Width = 490
  174. Height = 28
  175. AutoSize = False
  176. Caption =
  177. 'In Commander interface a keyboard shortcut F5 is used to transfe' +
  178. 'r files. Should you want to use it to refresh a file panel, clic' +
  179. 'k here to go to preferences.'
  180. WordWrap = True
  181. OnClick = ShortCutHintLabelClick
  182. end
  183. end
  184. end