fRenderText.dfm 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. object FormRenderText: TFormRenderText
  2. Left = 381
  3. Top = 128
  4. Caption = 'RenderText Example'
  5. ClientHeight = 201
  6. ClientWidth = 329
  7. Color = clBtnFace
  8. Constraints.MinWidth = 256
  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. OnCreate = FormCreate
  16. PixelsPerInch = 96
  17. TextHeight = 13
  18. object Image: TImage32
  19. Left = 0
  20. Top = 61
  21. Width = 329
  22. Height = 140
  23. Align = alClient
  24. Bitmap.ResamplerClassName = 'TNearestResampler'
  25. BitmapAlign = baTopLeft
  26. Scale = 1.000000000000000000
  27. ScaleMode = smNormal
  28. TabOrder = 0
  29. OnResize = ImageResize
  30. end
  31. object PnlControl: TPanel
  32. Left = 0
  33. Top = 0
  34. Width = 329
  35. Height = 61
  36. Align = alTop
  37. BevelOuter = bvNone
  38. Font.Charset = DEFAULT_CHARSET
  39. Font.Color = clWindowText
  40. Font.Height = -11
  41. Font.Name = 'Tahoma'
  42. Font.Style = []
  43. ParentFont = False
  44. TabOrder = 1
  45. DesignSize = (
  46. 329
  47. 61)
  48. object LblAALevel: TLabel
  49. Left = 4
  50. Top = 36
  51. Width = 46
  52. Height = 13
  53. Caption = 'AA Level:'
  54. end
  55. object LblEnterText: TLabel
  56. Left = 4
  57. Top = 6
  58. Width = 78
  59. Height = 13
  60. Caption = 'Enter text here:'
  61. end
  62. object BtnTextOut: TSpeedButton
  63. Left = 116
  64. Top = 32
  65. Width = 22
  66. Height = 22
  67. GroupIndex = 1
  68. Down = True
  69. Caption = '0'
  70. Layout = blGlyphBottom
  71. OnClick = BtnTextOutClick
  72. end
  73. object BtnAntialias1: TSpeedButton
  74. Tag = 1
  75. Left = 140
  76. Top = 32
  77. Width = 22
  78. Height = 22
  79. GroupIndex = 1
  80. Caption = '1'
  81. Layout = blGlyphBottom
  82. OnClick = BtnTextOutClick
  83. end
  84. object BtnAntialias2: TSpeedButton
  85. Tag = 2
  86. Left = 164
  87. Top = 32
  88. Width = 22
  89. Height = 22
  90. GroupIndex = 1
  91. Caption = '2'
  92. Layout = blGlyphBottom
  93. OnClick = BtnTextOutClick
  94. end
  95. object BtnAntialias3: TSpeedButton
  96. Tag = 3
  97. Left = 188
  98. Top = 32
  99. Width = 22
  100. Height = 22
  101. GroupIndex = 1
  102. Caption = '3'
  103. Layout = blGlyphBottom
  104. OnClick = BtnTextOutClick
  105. end
  106. object BtnAntialias4: TSpeedButton
  107. Tag = 4
  108. Left = 212
  109. Top = 32
  110. Width = 22
  111. Height = 22
  112. GroupIndex = 1
  113. Caption = '4'
  114. Layout = blGlyphBottom
  115. OnClick = BtnTextOutClick
  116. end
  117. object BtnClearType: TSpeedButton
  118. Tag = -1
  119. Left = 92
  120. Top = 32
  121. Width = 22
  122. Height = 22
  123. GroupIndex = 1
  124. Caption = '-1'
  125. Layout = blGlyphBottom
  126. OnClick = BtnTextOutClick
  127. end
  128. object EditText: TEdit
  129. Left = 92
  130. Top = 4
  131. Width = 234
  132. Height = 21
  133. Anchors = [akLeft, akTop, akRight]
  134. AutoSize = False
  135. TabOrder = 0
  136. Text = 'EditText'
  137. OnChange = EditTextChange
  138. end
  139. object BtnClickMe: TButton
  140. Left = 253
  141. Top = 32
  142. Width = 73
  143. Height = 21
  144. Anchors = [akTop, akRight]
  145. Caption = 'Click me!'
  146. TabOrder = 1
  147. OnClick = BtnClickMeClick
  148. end
  149. end
  150. end