File: Main.lfm

package info (click to toggle)
lazarus 2.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 214,460 kB
  • sloc: pascal: 1,862,622; xml: 265,709; cpp: 56,595; sh: 3,008; java: 609; makefile: 535; perl: 297; sql: 222; ansic: 137
file content (119 lines) | stat: -rw-r--r-- 2,554 bytes parent folder | download | duplicates (6)
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
object Form1: TForm1
  Left = 475
  Height = 369
  Top = 336
  Width = 629
  Caption = 'Form1'
  ClientHeight = 369
  ClientWidth = 629
  OnCreate = FormCreate
  LCLVersion = '1.1'
  object Chart1: TChart
    Left = 0
    Height = 369
    Top = 0
    Width = 507
    AxisList = <    
      item
        Minors = <>
        Title.LabelFont.Orientation = 900
      end    
      item
        Alignment = calBottom
        Minors = <>
      end>
    Foot.Brush.Color = clBtnFace
    Foot.Font.Color = clBlue
    Margins.Bottom = 0
    Title.Brush.Color = clBtnFace
    Title.Font.Color = clBlue
    Title.Text.Strings = (
      'TAChart'
    )
    Align = alClient
    DoubleBuffered = True
    ParentColor = False
    object Chart1BarSeries1: TBarSeries
      BarBrush.Color = 2183646
      Source = ListChartSource1
    end
  end
  object Panel1: TPanel
    Left = 507
    Height = 369
    Top = 0
    Width = 122
    Align = alRight
    ClientHeight = 369
    ClientWidth = 122
    TabOrder = 1
    object rgMethod: TRadioGroup
      Left = 1
      Height = 97
      Top = 1
      Width = 120
      Align = alTop
      AutoFill = True
      Caption = ' Method '
      ChildSizing.LeftRightSpacing = 6
      ChildSizing.TopBottomSpacing = 6
      ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
      ChildSizing.EnlargeVertical = crsHomogenousChildResize
      ChildSizing.ShrinkHorizontal = crsScaleChilds
      ChildSizing.ShrinkVertical = crsScaleChilds
      ChildSizing.Layout = cclLeftToRightThenTopToBottom
      ChildSizing.ControlsPerLine = 1
      ClientHeight = 79
      ClientWidth = 116
      ItemIndex = 0
      Items.Strings = (
        'Grow'
        'Add'
        'Add then grow'
      )
      OnClick = rgMethodClick
      TabOrder = 0
    end
    object btnStartStop: TButton
      Left = 9
      Height = 25
      Top = 144
      Width = 75
      Caption = 'Start / stop'
      OnClick = btnStartStopClick
      TabOrder = 1
    end
    object lblSkipped: TLabel
      Left = 9
      Height = 1
      Top = 340
      Width = 1
      ParentColor = False
    end
    object seTime: TSpinEdit
      Left = 9
      Height = 21
      Top = 108
      Width = 74
      Increment = 100
      MaxValue = 10000
      MinValue = 100
      OnChange = seTimeChange
      TabOrder = 2
      Value = 1000
    end
  end
  object ListChartSource1: TListChartSource
    DataPoints.Strings = (
      '1|2|?|'
      '2|3|?|'
      '3|5|?|'
      '4|6|?|'
      '5|9|?|'
      '6|7|?|'
      '7|8|?|'
    )
    left = 560
    top = 292
  end
end