FullSynchronize.dfm 8.4 KB

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