FullSynchronize.dfm 8.5 KB

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