Copy.dfm 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  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 = 235
  10. ClientWidth = 567
  11. Color = clBtnFace
  12. ParentFont = True
  13. Position = poOwnerFormCenter
  14. OnAfterMonitorDpiChanged = FormAfterMonitorDpiChanged
  15. OnCloseQuery = FormCloseQuery
  16. OnShow = FormShow
  17. DesignSize = (
  18. 567
  19. 235)
  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 = 212
  32. Height = 15
  33. Caption = 'Copy 2 selected files to remote directory'
  34. end
  35. object LocalDirectoryEdit: THistoryComboBox
  36. Left = 46
  37. Top = 26
  38. Width = 427
  39. Height = 23
  40. AutoComplete = False
  41. Anchors = [akLeft, akTop, akRight]
  42. DropDownCount = 16
  43. TabOrder = 0
  44. Text = 'LocalDirectoryEdit'
  45. OnChange = ControlChange
  46. OnExit = LocalDirectoryEditExit
  47. end
  48. object RemoteDirectoryEdit: THistoryComboBox
  49. Left = 46
  50. Top = 26
  51. Width = 513
  52. Height = 23
  53. AutoComplete = False
  54. Anchors = [akLeft, akTop, akRight]
  55. DropDownCount = 16
  56. MaxLength = 1000
  57. TabOrder = 2
  58. Text = 'RemoteDirectoryEdit'
  59. OnChange = ControlChange
  60. end
  61. object OkButton: TButton
  62. Left = 307
  63. Top = 143
  64. Width = 80
  65. Height = 25
  66. Anchors = [akTop, akRight]
  67. Caption = 'OK'
  68. Default = True
  69. ModalResult = 1
  70. TabOrder = 6
  71. OnDropDownClick = OkButtonDropDownClick
  72. end
  73. object CancelButton: TButton
  74. Left = 393
  75. Top = 143
  76. Width = 80
  77. Height = 25
  78. Anchors = [akTop, akRight]
  79. Cancel = True
  80. Caption = 'Cancel'
  81. ModalResult = 2
  82. TabOrder = 7
  83. end
  84. object LocalDirectoryBrowseButton: TButton
  85. Left = 479
  86. Top = 25
  87. Width = 80
  88. Height = 25
  89. Anchors = [akTop, akRight]
  90. Caption = 'B&rowse...'
  91. TabOrder = 1
  92. OnClick = LocalDirectoryBrowseButtonClick
  93. end
  94. object QueueCheck2: TCheckBox
  95. Left = 10
  96. Top = 120
  97. Width = 317
  98. Height = 17
  99. Caption = 'Transfer in &background (add to transfer queue) X'
  100. TabOrder = 4
  101. OnClick = ControlChange
  102. end
  103. object HelpButton: TButton
  104. Left = 479
  105. Top = 143
  106. Width = 80
  107. Height = 25
  108. Anchors = [akTop, akRight]
  109. Caption = '&Help'
  110. TabOrder = 8
  111. OnClick = HelpButtonClick
  112. end
  113. object NeverShowAgainCheck: TCheckBox
  114. Left = 10
  115. Top = 174
  116. Width = 253
  117. Height = 17
  118. Caption = '&Do not show this dialog box again'
  119. TabOrder = 10
  120. OnClick = NeverShowAgainCheckClick
  121. end
  122. object TransferSettingsButton: TButton
  123. Left = 8
  124. Top = 143
  125. Width = 175
  126. Height = 25
  127. Caption = 'Transfer settin&gs...'
  128. Style = bsSplitButton
  129. TabOrder = 5
  130. OnClick = TransferSettingsButtonClick
  131. OnDropDownClick = TransferSettingsButtonDropDownClick
  132. end
  133. object CopyParamGroup: TGroupBox
  134. Left = 8
  135. Top = 55
  136. Width = 551
  137. Height = 59
  138. Anchors = [akLeft, akTop, akRight]
  139. Caption = 'Transfer settings'
  140. TabOrder = 3
  141. OnClick = CopyParamGroupClick
  142. OnContextPopup = CopyParamGroupContextPopup
  143. DesignSize = (
  144. 551
  145. 59)
  146. object CopyParamLabel: TLabel
  147. Left = 9
  148. Top = 20
  149. Width = 533
  150. Height = 35
  151. Anchors = [akLeft, akTop, akRight, akBottom]
  152. AutoSize = False
  153. Caption = 'CopyParamLabel'
  154. ShowAccelChar = False
  155. WordWrap = True
  156. OnClick = CopyParamGroupClick
  157. end
  158. end
  159. object ShortCutHintPanel: TPanel
  160. Left = 0
  161. Top = 197
  162. Width = 567
  163. Height = 38
  164. Align = alBottom
  165. BevelOuter = bvNone
  166. ParentBackground = False
  167. TabOrder = 9
  168. DesignSize = (
  169. 567
  170. 38)
  171. object ShortCutHintLabel: TLabel
  172. Left = 8
  173. Top = 3
  174. Width = 551
  175. Height = 32
  176. Anchors = [akLeft, akTop, akRight, akBottom]
  177. AutoSize = False
  178. Caption =
  179. 'In Commander interface the keyboard shortcut F5 is used to trans' +
  180. 'fer files. Should you want to use it to refresh a file panel, cl' +
  181. 'ick here to go to preferences.'
  182. ShowAccelChar = False
  183. WordWrap = True
  184. OnClick = ShortCutHintLabelClick
  185. end
  186. end
  187. object OkMenu: TPopupMenu
  188. Left = 456
  189. Top = 69
  190. object DownloadItem: TMenuItem
  191. Caption = '&Download'
  192. Default = True
  193. OnClick = DownloadItemClick
  194. end
  195. object ExploreItem: TMenuItem
  196. Caption = '&Explore'
  197. OnClick = ExploreItemClick
  198. end
  199. end
  200. end