FullSynchronize.dfm 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. object FullSynchronizeDialog: TFullSynchronizeDialog
  2. Left = 365
  3. Top = 185
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_synchronize'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'Synchronize'
  9. ClientHeight = 399
  10. ClientWidth = 433
  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. 433
  23. 399)
  24. PixelsPerInch = 96
  25. TextHeight = 13
  26. object DirectoriesGroup: TXPGroupBox
  27. Left = 8
  28. Top = 6
  29. Width = 417
  30. Height = 119
  31. Anchors = [akLeft, akTop, akRight]
  32. Caption = 'Directories'
  33. TabOrder = 0
  34. DesignSize = (
  35. 417
  36. 119)
  37. object LocalDirectoryLabel: TLabel
  38. Left = 11
  39. Top = 19
  40. Width = 72
  41. Height = 13
  42. Anchors = [akLeft, akTop, akRight]
  43. Caption = 'Lo&cal directory:'
  44. FocusControl = LocalDirectoryEdit
  45. end
  46. object RemoteDirectoryLabel: TLabel
  47. Left = 11
  48. Top = 68
  49. Width = 83
  50. Height = 13
  51. Anchors = [akLeft, akTop, akRight]
  52. Caption = 'Remo&te directory:'
  53. FocusControl = RemoteDirectoryEdit
  54. end
  55. object RemoteDirectoryEdit: THistoryComboBox
  56. Left = 11
  57. Top = 84
  58. Width = 395
  59. Height = 21
  60. AutoComplete = False
  61. Anchors = [akLeft, akTop, akRight]
  62. ItemHeight = 13
  63. MaxLength = 1000
  64. TabOrder = 2
  65. Text = 'RemoteDirectoryEdit'
  66. OnChange = ControlChange
  67. end
  68. object LocalDirectoryEdit: THistoryComboBox
  69. Left = 11
  70. Top = 35
  71. Width = 312
  72. Height = 21
  73. AutoComplete = False
  74. Anchors = [akLeft, akTop, akRight]
  75. ItemHeight = 13
  76. MaxLength = 1000
  77. TabOrder = 0
  78. Text = 'LocalDirectoryEdit'
  79. OnChange = ControlChange
  80. end
  81. object LocalDirectoryBrowseButton: TButton
  82. Left = 330
  83. Top = 33
  84. Width = 75
  85. Height = 25
  86. Anchors = [akTop, akRight]
  87. Caption = 'Bro&wse...'
  88. TabOrder = 1
  89. OnClick = LocalDirectoryBrowseButtonClick
  90. end
  91. end
  92. object OkButton: TButton
  93. Left = 185
  94. Top = 366
  95. Width = 75
  96. Height = 25
  97. Anchors = [akRight, akBottom]
  98. Caption = 'OK'
  99. Default = True
  100. ModalResult = 1
  101. TabOrder = 7
  102. end
  103. object CancelButton: TButton
  104. Left = 267
  105. Top = 366
  106. Width = 75
  107. Height = 25
  108. Anchors = [akRight, akBottom]
  109. Cancel = True
  110. Caption = 'Cancel'
  111. ModalResult = 2
  112. TabOrder = 8
  113. end
  114. object OptionsGroup: TXPGroupBox
  115. Left = 8
  116. Top = 184
  117. Width = 268
  118. Height = 97
  119. Caption = 'Synchronize options'
  120. TabOrder = 2
  121. object SynchronizeDeleteCheck: TCheckBox
  122. Left = 11
  123. Top = 44
  124. Width = 126
  125. Height = 17
  126. Caption = '&Delete files'
  127. TabOrder = 1
  128. OnClick = ControlChange
  129. end
  130. object SynchronizeSelectedOnlyCheck: TCheckBox
  131. Left = 139
  132. Top = 68
  133. Width = 123
  134. Height = 17
  135. Caption = 'S&elected files only'
  136. TabOrder = 4
  137. OnClick = ControlChange
  138. end
  139. object SynchronizeExistingOnlyCheck: TCheckBox
  140. Left = 139
  141. Top = 44
  142. Width = 123
  143. Height = 17
  144. Caption = '&Existing files only'
  145. TabOrder = 2
  146. OnClick = ControlChange
  147. end
  148. object SynchronizePreviewChangesCheck: TCheckBox
  149. Left = 11
  150. Top = 68
  151. Width = 126
  152. Height = 17
  153. Caption = 'Pre&view changes'
  154. TabOrder = 3
  155. OnClick = ControlChange
  156. end
  157. object SynchronizeTimestampCheck: TCheckBox
  158. Left = 11
  159. Top = 20
  160. Width = 246
  161. Height = 17
  162. Caption = 'Synchronize timestamps &only, not files'
  163. TabOrder = 0
  164. OnClick = ControlChange
  165. end
  166. end
  167. object TransferSettingsButton: TButton
  168. Left = 8
  169. Top = 366
  170. Width = 129
  171. Height = 25
  172. Anchors = [akRight, akBottom]
  173. Caption = 'Transfer settin&gs...'
  174. TabOrder = 6
  175. OnClick = TransferSettingsButtonClick
  176. end
  177. object DirectionGroup: TXPGroupBox
  178. Left = 8
  179. Top = 130
  180. Width = 417
  181. Height = 49
  182. Anchors = [akLeft, akTop, akRight]
  183. Caption = 'Direction/Target directory'
  184. TabOrder = 1
  185. object SynchronizeBothButton: TRadioButton
  186. Left = 11
  187. Top = 20
  188. Width = 102
  189. Height = 17
  190. Caption = '&Both'
  191. TabOrder = 0
  192. OnClick = ControlChange
  193. end
  194. object SynchronizeRemoteButton: TRadioButton
  195. Left = 139
  196. Top = 20
  197. Width = 102
  198. Height = 17
  199. Caption = '&Remote'
  200. TabOrder = 1
  201. OnClick = ControlChange
  202. end
  203. object SynchronizeLocalButton: TRadioButton
  204. Left = 288
  205. Top = 20
  206. Width = 110
  207. Height = 17
  208. Caption = '&Local'
  209. TabOrder = 2
  210. OnClick = ControlChange
  211. end
  212. end
  213. object CompareCriterionsGroup: TXPGroupBox
  214. Left = 285
  215. Top = 184
  216. Width = 140
  217. Height = 97
  218. Caption = 'Compare criterions'
  219. TabOrder = 3
  220. object SynchronizeByTimeCheck: TCheckBox
  221. Left = 11
  222. Top = 20
  223. Width = 121
  224. Height = 17
  225. Caption = '&Modification time'
  226. TabOrder = 0
  227. OnClick = SynchronizeByTimeSizeCheckClick
  228. end
  229. object SynchronizeBySizeCheck: TCheckBox
  230. Left = 11
  231. Top = 44
  232. Width = 121
  233. Height = 17
  234. Caption = 'File si&ze'
  235. TabOrder = 1
  236. OnClick = SynchronizeByTimeSizeCheckClick
  237. end
  238. end
  239. object SaveSettingsCheck: TCheckBox
  240. Left = 19
  241. Top = 342
  242. Width = 246
  243. Height = 17
  244. Caption = 'Use &same options next time'
  245. TabOrder = 5
  246. end
  247. object CopyParamGroup: TXPGroupBox
  248. Left = 8
  249. Top = 286
  250. Width = 417
  251. Height = 50
  252. Caption = 'Transfer settings'
  253. TabOrder = 4
  254. OnContextPopup = CopyParamGroupContextPopup
  255. OnDblClick = CopyParamGroupDblClick
  256. DesignSize = (
  257. 417
  258. 50)
  259. object CopyParamLabel: TLabel
  260. Left = 7
  261. Top = 15
  262. Width = 403
  263. Height = 26
  264. Anchors = [akLeft, akTop, akRight, akBottom]
  265. AutoSize = False
  266. Caption = 'CopyParamLabel'
  267. WordWrap = True
  268. OnDblClick = CopyParamGroupDblClick
  269. end
  270. end
  271. object HelpButton: TButton
  272. Left = 349
  273. Top = 366
  274. Width = 75
  275. Height = 25
  276. Anchors = [akRight, akBottom]
  277. Caption = '&Help'
  278. TabOrder = 9
  279. OnClick = HelpButtonClick
  280. end
  281. end