Copy.dfm 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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 = 6
  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 = 7
  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 HelpButton: TButton
  100. Left = 427
  101. Top = 136
  102. Width = 75
  103. Height = 25
  104. Anchors = [akTop, akRight]
  105. Caption = '&Help'
  106. TabOrder = 8
  107. OnClick = HelpButtonClick
  108. end
  109. object NeverShowAgainCheck: TCheckBox
  110. Left = 12
  111. Top = 167
  112. Width = 493
  113. Height = 17
  114. Caption = '&Do not show this dialog box again'
  115. TabOrder = 10
  116. OnClick = NeverShowAgainCheckClick
  117. end
  118. object TransferSettingsButton: TButton
  119. Left = 8
  120. Top = 136
  121. Width = 161
  122. Height = 25
  123. Caption = 'Transfer settin&gs...'
  124. Style = bsSplitButton
  125. TabOrder = 5
  126. OnClick = TransferSettingsButtonClick
  127. OnDropDownClick = TransferSettingsButtonDropDownClick
  128. end
  129. object CopyParamGroup: TGroupBox
  130. Left = 8
  131. Top = 53
  132. Width = 496
  133. Height = 50
  134. Caption = 'Transfer settings'
  135. TabOrder = 3
  136. OnClick = CopyParamGroupClick
  137. OnContextPopup = CopyParamGroupContextPopup
  138. DesignSize = (
  139. 496
  140. 50)
  141. object CopyParamLabel: TLabel
  142. Left = 7
  143. Top = 15
  144. Width = 482
  145. Height = 26
  146. Anchors = [akLeft, akTop, akRight, akBottom]
  147. AutoSize = False
  148. Caption = 'CopyParamLabel'
  149. ShowAccelChar = False
  150. WordWrap = True
  151. OnClick = CopyParamGroupClick
  152. end
  153. end
  154. object ShortCutHintPanel: TPanel
  155. Left = 0
  156. Top = 191
  157. Width = 511
  158. Height = 34
  159. Align = alBottom
  160. BevelOuter = bvNone
  161. ParentBackground = False
  162. TabOrder = 9
  163. object ShortCutHintLabel: TLabel
  164. Left = 12
  165. Top = 3
  166. Width = 490
  167. Height = 28
  168. AutoSize = False
  169. Caption =
  170. 'In Commander interface a keyboard shortcut F5 is used to transfe' +
  171. 'r files. Should you want to use it to refresh a file panel, clic' +
  172. 'k here to go to preferences.'
  173. ShowAccelChar = False
  174. WordWrap = True
  175. OnClick = ShortCutHintLabelClick
  176. end
  177. end
  178. end