FullSynchronize.dfm 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  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 = 429
  10. ClientWidth = 481
  11. Color = clBtnFace
  12. ParentFont = True
  13. OldCreateOrder = False
  14. Position = poOwnerFormCenter
  15. OnCloseQuery = FormCloseQuery
  16. OnShow = FormShow
  17. DesignSize = (
  18. 481
  19. 429)
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object DirectoriesGroup: TGroupBox
  23. Left = 8
  24. Top = 6
  25. Width = 465
  26. Height = 119
  27. Anchors = [akLeft, akTop, akRight]
  28. Caption = 'Directories'
  29. TabOrder = 0
  30. DesignSize = (
  31. 465
  32. 119)
  33. object LocalDirectoryLabel: TLabel
  34. Left = 49
  35. Top = 19
  36. Width = 74
  37. Height = 13
  38. Caption = 'Lo&cal directory:'
  39. FocusControl = LocalDirectoryEdit
  40. end
  41. object RemoteDirectoryLabel: TLabel
  42. Left = 49
  43. Top = 68
  44. Width = 87
  45. Height = 13
  46. Caption = 'R&emote directory:'
  47. FocusControl = RemoteDirectoryEdit
  48. end
  49. object Image: TImage
  50. Left = 11
  51. Top = 22
  52. Width = 32
  53. Height = 32
  54. AutoSize = True
  55. end
  56. object RemoteDirectoryEdit: THistoryComboBox
  57. Left = 49
  58. Top = 84
  59. Width = 405
  60. Height = 21
  61. AutoComplete = False
  62. Anchors = [akLeft, akTop, akRight]
  63. MaxLength = 1000
  64. TabOrder = 2
  65. Text = 'RemoteDirectoryEdit'
  66. OnChange = ControlChange
  67. end
  68. object LocalDirectoryEdit: THistoryComboBox
  69. Left = 49
  70. Top = 35
  71. Width = 322
  72. Height = 21
  73. AutoComplete = False
  74. Anchors = [akLeft, akTop, akRight]
  75. MaxLength = 1000
  76. TabOrder = 0
  77. Text = 'LocalDirectoryEdit'
  78. OnChange = ControlChange
  79. end
  80. object LocalDirectoryBrowseButton: TButton
  81. Left = 378
  82. Top = 33
  83. Width = 75
  84. Height = 25
  85. Anchors = [akTop, akRight]
  86. Caption = 'Bro&wse...'
  87. TabOrder = 1
  88. OnClick = LocalDirectoryBrowseButtonClick
  89. end
  90. end
  91. object OkButton: TButton
  92. Left = 233
  93. Top = 396
  94. Width = 75
  95. Height = 25
  96. Anchors = [akRight, akBottom]
  97. Caption = 'OK'
  98. Default = True
  99. ModalResult = 1
  100. TabOrder = 8
  101. end
  102. object CancelButton: TButton
  103. Left = 315
  104. Top = 396
  105. Width = 75
  106. Height = 25
  107. Anchors = [akRight, akBottom]
  108. Cancel = True
  109. Caption = 'Cancel'
  110. ModalResult = 2
  111. TabOrder = 9
  112. end
  113. object OptionsGroup: TGroupBox
  114. Left = 8
  115. Top = 238
  116. Width = 303
  117. Height = 73
  118. Caption = 'Synchronize options'
  119. TabOrder = 3
  120. DesignSize = (
  121. 303
  122. 73)
  123. object SynchronizeDeleteCheck: TCheckBox
  124. Left = 11
  125. Top = 20
  126. Width = 130
  127. Height = 17
  128. Caption = '&Delete files'
  129. TabOrder = 0
  130. OnClick = ControlChange
  131. end
  132. object SynchronizeSelectedOnlyCheck: TCheckBox
  133. Left = 155
  134. Top = 44
  135. Width = 141
  136. Height = 17
  137. Anchors = [akLeft, akTop, akRight]
  138. Caption = 'Selected files o&nly'
  139. TabOrder = 3
  140. OnClick = ControlChange
  141. end
  142. object SynchronizeExistingOnlyCheck: TCheckBox
  143. Left = 155
  144. Top = 20
  145. Width = 141
  146. Height = 17
  147. Anchors = [akLeft, akTop, akRight]
  148. Caption = '&Existing files only'
  149. TabOrder = 1
  150. OnClick = ControlChange
  151. end
  152. object SynchronizePreviewChangesCheck: TCheckBox
  153. Left = 11
  154. Top = 44
  155. Width = 130
  156. Height = 17
  157. Caption = 'Pre&view changes'
  158. TabOrder = 2
  159. OnClick = ControlChange
  160. end
  161. end
  162. object TransferSettingsButton: TButton
  163. Left = 8
  164. Top = 396
  165. Width = 161
  166. Height = 25
  167. Anchors = [akLeft, akBottom]
  168. Caption = 'Transfer settin&gs...'
  169. TabOrder = 7
  170. OnClick = TransferSettingsButtonClick
  171. OnDropDownClick = TransferSettingsButtonDropDownClick
  172. end
  173. object DirectionGroup: TGroupBox
  174. Left = 8
  175. Top = 130
  176. Width = 465
  177. Height = 49
  178. Anchors = [akLeft, akTop, akRight]
  179. Caption = 'Direction/Target directory'
  180. TabOrder = 1
  181. object SynchronizeBothButton: TRadioButton
  182. Left = 11
  183. Top = 20
  184. Width = 138
  185. Height = 17
  186. Caption = '&Both'
  187. TabOrder = 0
  188. OnClick = ControlChange
  189. end
  190. object SynchronizeRemoteButton: TRadioButton
  191. Left = 155
  192. Top = 20
  193. Width = 143
  194. Height = 17
  195. Caption = '&Remote'
  196. TabOrder = 1
  197. OnClick = ControlChange
  198. end
  199. object SynchronizeLocalButton: TRadioButton
  200. Left = 304
  201. Top = 20
  202. Width = 154
  203. Height = 17
  204. Caption = '&Local'
  205. TabOrder = 2
  206. OnClick = ControlChange
  207. end
  208. end
  209. object CompareCriterionsGroup: TGroupBox
  210. Left = 317
  211. Top = 238
  212. Width = 156
  213. Height = 73
  214. Anchors = [akLeft, akTop, akRight]
  215. Caption = 'Comparison criteria'
  216. TabOrder = 4
  217. DesignSize = (
  218. 156
  219. 73)
  220. object SynchronizeByTimeCheck: TCheckBox
  221. Left = 11
  222. Top = 20
  223. Width = 138
  224. Height = 17
  225. Anchors = [akLeft, akTop, akRight]
  226. Caption = 'M&odification time'
  227. TabOrder = 0
  228. OnClick = ControlChange
  229. end
  230. object SynchronizeBySizeCheck: TCheckBox
  231. Left = 11
  232. Top = 44
  233. Width = 138
  234. Height = 17
  235. Anchors = [akLeft, akTop, akRight]
  236. Caption = 'File si&ze'
  237. TabOrder = 1
  238. OnClick = ControlChange
  239. end
  240. end
  241. object SaveSettingsCheck: TCheckBox
  242. Left = 19
  243. Top = 317
  244. Width = 454
  245. Height = 17
  246. Anchors = [akLeft, akTop, akRight]
  247. Caption = 'Use &same options next time'
  248. TabOrder = 5
  249. end
  250. object CopyParamGroup: TGroupBox
  251. Left = 8
  252. Top = 338
  253. Width = 465
  254. Height = 50
  255. Anchors = [akLeft, akTop, akRight]
  256. Caption = 'Transfer settings'
  257. TabOrder = 6
  258. OnClick = CopyParamGroupClick
  259. OnContextPopup = CopyParamGroupContextPopup
  260. DesignSize = (
  261. 465
  262. 50)
  263. object CopyParamLabel: TLabel
  264. Left = 7
  265. Top = 15
  266. Width = 451
  267. Height = 26
  268. Anchors = [akLeft, akTop, akRight, akBottom]
  269. AutoSize = False
  270. Caption = 'CopyParamLabel'
  271. WordWrap = True
  272. OnClick = CopyParamGroupClick
  273. end
  274. end
  275. object HelpButton: TButton
  276. Left = 397
  277. Top = 396
  278. Width = 75
  279. Height = 25
  280. Anchors = [akRight, akBottom]
  281. Caption = '&Help'
  282. TabOrder = 10
  283. OnClick = HelpButtonClick
  284. end
  285. object ModeGroup: TGroupBox
  286. Left = 8
  287. Top = 184
  288. Width = 465
  289. Height = 49
  290. Anchors = [akLeft, akTop, akRight]
  291. Caption = 'Mode'
  292. TabOrder = 2
  293. object SynchronizeFilesButton: TRadioButton
  294. Left = 11
  295. Top = 20
  296. Width = 135
  297. Height = 17
  298. Caption = 'Synchronize &files'
  299. TabOrder = 0
  300. OnClick = ControlChange
  301. end
  302. object MirrorFilesButton: TRadioButton
  303. Left = 155
  304. Top = 20
  305. Width = 143
  306. Height = 17
  307. Caption = '&Mirror files'
  308. TabOrder = 1
  309. OnClick = ControlChange
  310. end
  311. object SynchronizeTimestampsButton: TRadioButton
  312. Left = 304
  313. Top = 20
  314. Width = 154
  315. Height = 17
  316. Caption = 'Synchronize &timestamps'
  317. TabOrder = 2
  318. OnClick = ControlChange
  319. end
  320. end
  321. end