FullSynchronize.dfm 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  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 = 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. 429)
  24. PixelsPerInch = 96
  25. TextHeight = 13
  26. object DirectoriesGroup: TGroupBox
  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 = 'R&emote 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 = 396
  95. Width = 75
  96. Height = 25
  97. Anchors = [akRight, akBottom]
  98. Caption = 'OK'
  99. Default = True
  100. ModalResult = 1
  101. TabOrder = 8
  102. end
  103. object CancelButton: TButton
  104. Left = 267
  105. Top = 396
  106. Width = 75
  107. Height = 25
  108. Anchors = [akRight, akBottom]
  109. Cancel = True
  110. Caption = 'Cancel'
  111. ModalResult = 2
  112. TabOrder = 9
  113. end
  114. object OptionsGroup: TGroupBox
  115. Left = 8
  116. Top = 238
  117. Width = 268
  118. Height = 73
  119. Caption = 'Synchronize options'
  120. TabOrder = 3
  121. object SynchronizeDeleteCheck: TCheckBox
  122. Left = 11
  123. Top = 20
  124. Width = 126
  125. Height = 17
  126. Caption = '&Delete files'
  127. TabOrder = 0
  128. OnClick = ControlChange
  129. end
  130. object SynchronizeSelectedOnlyCheck: TCheckBox
  131. Left = 139
  132. Top = 44
  133. Width = 123
  134. Height = 17
  135. Caption = 'Selected files o&nly'
  136. TabOrder = 3
  137. OnClick = ControlChange
  138. end
  139. object SynchronizeExistingOnlyCheck: TCheckBox
  140. Left = 139
  141. Top = 20
  142. Width = 123
  143. Height = 17
  144. Caption = '&Existing files only'
  145. TabOrder = 1
  146. OnClick = ControlChange
  147. end
  148. object SynchronizePreviewChangesCheck: TCheckBox
  149. Left = 11
  150. Top = 44
  151. Width = 126
  152. Height = 17
  153. Caption = 'Pre&view changes'
  154. TabOrder = 2
  155. OnClick = ControlChange
  156. end
  157. end
  158. object TransferSettingsButton: TButton
  159. Left = 8
  160. Top = 396
  161. Width = 129
  162. Height = 25
  163. Anchors = [akLeft, akBottom]
  164. Caption = 'Transfer settin&gs...'
  165. TabOrder = 7
  166. OnClick = TransferSettingsButtonClick
  167. end
  168. object DirectionGroup: TGroupBox
  169. Left = 8
  170. Top = 130
  171. Width = 417
  172. Height = 49
  173. Anchors = [akLeft, akTop, akRight]
  174. Caption = 'Direction/Target directory'
  175. TabOrder = 1
  176. object SynchronizeBothButton: TRadioButton
  177. Left = 11
  178. Top = 20
  179. Width = 102
  180. Height = 17
  181. Caption = '&Both'
  182. TabOrder = 0
  183. OnClick = ControlChange
  184. end
  185. object SynchronizeRemoteButton: TRadioButton
  186. Left = 139
  187. Top = 20
  188. Width = 102
  189. Height = 17
  190. Caption = '&Remote'
  191. TabOrder = 1
  192. OnClick = ControlChange
  193. end
  194. object SynchronizeLocalButton: TRadioButton
  195. Left = 272
  196. Top = 20
  197. Width = 137
  198. Height = 17
  199. Caption = '&Local'
  200. TabOrder = 2
  201. OnClick = ControlChange
  202. end
  203. end
  204. object CompareCriterionsGroup: TGroupBox
  205. Left = 285
  206. Top = 238
  207. Width = 140
  208. Height = 73
  209. Caption = 'Comparison criteria'
  210. TabOrder = 4
  211. object SynchronizeByTimeCheck: TCheckBox
  212. Left = 11
  213. Top = 20
  214. Width = 121
  215. Height = 17
  216. Caption = 'M&odification time'
  217. TabOrder = 0
  218. OnClick = SynchronizeByTimeSizeCheckClick
  219. end
  220. object SynchronizeBySizeCheck: TCheckBox
  221. Left = 11
  222. Top = 44
  223. Width = 121
  224. Height = 17
  225. Caption = 'File si&ze'
  226. TabOrder = 1
  227. OnClick = SynchronizeByTimeSizeCheckClick
  228. end
  229. end
  230. object SaveSettingsCheck: TCheckBox
  231. Left = 19
  232. Top = 372
  233. Width = 246
  234. Height = 17
  235. Caption = 'Use &same options next time'
  236. TabOrder = 6
  237. end
  238. object CopyParamGroup: TGroupBox
  239. Left = 8
  240. Top = 316
  241. Width = 417
  242. Height = 50
  243. Caption = 'Transfer settings'
  244. TabOrder = 5
  245. OnContextPopup = CopyParamGroupContextPopup
  246. OnDblClick = CopyParamGroupDblClick
  247. DesignSize = (
  248. 417
  249. 50)
  250. object CopyParamLabel: TLabel
  251. Left = 7
  252. Top = 15
  253. Width = 403
  254. Height = 26
  255. Anchors = [akLeft, akTop, akRight, akBottom]
  256. AutoSize = False
  257. Caption = 'CopyParamLabel'
  258. WordWrap = True
  259. OnDblClick = CopyParamGroupDblClick
  260. end
  261. end
  262. object HelpButton: TButton
  263. Left = 349
  264. Top = 396
  265. Width = 75
  266. Height = 25
  267. Anchors = [akRight, akBottom]
  268. Caption = '&Help'
  269. TabOrder = 10
  270. OnClick = HelpButtonClick
  271. end
  272. object ModeGroup: TGroupBox
  273. Left = 8
  274. Top = 184
  275. Width = 417
  276. Height = 49
  277. Anchors = [akLeft, akTop, akRight]
  278. Caption = 'Mode'
  279. TabOrder = 2
  280. object SynchronizeFilesButton: TRadioButton
  281. Left = 11
  282. Top = 20
  283. Width = 126
  284. Height = 17
  285. Caption = 'Synchronize &files'
  286. TabOrder = 0
  287. OnClick = ControlChange
  288. end
  289. object MirrorFilesButton: TRadioButton
  290. Left = 139
  291. Top = 20
  292. Width = 131
  293. Height = 17
  294. Caption = '&Mirror files'
  295. TabOrder = 1
  296. OnClick = ControlChange
  297. end
  298. object SynchronizeTimestampsButton: TRadioButton
  299. Left = 272
  300. Top = 20
  301. Width = 139
  302. Height = 17
  303. Caption = 'Synchronize &timestamps'
  304. TabOrder = 2
  305. OnClick = ControlChange
  306. end
  307. end
  308. end