123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- object FormRenderText: TFormRenderText
- Left = 381
- Top = 128
- Caption = 'RenderText example'
- ClientHeight = 207
- ClientWidth = 566
- Color = clBtnFace
- Constraints.MinHeight = 200
- Constraints.MinWidth = 580
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -12
- Font.Name = 'Segoe UI'
- Font.Style = []
- OnCreate = FormCreate
- TextHeight = 15
- object Image: TImage32
- Left = 0
- Top = 61
- Width = 566
- Height = 146
- Align = alClient
- Bitmap.ResamplerClassName = 'TNearestResampler'
- BitmapAlign = baTopLeft
- Scale = 1.000000000000000000
- ScaleMode = smNormal
- TabOrder = 1
- OnResize = ImageResize
- end
- object PanelTop: TPanel
- Left = 0
- Top = 0
- Width = 566
- Height = 61
- Align = alTop
- BevelOuter = bvNone
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Tahoma'
- Font.Style = []
- ParentFont = False
- TabOrder = 0
- DesignSize = (
- 566
- 61)
- object LabelText: TLabel
- Left = 4
- Top = 7
- Width = 78
- Height = 13
- Caption = 'Enter text here:'
- end
- object LabelFont: TLabel
- Left = 386
- Top = 7
- Width = 26
- Height = 13
- Anchors = [akTop, akRight]
- Caption = 'Font:'
- end
- object Bevel1: TBevel
- Left = 378
- Top = 4
- Width = 5
- Height = 51
- Shape = bsLeftLine
- end
- object EditText: TEdit
- Left = 92
- Top = 4
- Width = 277
- Height = 21
- Anchors = [akLeft, akTop, akRight]
- AutoSize = False
- TabOrder = 0
- Text = 'Excellence endures 0123456789'
- OnChange = Changed
- end
- object ButtonBenchmark: TButton
- Left = 224
- Top = 32
- Width = 145
- Height = 21
- Caption = 'Run Benchmark'
- TabOrder = 4
- OnClick = ButtonBenchmarkClick
- end
- object CheckBoxAntiAlias: TCheckBox
- Left = 4
- Top = 34
- Width = 97
- Height = 17
- Caption = 'Anti-alias'
- TabOrder = 2
- OnClick = Changed
- end
- object CheckBoxCanvas32: TCheckBox
- Left = 124
- Top = 34
- Width = 97
- Height = 17
- Caption = 'TCanvas32'
- TabOrder = 3
- OnClick = CheckBoxCanvas32Click
- end
- object ComboBoxFont: TComboBox
- Left = 418
- Top = 4
- Width = 143
- Height = 21
- Anchors = [akTop, akRight]
- TabOrder = 1
- OnChange = Changed
- end
- object CheckBoxBold: TCheckBox
- Left = 418
- Top = 34
- Width = 62
- Height = 17
- Anchors = [akTop, akRight]
- Caption = 'Bold'
- TabOrder = 5
- OnClick = Changed
- end
- object CheckBoxItalic: TCheckBox
- Left = 491
- Top = 34
- Width = 62
- Height = 17
- Anchors = [akTop, akRight]
- Caption = 'Italic'
- TabOrder = 6
- OnClick = Changed
- end
- end
- end
|