Copy.dfm 4.1 KB

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