Copy.dfm 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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 = 359
  10. ClientWidth = 511
  11. Color = clBtnFace
  12. Font.Charset = DEFAULT_CHARSET
  13. Font.Color = clWindowText
  14. Font.Height = -11
  15. Font.Name = 'MS Sans Serif'
  16. Font.Style = []
  17. OldCreateOrder = False
  18. Position = poMainFormCenter
  19. OnCloseQuery = FormCloseQuery
  20. OnShow = FormShow
  21. DesignSize = (
  22. 511
  23. 359)
  24. PixelsPerInch = 96
  25. TextHeight = 13
  26. object DirectoryLabel: TLabel
  27. Left = 8
  28. Top = 8
  29. Width = 187
  30. Height = 13
  31. Caption = 'Copy 2 selected files to remote directory'
  32. end
  33. object LocalDirectoryEdit: THistoryComboBox
  34. Left = 8
  35. Top = 25
  36. Width = 410
  37. Height = 21
  38. Anchors = [akLeft, akTop, akRight]
  39. ItemHeight = 13
  40. TabOrder = 0
  41. Text = 'LocalDirectoryEdit'
  42. OnChange = ControlChange
  43. end
  44. object RemoteDirectoryEdit: THistoryComboBox
  45. Left = 8
  46. Top = 25
  47. Width = 494
  48. Height = 21
  49. AutoComplete = False
  50. Anchors = [akLeft, akTop, akRight]
  51. ItemHeight = 13
  52. MaxLength = 1000
  53. TabOrder = 2
  54. Text = 'RemoteDirectoryEdit'
  55. OnChange = ControlChange
  56. end
  57. object MoreButton: TMoreButton
  58. Left = 176
  59. Top = 329
  60. Width = 75
  61. Height = 25
  62. Anchors = [akRight, akBottom]
  63. Caption = '<< &Less'
  64. TabOrder = 7
  65. OnChange = ControlChange
  66. Panel = MorePanel
  67. RepositionForm = True
  68. end
  69. object CopyButton: TButton
  70. Left = 260
  71. Top = 329
  72. Width = 75
  73. Height = 25
  74. Anchors = [akRight, akBottom]
  75. Caption = 'Copy'
  76. Default = True
  77. ModalResult = 1
  78. TabOrder = 8
  79. end
  80. object CancelButton: TButton
  81. Left = 343
  82. Top = 329
  83. Width = 75
  84. Height = 25
  85. Anchors = [akRight, akBottom]
  86. Cancel = True
  87. Caption = 'Cancel'
  88. ModalResult = 2
  89. TabOrder = 9
  90. end
  91. object MorePanel: TPanel
  92. Left = 0
  93. Top = 52
  94. Width = 511
  95. Height = 253
  96. Anchors = [akLeft, akTop, akRight, akBottom]
  97. BevelOuter = bvNone
  98. TabOrder = 3
  99. DesignSize = (
  100. 511
  101. 253)
  102. object SaveSettingsCheck: TCheckBox
  103. Left = 8
  104. Top = 235
  105. Width = 301
  106. Height = 17
  107. Caption = 'Use &same settings next time'
  108. TabOrder = 2
  109. end
  110. inline CopyParamsFrame: TCopyParamsFrame
  111. Left = 2
  112. Top = 0
  113. Width = 508
  114. Height = 213
  115. TabOrder = 0
  116. end
  117. object NewerOnlyCheck: TCheckBox
  118. Left = 8
  119. Top = 215
  120. Width = 377
  121. Height = 17
  122. Caption = 'N&ew and updated file(s) only'
  123. TabOrder = 1
  124. end
  125. object NeverShowAgainCheck: TCheckBox
  126. Left = 312
  127. Top = 235
  128. Width = 193
  129. Height = 17
  130. Anchors = [akLeft, akBottom]
  131. Caption = 'Do not show this dialog box again'
  132. TabOrder = 3
  133. OnClick = ControlChange
  134. end
  135. end
  136. object LocalDirectoryBrowseButton: TButton
  137. Left = 427
  138. Top = 23
  139. Width = 75
  140. Height = 25
  141. Caption = 'B&rowse...'
  142. TabOrder = 1
  143. OnClick = LocalDirectoryBrowseButtonClick
  144. end
  145. object QueueCheck: TCheckBox
  146. Left = 8
  147. Top = 307
  148. Width = 301
  149. Height = 17
  150. Anchors = [akLeft, akBottom]
  151. Caption = 'Transfer on background (add to transfer &queue)'
  152. TabOrder = 4
  153. OnClick = ControlChange
  154. end
  155. object QueueNoConfirmationCheck: TCheckBox
  156. Left = 312
  157. Top = 307
  158. Width = 193
  159. Height = 17
  160. Anchors = [akLeft, akBottom]
  161. Caption = 'No &confirmations'
  162. TabOrder = 5
  163. OnClick = ControlChange
  164. end
  165. object PresetsButton: TButton
  166. Left = 8
  167. Top = 329
  168. Width = 97
  169. Height = 25
  170. Anchors = [akRight, akBottom]
  171. Caption = '&Presets...'
  172. TabOrder = 6
  173. OnClick = PresetsButtonClick
  174. end
  175. object HelpButton: TButton
  176. Left = 427
  177. Top = 329
  178. Width = 75
  179. Height = 25
  180. Anchors = [akRight, akBottom]
  181. Caption = 'Help'
  182. TabOrder = 10
  183. OnClick = HelpButtonClick
  184. end
  185. end