FullSynchronize.dfm 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. object FullSynchronizeDialog: TFullSynchronizeDialog
  2. Left = 365
  3. Top = 185
  4. BorderStyle = bsDialog
  5. Caption = 'Synchronize'
  6. ClientHeight = 265
  7. ClientWidth = 396
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'MS Sans Serif'
  13. Font.Style = []
  14. OldCreateOrder = False
  15. Position = poMainFormCenter
  16. OnCloseQuery = FormCloseQuery
  17. DesignSize = (
  18. 396
  19. 265)
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object DirectoriesGroup: TXPGroupBox
  23. Left = 8
  24. Top = 6
  25. Width = 380
  26. Height = 119
  27. Anchors = [akLeft, akTop, akRight]
  28. Caption = 'Directories'
  29. TabOrder = 0
  30. DesignSize = (
  31. 380
  32. 119)
  33. object LocalDirectoryLabel: TLabel
  34. Left = 11
  35. Top = 19
  36. Width = 72
  37. Height = 13
  38. Anchors = [akLeft, akTop, akRight]
  39. Caption = 'Lo&cal directory:'
  40. FocusControl = LocalDirectoryEdit
  41. end
  42. object RemoteDirectoryLabel: TLabel
  43. Left = 11
  44. Top = 68
  45. Width = 83
  46. Height = 13
  47. Anchors = [akLeft, akTop, akRight]
  48. Caption = 'Remo&te directory:'
  49. FocusControl = RemoteDirectoryEdit
  50. end
  51. object RemoteDirectoryEdit: THistoryComboBox
  52. Left = 11
  53. Top = 84
  54. Width = 358
  55. Height = 21
  56. AutoComplete = False
  57. Anchors = [akLeft, akTop, akRight]
  58. ItemHeight = 13
  59. MaxLength = 1000
  60. TabOrder = 2
  61. Text = 'RemoteDirectoryEdit'
  62. OnChange = ControlChange
  63. end
  64. object LocalDirectoryEdit: THistoryComboBox
  65. Left = 11
  66. Top = 35
  67. Width = 275
  68. Height = 21
  69. AutoComplete = False
  70. Anchors = [akLeft, akTop, akRight]
  71. ItemHeight = 13
  72. MaxLength = 1000
  73. TabOrder = 0
  74. Text = 'LocalDirectoryEdit'
  75. OnChange = ControlChange
  76. end
  77. object LocalDirectoryBrowseButton: TButton
  78. Left = 293
  79. Top = 33
  80. Width = 75
  81. Height = 25
  82. Caption = 'B&rowse...'
  83. TabOrder = 1
  84. OnClick = LocalDirectoryBrowseButtonClick
  85. end
  86. end
  87. object OkButton: TButton
  88. Left = 228
  89. Top = 232
  90. Width = 75
  91. Height = 25
  92. Anchors = [akRight, akBottom]
  93. Caption = 'OK'
  94. Default = True
  95. ModalResult = 1
  96. TabOrder = 2
  97. end
  98. object CancelButton: TButton
  99. Left = 312
  100. Top = 232
  101. Width = 75
  102. Height = 25
  103. Anchors = [akRight, akBottom]
  104. Cancel = True
  105. Caption = 'Cancel'
  106. ModalResult = 2
  107. TabOrder = 3
  108. end
  109. object OptionsGroup: TXPGroupBox
  110. Left = 8
  111. Top = 130
  112. Width = 380
  113. Height = 95
  114. Anchors = [akLeft, akTop, akRight]
  115. Caption = 'Synchronize options'
  116. TabOrder = 1
  117. object SynchronizeBothButton: TRadioButton
  118. Left = 11
  119. Top = 20
  120. Width = 102
  121. Height = 17
  122. Caption = '&Both'
  123. TabOrder = 0
  124. OnClick = ControlChange
  125. end
  126. object SynchronizeRemoteButton: TRadioButton
  127. Left = 123
  128. Top = 20
  129. Width = 102
  130. Height = 17
  131. Caption = '&Remote'
  132. TabOrder = 1
  133. OnClick = ControlChange
  134. end
  135. object SynchronizeLocalButton: TRadioButton
  136. Left = 235
  137. Top = 20
  138. Width = 110
  139. Height = 17
  140. Caption = '&Local'
  141. TabOrder = 2
  142. OnClick = ControlChange
  143. end
  144. object SynchronizeDeleteCheck: TCheckBox
  145. Left = 11
  146. Top = 44
  147. Width = 97
  148. Height = 17
  149. Caption = '&Delete files'
  150. TabOrder = 3
  151. OnClick = ControlChange
  152. end
  153. object SynchronizeNoConfirmationCheck: TCheckBox
  154. Left = 123
  155. Top = 44
  156. Width = 158
  157. Height = 17
  158. Caption = '&No confirmations'
  159. TabOrder = 4
  160. OnClick = ControlChange
  161. end
  162. object SaveSettingsCheck: TCheckBox
  163. Left = 11
  164. Top = 68
  165. Width = 361
  166. Height = 17
  167. Caption = 'Use &same options next time'
  168. TabOrder = 5
  169. end
  170. end
  171. end