Copy.dfm 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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 = 189
  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. 189)
  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 CopyButton: TButton
  58. Left = 260
  59. Top = 159
  60. Width = 75
  61. Height = 25
  62. Anchors = [akRight, akBottom]
  63. Caption = 'Copy'
  64. Default = True
  65. ModalResult = 1
  66. TabOrder = 9
  67. end
  68. object CancelButton: TButton
  69. Left = 343
  70. Top = 159
  71. Width = 75
  72. Height = 25
  73. Anchors = [akRight, akBottom]
  74. Cancel = True
  75. Caption = 'Cancel'
  76. ModalResult = 2
  77. TabOrder = 10
  78. end
  79. object LocalDirectoryBrowseButton: TButton
  80. Left = 427
  81. Top = 23
  82. Width = 75
  83. Height = 25
  84. Caption = 'B&rowse...'
  85. TabOrder = 1
  86. OnClick = LocalDirectoryBrowseButtonClick
  87. end
  88. object QueueCheck: TCheckBox
  89. Left = 8
  90. Top = 135
  91. Width = 301
  92. Height = 17
  93. Caption = 'Transfer on background (add to transfer &queue)'
  94. TabOrder = 6
  95. OnClick = ControlChange
  96. end
  97. object QueueNoConfirmationCheck: TCheckBox
  98. Left = 312
  99. Top = 135
  100. Width = 193
  101. Height = 17
  102. Caption = 'No &confirmations'
  103. TabOrder = 7
  104. OnClick = ControlChange
  105. end
  106. object HelpButton: TButton
  107. Left = 427
  108. Top = 159
  109. Width = 75
  110. Height = 25
  111. Anchors = [akRight, akBottom]
  112. Caption = '&Help'
  113. TabOrder = 11
  114. OnClick = HelpButtonClick
  115. end
  116. object NewerOnlyCheck: TCheckBox
  117. Left = 8
  118. Top = 112
  119. Width = 301
  120. Height = 17
  121. Caption = '&New and updated file(s) only'
  122. TabOrder = 4
  123. end
  124. object NeverShowAgainCheck: TCheckBox
  125. Left = 312
  126. Top = 112
  127. Width = 193
  128. Height = 17
  129. Caption = '&Do not show this dialog box again'
  130. TabOrder = 5
  131. OnClick = ControlChange
  132. end
  133. object TransferSettingsButton: TButton
  134. Left = 8
  135. Top = 159
  136. Width = 129
  137. Height = 25
  138. Anchors = [akLeft, akBottom]
  139. Caption = 'Transfer settin&gs...'
  140. TabOrder = 8
  141. OnClick = TransferSettingsButtonClick
  142. end
  143. object CopyParamGroup: TGroupBox
  144. Left = 8
  145. Top = 53
  146. Width = 496
  147. Height = 50
  148. Caption = 'Transfer settings'
  149. TabOrder = 3
  150. OnContextPopup = CopyParamGroupContextPopup
  151. OnDblClick = CopyParamGroupDblClick
  152. DesignSize = (
  153. 496
  154. 50)
  155. object CopyParamLabel: TLabel
  156. Left = 7
  157. Top = 15
  158. Width = 482
  159. Height = 26
  160. Anchors = [akLeft, akTop, akRight, akBottom]
  161. AutoSize = False
  162. Caption = 'CopyParamLabel'
  163. WordWrap = True
  164. OnDblClick = CopyParamGroupDblClick
  165. end
  166. end
  167. end