Synchronize.dfm 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. object SynchronizeDialog: TSynchronizeDialog
  2. Left = 367
  3. Top = 198
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_keepuptodate'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'Keep remote directory up to date X'
  9. ClientHeight = 466
  10. ClientWidth = 518
  11. Color = clBtnFace
  12. ParentFont = True
  13. KeyPreview = True
  14. Position = poOwnerFormCenter
  15. OnCloseQuery = FormCloseQuery
  16. OnKeyDown = FormKeyDown
  17. OnShow = FormShow
  18. DesignSize = (
  19. 518
  20. 466)
  21. TextHeight = 15
  22. object DirectoriesGroup: TGroupBox
  23. Left = 8
  24. Top = 8
  25. Width = 502
  26. Height = 120
  27. Anchors = [akLeft, akTop, akRight]
  28. Caption = 'Directories'
  29. TabOrder = 0
  30. DesignSize = (
  31. 502
  32. 120)
  33. object LocalDirectoryLabel: TLabel
  34. Left = 49
  35. Top = 22
  36. Width = 222
  37. Height = 15
  38. Anchors = [akLeft, akTop, akRight]
  39. Caption = '&Watch for changes in the local directory:'
  40. FocusControl = LocalDirectoryEdit
  41. end
  42. object RemoteDirectoryLabel: TLabel
  43. Left = 49
  44. Top = 69
  45. Width = 314
  46. Height = 15
  47. Anchors = [akLeft, akTop, akRight]
  48. Caption = '... &and automatically reflect them on the remote 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 = 444
  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 = 358
  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 = 413
  84. Top = 39
  85. Width = 80
  86. Height = 25
  87. Anchors = [akTop, akRight]
  88. Caption = 'B&rowse...'
  89. TabOrder = 1
  90. OnClick = LocalDirectoryBrowseButtonClick
  91. end
  92. end
  93. object StopButton: TButton
  94. Left = 216
  95. Top = 323
  96. Width = 94
  97. Height = 25
  98. Anchors = [akTop, akRight]
  99. Caption = '&Stop'
  100. TabOrder = 4
  101. OnClick = StopButtonClick
  102. end
  103. object CancelButton: TButton
  104. Left = 316
  105. Top = 323
  106. Width = 94
  107. Height = 25
  108. Anchors = [akTop, akRight]
  109. Cancel = True
  110. Caption = 'Close'
  111. ModalResult = 2
  112. TabOrder = 6
  113. end
  114. object OptionsGroup: TGroupBox
  115. Left = 8
  116. Top = 134
  117. Width = 502
  118. Height = 118
  119. Anchors = [akLeft, akTop, akRight]
  120. Caption = 'Synchronize options'
  121. TabOrder = 1
  122. DesignSize = (
  123. 502
  124. 118)
  125. object SynchronizeDeleteCheck: TCheckBox
  126. Left = 9
  127. Top = 22
  128. Width = 239
  129. Height = 17
  130. Caption = '&Delete files'
  131. TabOrder = 0
  132. OnClick = ControlChange
  133. end
  134. object SaveSettingsCheck: TCheckBox
  135. Left = 9
  136. Top = 91
  137. Width = 239
  138. Height = 17
  139. Caption = 'Use same &options next time'
  140. TabOrder = 6
  141. OnClick = ControlChange
  142. end
  143. object SynchronizeExistingOnlyCheck: TCheckBox
  144. Left = 254
  145. Top = 22
  146. Width = 239
  147. Height = 17
  148. Anchors = [akLeft, akTop, akRight]
  149. Caption = '&Existing files only'
  150. TabOrder = 1
  151. OnClick = ControlChange
  152. end
  153. object SynchronizeRecursiveCheck: TCheckBox
  154. Left = 9
  155. Top = 45
  156. Width = 239
  157. Height = 17
  158. Caption = 'Update s&ubdirectories'
  159. TabOrder = 2
  160. OnClick = ControlChange
  161. end
  162. object SynchronizeSynchronizeCheck: TGrayedCheckBox
  163. Left = 254
  164. Top = 70
  165. Width = 239
  166. Height = 17
  167. AllowGrayed = True
  168. Anchors = [akLeft, akTop, akRight]
  169. Caption = 'Synchronize on s&tart'
  170. TabOrder = 5
  171. OnClick = ControlChange
  172. end
  173. object SynchronizeSelectedOnlyCheck: TCheckBox
  174. Left = 254
  175. Top = 46
  176. Width = 239
  177. Height = 17
  178. Caption = 'Selected files o&nly'
  179. TabOrder = 3
  180. OnClick = ControlChange
  181. end
  182. object ContinueOnErrorCheck: TCheckBox
  183. Left = 9
  184. Top = 68
  185. Width = 239
  186. Height = 17
  187. Caption = 'Continue on &error'
  188. TabOrder = 4
  189. OnClick = ControlChange
  190. end
  191. end
  192. object StartButton: TButton
  193. Left = 216
  194. Top = 323
  195. Width = 94
  196. Height = 25
  197. Anchors = [akTop, akRight]
  198. Caption = '&Start'
  199. Default = True
  200. TabOrder = 3
  201. OnClick = StartButtonClick
  202. OnDropDownClick = StartButtonDropDownClick
  203. end
  204. object MinimizeButton: TButton
  205. Left = 316
  206. Top = 323
  207. Width = 94
  208. Height = 25
  209. Anchors = [akTop, akRight]
  210. Caption = '&Minimize'
  211. TabOrder = 5
  212. OnClick = MinimizeButtonClick
  213. OnDropDownClick = MinimizeButtonDropDownClick
  214. end
  215. object TransferSettingsButton: TButton
  216. Left = 8
  217. Top = 323
  218. Width = 175
  219. Height = 25
  220. Caption = 'Transfer settin&gs...'
  221. TabOrder = 2
  222. OnClick = TransferSettingsButtonClick
  223. OnDropDownClick = TransferSettingsButtonDropDownClick
  224. end
  225. object CopyParamGroup: TGroupBox
  226. Left = 8
  227. Top = 258
  228. Width = 502
  229. Height = 59
  230. Anchors = [akLeft, akTop, akRight]
  231. Caption = 'Transfer settings'
  232. TabOrder = 7
  233. OnClick = CopyParamGroupClick
  234. OnContextPopup = CopyParamGroupContextPopup
  235. DesignSize = (
  236. 502
  237. 59)
  238. object CopyParamLabel: TLabel
  239. Left = 9
  240. Top = 20
  241. Width = 484
  242. Height = 35
  243. Anchors = [akLeft, akTop, akRight, akBottom]
  244. AutoSize = False
  245. Caption = 'CopyParamLabel'
  246. ShowAccelChar = False
  247. WordWrap = True
  248. OnClick = CopyParamGroupClick
  249. end
  250. end
  251. object HelpButton: TButton
  252. Left = 416
  253. Top = 323
  254. Width = 94
  255. Height = 25
  256. Anchors = [akTop, akRight]
  257. Caption = '&Help'
  258. TabOrder = 8
  259. OnClick = HelpButtonClick
  260. end
  261. object LogPanel: TPanel
  262. Left = 0
  263. Top = 353
  264. Width = 518
  265. Height = 113
  266. Align = alBottom
  267. BevelOuter = bvNone
  268. TabOrder = 9
  269. DesignSize = (
  270. 518
  271. 113)
  272. object LogView: TListView
  273. Left = 8
  274. Top = 2
  275. Width = 502
  276. Height = 103
  277. Anchors = [akLeft, akTop, akRight, akBottom]
  278. Columns = <
  279. item
  280. Width = -1
  281. WidthType = (
  282. -1)
  283. end
  284. item
  285. Width = -1
  286. WidthType = (
  287. -1)
  288. end>
  289. DoubleBuffered = True
  290. ReadOnly = True
  291. RowSelect = True
  292. ParentDoubleBuffered = False
  293. ShowColumnHeaders = False
  294. TabOrder = 0
  295. ViewStyle = vsReport
  296. OnCustomDrawItem = LogViewCustomDrawItem
  297. OnDblClick = LogViewDblClick
  298. OnDeletion = LogViewDeletion
  299. OnKeyDown = LogViewKeyDown
  300. end
  301. end
  302. object MinimizeMenu: TPopupMenu
  303. Left = 376
  304. Top = 376
  305. object Minimize1: TMenuItem
  306. Caption = '&Minimize'
  307. Default = True
  308. OnClick = Minimize1Click
  309. end
  310. object MinimizetoTray1: TMenuItem
  311. Caption = 'Minimize to System &Tray'
  312. OnClick = MinimizetoTray1Click
  313. end
  314. end
  315. object StartMenu: TPopupMenu
  316. Left = 288
  317. Top = 376
  318. object Start1: TMenuItem
  319. Caption = '&Start'
  320. Default = True
  321. OnClick = StartButtonClick
  322. end
  323. object StartInNewWindowItem: TMenuItem
  324. Caption = 'Start in &New Window'
  325. OnClick = StartInNewWindowItemClick
  326. end
  327. end
  328. end