Copy.dfm 4.6 KB

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