FDXPProgress.dfm 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. object DXPProgress: TDXPProgress
  2. Left = 223
  3. Top = 140
  4. BorderStyle = bsDialog
  5. Caption = 'Compilation Progress'
  6. ClientHeight = 205
  7. ClientWidth = 399
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'Arial'
  13. Font.Style = []
  14. FormStyle = fsStayOnTop
  15. OldCreateOrder = False
  16. Position = poScreenCenter
  17. OnCreate = FormCreate
  18. PixelsPerInch = 96
  19. TextHeight = 14
  20. object Panel1: TPanel
  21. Left = 8
  22. Top = 8
  23. Width = 385
  24. Height = 153
  25. TabOrder = 0
  26. object Label1: TLabel
  27. Left = 8
  28. Top = 8
  29. Width = 369
  30. Height = 18
  31. Alignment = taCenter
  32. AutoSize = False
  33. Caption = 'DXP / FreePascal'
  34. Font.Charset = DEFAULT_CHARSET
  35. Font.Color = cl3DDkShadow
  36. Font.Height = -15
  37. Font.Name = 'Arial'
  38. Font.Style = [fsBold]
  39. ParentFont = False
  40. end
  41. object STProject: TStaticText
  42. Left = 8
  43. Top = 32
  44. Width = 369
  45. Height = 18
  46. AutoSize = False
  47. BorderStyle = sbsSunken
  48. Caption = 'STProject'
  49. ShowAccelChar = False
  50. TabOrder = 0
  51. end
  52. object STStatus: TStaticText
  53. Left = 8
  54. Top = 56
  55. Width = 369
  56. Height = 18
  57. Alignment = taCenter
  58. AutoSize = False
  59. BorderStyle = sbsSunken
  60. Caption = 'STStatus'
  61. Font.Charset = DEFAULT_CHARSET
  62. Font.Color = clWindowText
  63. Font.Height = -12
  64. Font.Name = 'Arial'
  65. Font.Style = [fsBold]
  66. ParentFont = False
  67. ShowAccelChar = False
  68. TabOrder = 1
  69. end
  70. object Panel2: TPanel
  71. Left = 8
  72. Top = 104
  73. Width = 177
  74. Height = 17
  75. Alignment = taLeftJustify
  76. BevelOuter = bvLowered
  77. BorderWidth = 1
  78. Caption = ' Errors :'
  79. TabOrder = 2
  80. object LAErrors: TLabel
  81. Left = 131
  82. Top = 2
  83. Width = 44
  84. Height = 13
  85. Align = alRight
  86. Caption = 'LAErrors'
  87. end
  88. end
  89. object Panel3: TPanel
  90. Left = 8
  91. Top = 128
  92. Width = 177
  93. Height = 17
  94. Alignment = taLeftJustify
  95. BevelOuter = bvLowered
  96. BorderWidth = 1
  97. Caption = ' Warnings :'
  98. TabOrder = 3
  99. object LAWarnings: TLabel
  100. Left = 115
  101. Top = 2
  102. Width = 60
  103. Height = 13
  104. Align = alRight
  105. Caption = 'LAWarnings'
  106. end
  107. end
  108. object Panel4: TPanel
  109. Left = 200
  110. Top = 128
  111. Width = 177
  112. Height = 17
  113. Alignment = taLeftJustify
  114. BevelOuter = bvLowered
  115. BorderWidth = 1
  116. Caption = ' Notes :'
  117. TabOrder = 4
  118. object LANotes: TLabel
  119. Left = 133
  120. Top = 2
  121. Width = 42
  122. Height = 13
  123. Align = alRight
  124. Caption = 'LANotes'
  125. end
  126. end
  127. object Panel5: TPanel
  128. Left = 200
  129. Top = 104
  130. Width = 177
  131. Height = 17
  132. Alignment = taLeftJustify
  133. BevelOuter = bvLowered
  134. BorderWidth = 1
  135. Caption = ' Hints :'
  136. TabOrder = 5
  137. object LAHints: TLabel
  138. Left = 137
  139. Top = 2
  140. Width = 38
  141. Height = 13
  142. Align = alRight
  143. Caption = 'LAHints'
  144. end
  145. end
  146. object Panel6: TPanel
  147. Left = 8
  148. Top = 80
  149. Width = 177
  150. Height = 17
  151. Alignment = taLeftJustify
  152. BevelOuter = bvLowered
  153. BorderWidth = 1
  154. Caption = ' Time Elapsed :'
  155. TabOrder = 6
  156. object LATime: TLabel
  157. Left = 139
  158. Top = 2
  159. Width = 36
  160. Height = 13
  161. Align = alRight
  162. Caption = 'LATime'
  163. end
  164. end
  165. end
  166. object BUOk: TButton
  167. Left = 160
  168. Top = 168
  169. Width = 75
  170. Height = 25
  171. Caption = 'Ok'
  172. Enabled = False
  173. TabOrder = 1
  174. OnClick = BUOkClick
  175. end
  176. object BUAbort: TButton
  177. Left = 312
  178. Top = 168
  179. Width = 75
  180. Height = 25
  181. Caption = 'Abort'
  182. ModalResult = 2
  183. TabOrder = 2
  184. Visible = False
  185. end
  186. object Timer: TTimer
  187. OnTimer = TimerTimer
  188. Left = 16
  189. Top = 16
  190. end
  191. end