SynchronizeProgress.dfm 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. object SynchronizeProgressForm: TSynchronizeProgressForm
  2. Left = 335
  3. Top = 260
  4. BorderStyle = bsDialog
  5. Caption = 'Synchronization'
  6. ClientHeight = 127
  7. ClientWidth = 370
  8. Color = clBtnFace
  9. ParentFont = True
  10. OldCreateOrder = False
  11. Position = poMainFormCenter
  12. DesignSize = (
  13. 370
  14. 127)
  15. PixelsPerInch = 96
  16. TextHeight = 13
  17. object Label1: TLabel
  18. Left = 8
  19. Top = 9
  20. Width = 29
  21. Height = 13
  22. Caption = 'Local:'
  23. end
  24. object Label2: TLabel
  25. Left = 8
  26. Top = 29
  27. Width = 40
  28. Height = 13
  29. Caption = 'Remote:'
  30. end
  31. object RemoteDirectoryLabel: TPathLabel
  32. Left = 88
  33. Top = 29
  34. Width = 273
  35. Height = 13
  36. UnixPath = True
  37. IndentHorizontal = 0
  38. IndentVertical = 0
  39. Align = alNone
  40. Anchors = [akLeft, akTop, akRight]
  41. AutoSize = False
  42. end
  43. object LocalDirectoryLabel: TPathLabel
  44. Left = 88
  45. Top = 9
  46. Width = 273
  47. Height = 13
  48. IndentHorizontal = 0
  49. IndentVertical = 0
  50. Align = alNone
  51. Anchors = [akLeft, akTop, akRight]
  52. AutoSize = False
  53. end
  54. object StartTimeLabel: TLabel
  55. Left = 88
  56. Top = 49
  57. Width = 81
  58. Height = 13
  59. AutoSize = False
  60. Caption = '00:00:00'
  61. end
  62. object Label4: TLabel
  63. Left = 8
  64. Top = 49
  65. Width = 47
  66. Height = 13
  67. Caption = 'Start time:'
  68. end
  69. object Label3: TLabel
  70. Left = 8
  71. Top = 69
  72. Width = 66
  73. Height = 13
  74. Caption = 'Time elapsed:'
  75. end
  76. object TimeElapsedLabel: TLabel
  77. Left = 88
  78. Top = 69
  79. Width = 79
  80. Height = 13
  81. AutoSize = False
  82. Caption = '00:00:00'
  83. end
  84. object CancelButton: TButton
  85. Left = 105
  86. Top = 93
  87. Width = 73
  88. Height = 25
  89. Anchors = [akLeft, akBottom]
  90. Caption = 'Cancel'
  91. TabOrder = 0
  92. OnClick = CancelButtonClick
  93. end
  94. object MinimizeButton: TButton
  95. Left = 190
  96. Top = 93
  97. Width = 73
  98. Height = 25
  99. Anchors = [akTop, akRight]
  100. Caption = '&Minimize'
  101. TabOrder = 1
  102. OnClick = MinimizeButtonClick
  103. end
  104. object UpdateTimer: TTimer
  105. Enabled = False
  106. OnTimer = UpdateTimerTimer
  107. Left = 41
  108. Top = 89
  109. end
  110. end