Copy.dfm 3.8 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 = poOwnerFormCenter
  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. AutoComplete = False
  39. Anchors = [akLeft, akTop, akRight]
  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. MaxLength = 1000
  52. TabOrder = 2
  53. Text = 'RemoteDirectoryEdit'
  54. OnChange = ControlChange
  55. end
  56. object CopyButton: TButton
  57. Left = 260
  58. Top = 159
  59. Width = 75
  60. Height = 25
  61. Anchors = [akRight, akBottom]
  62. Caption = 'Copy'
  63. Default = True
  64. ModalResult = 1
  65. TabOrder = 9
  66. end
  67. object CancelButton: TButton
  68. Left = 343
  69. Top = 159
  70. Width = 75
  71. Height = 25
  72. Anchors = [akRight, akBottom]
  73. Cancel = True
  74. Caption = 'Cancel'
  75. ModalResult = 2
  76. TabOrder = 10
  77. end
  78. object LocalDirectoryBrowseButton: TButton
  79. Left = 427
  80. Top = 23
  81. Width = 75
  82. Height = 25
  83. Caption = 'B&rowse...'
  84. TabOrder = 1
  85. OnClick = LocalDirectoryBrowseButtonClick
  86. end
  87. object QueueCheck2: TCheckBox
  88. Left = 8
  89. Top = 135
  90. Width = 301
  91. Height = 17
  92. Caption = 'Transfer on background (add to transfer &queue) X'
  93. TabOrder = 6
  94. OnClick = ControlChange
  95. end
  96. object QueueIndividuallyCheck: TCheckBox
  97. Left = 312
  98. Top = 135
  99. Width = 193
  100. Height = 17
  101. Caption = '&Transfer each file individually'
  102. TabOrder = 7
  103. OnClick = ControlChange
  104. end
  105. object HelpButton: TButton
  106. Left = 427
  107. Top = 159
  108. Width = 75
  109. Height = 25
  110. Anchors = [akRight, akBottom]
  111. Caption = '&Help'
  112. TabOrder = 11
  113. OnClick = HelpButtonClick
  114. end
  115. object NewerOnlyCheck: TCheckBox
  116. Left = 8
  117. Top = 112
  118. Width = 301
  119. Height = 17
  120. Caption = '&New and updated file(s) only'
  121. TabOrder = 4
  122. end
  123. object NeverShowAgainCheck: TCheckBox
  124. Left = 312
  125. Top = 112
  126. Width = 193
  127. Height = 17
  128. Caption = '&Do not show this dialog box again'
  129. TabOrder = 5
  130. OnClick = ControlChange
  131. end
  132. object TransferSettingsButton: TButton
  133. Left = 8
  134. Top = 159
  135. Width = 129
  136. Height = 25
  137. Anchors = [akLeft, akBottom]
  138. Caption = 'Transfer settin&gs...'
  139. TabOrder = 8
  140. OnClick = TransferSettingsButtonClick
  141. OnDropDownClick = TransferSettingsButtonDropDownClick
  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. OnClick = CopyParamGroupClick
  151. OnContextPopup = CopyParamGroupContextPopup
  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. OnClick = CopyParamGroupClick
  165. end
  166. end
  167. end