UnitMain.dfm 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. object FormThickLineTest: TFormThickLineTest
  2. Left = 0
  3. Top = 0
  4. AutoSize = True
  5. BorderStyle = bsDialog
  6. Caption = 'Thick Line benchmark'
  7. ClientHeight = 697
  8. ClientWidth = 905
  9. Color = clBtnFace
  10. Font.Charset = DEFAULT_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -12
  13. Font.Name = 'Segoe UI'
  14. Font.Style = []
  15. Padding.Left = 10
  16. Padding.Top = 10
  17. Padding.Right = 10
  18. Padding.Bottom = 10
  19. Position = poScreenCenter
  20. TextHeight = 15
  21. object PaintBoxGDIThin: TPaintBox
  22. Left = 10
  23. Top = 52
  24. Width = 281
  25. Height = 273
  26. Cursor = crHandPoint
  27. OnClick = PaintBoxClick
  28. OnPaint = PaintBoxGDIThinPaint
  29. end
  30. object Label1: TLabel
  31. Left = 10
  32. Top = 10
  33. Width = 281
  34. Height = 40
  35. AutoSize = False
  36. Caption = 'TCanvas.LineTo'
  37. ShowAccelChar = False
  38. Layout = tlCenter
  39. WordWrap = True
  40. end
  41. object Label2: TLabel
  42. Left = 314
  43. Top = 10
  44. Width = 281
  45. Height = 40
  46. AutoSize = False
  47. Caption = 'TBitmap32.LineToAS'
  48. ShowAccelChar = False
  49. Layout = tlCenter
  50. WordWrap = True
  51. end
  52. object PaintBoxGDIThick: TPaintBox
  53. Left = 10
  54. Top = 372
  55. Width = 281
  56. Height = 273
  57. Cursor = crHandPoint
  58. OnClick = PaintBoxClick
  59. OnPaint = PaintBoxGDIThickPaint
  60. end
  61. object Label3: TLabel
  62. Left = 10
  63. Top = 330
  64. Width = 281
  65. Height = 40
  66. AutoSize = False
  67. Caption = 'TCanvas.LineTo'
  68. ShowAccelChar = False
  69. Layout = tlCenter
  70. WordWrap = True
  71. end
  72. object Label4: TLabel
  73. Left = 314
  74. Top = 330
  75. Width = 281
  76. Height = 40
  77. AutoSize = False
  78. Caption = 'TCanvas32.LineTo'
  79. ShowAccelChar = False
  80. Layout = tlCenter
  81. WordWrap = True
  82. end
  83. object Label5: TLabel
  84. Left = 614
  85. Top = 330
  86. Width = 281
  87. Height = 40
  88. AutoSize = False
  89. Caption = 'Graphics32 DrawThickLine'
  90. ShowAccelChar = False
  91. Layout = tlCenter
  92. WordWrap = True
  93. end
  94. object Label6: TLabel
  95. Left = 614
  96. Top = 10
  97. Width = 281
  98. Height = 40
  99. AutoSize = False
  100. Caption = 'TBitmap32.LineToS'
  101. ShowAccelChar = False
  102. Layout = tlCenter
  103. WordWrap = True
  104. end
  105. object PaintBox32_ThinAlpha: TPaintBox32
  106. Left = 314
  107. Top = 52
  108. Width = 281
  109. Height = 273
  110. Cursor = crHandPoint
  111. TabOrder = 0
  112. OnClick = PaintBox32Click
  113. OnPaintBuffer = PaintBox32_ThinAlphaPaintBuffer
  114. end
  115. object PaintBox32_Thick: TPaintBox32
  116. Left = 314
  117. Top = 372
  118. Width = 281
  119. Height = 273
  120. Cursor = crHandPoint
  121. TabOrder = 1
  122. OnClick = PaintBox32Click
  123. OnPaintBuffer = PaintBox32_ThickPaintBuffer
  124. end
  125. object ButtonRedraw: TButton
  126. Left = 406
  127. Top = 662
  128. Width = 101
  129. Height = 25
  130. Caption = 'Redraw all'
  131. TabOrder = 2
  132. OnClick = ButtonRedrawClick
  133. end
  134. object PaintBox32_ThickLine: TPaintBox32
  135. Left = 614
  136. Top = 372
  137. Width = 281
  138. Height = 273
  139. Cursor = crHandPoint
  140. TabOrder = 3
  141. OnClick = PaintBox32Click
  142. OnPaintBuffer = PaintBox32_ThickLinePaintBuffer
  143. end
  144. object PaintBox32_Thin: TPaintBox32
  145. Left = 614
  146. Top = 52
  147. Width = 281
  148. Height = 273
  149. Cursor = crHandPoint
  150. TabOrder = 4
  151. OnClick = PaintBox32Click
  152. OnPaintBuffer = PaintBox32_ThinPaintBuffer
  153. end
  154. end