1object Form1: TForm1 2 Left = 516 3 Height = 429 4 Top = 160 5 Width = 557 6 Caption = 'BGRA Antialiasing demo' 7 ClientHeight = 429 8 ClientWidth = 557 9 OnCreate = FormCreate 10 OnMouseDown = FormMouseDown 11 OnMouseMove = FormMouseMove 12 OnMouseUp = FormMouseUp 13 OnPaint = FormPaint 14 Position = poDefaultPosOnly 15 LCLVersion = '1.4.0.4' 16 object Panel1: TPanel 17 Left = 88 18 Height = 55 19 Top = 374 20 Width = 469 21 Anchors = [akLeft, akRight, akBottom] 22 ClientHeight = 55 23 ClientWidth = 469 24 TabOrder = 0 25 object Label1: TLabel 26 Left = 4 27 Height = 15 28 Top = 2 29 Width = 46 30 Caption = 'Pixel size' 31 ParentColor = False 32 end 33 object TrackBar_PixelSize: TTrackBar 34 Left = 4 35 Height = 25 36 Top = 21 37 Width = 373 38 Frequency = 4 39 Max = 100 40 Min = 8 41 OnChange = TrackBar_PixelSizeChange 42 Position = 32 43 Anchors = [akTop, akLeft, akRight] 44 TabOrder = 0 45 end 46 object Label_PixelSizeValue: TLabel 47 Left = 56 48 Height = 15 49 Top = 2 50 Width = 16 51 Caption = '= ?' 52 ParentColor = False 53 end 54 object Label2: TLabel 55 Left = 383 56 Height = 15 57 Top = 2 58 Width = 76 59 Anchors = [akTop, akRight] 60 Caption = 'Gamma factor' 61 ParentColor = False 62 end 63 object SpinEdit_Gamma: TFloatSpinEdit 64 Left = 392 65 Height = 23 66 Top = 22 67 Width = 66 68 Anchors = [akTop, akRight] 69 DecimalPlaces = 1 70 Increment = 0.1 71 MaxValue = 3 72 MinValue = 0.1 73 OnChange = SpinEdit_GammaChange 74 TabOrder = 1 75 Value = 1.7 76 end 77 end 78end 79