1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
object Form1: TForm1
Left = 362
Height = 240
Top = 172
Width = 441
Align = alBottom
Caption = 'Test LazFreeType'
ClientHeight = 240
ClientWidth = 441
KeyPreview = True
OnCreate = FormCreate
OnDestroy = FormDestroy
OnMouseMove = FormMouseMove
OnPaint = FormPaint
OnShow = FormShow
Position = poDefault
LCLVersion = '1.9.0.0'
object Panel_Option: TPanel
Left = 0
Height = 40
Top = 200
Width = 441
Align = alBottom
ClientHeight = 40
ClientWidth = 441
ParentColor = False
TabOrder = 0
object TrackBar_Size: TTrackBar
Left = 96
Height = 25
Top = 8
Width = 243
Frequency = 0
Max = 300
Min = 1
OnChange = TrackBar_SizeChange
Position = 30
Anchors = [akTop, akLeft, akRight]
TabOrder = 0
end
object LFontSize: TLabel
Left = 336
Height = 16
Top = 12
Width = 51
Alignment = taCenter
Anchors = [akTop, akRight]
AutoSize = False
Caption = 'LFontSize'
ParentColor = False
end
object Label1: TLabel
Left = 6
Height = 15
Top = 12
Width = 32
Caption = 'Zoom'
ParentColor = False
end
object SpinEdit_Zoom: TSpinEdit
Left = 48
Height = 23
Top = 8
Width = 40
MaxValue = 9
MinValue = 1
OnChange = SpinEdit_ZoomChange
TabOrder = 1
Value = 1
end
object CheckBox_Rect: TCheckBox
Left = 392
Height = 19
Top = 10
Width = 43
Anchors = [akTop, akRight]
Caption = 'Rect'
OnChange = CheckBox_RectChange
TabOrder = 2
end
end
end
|