File: main.lfm

package info (click to toggle)
lazarus 1.2.4%2Bdfsg2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 170,220 kB
  • ctags: 115,165
  • sloc: pascal: 1,386,898; xml: 257,878; sh: 2,935; java: 603; makefile: 549; perl: 297; sql: 174; ansic: 137
file content (176 lines) | stat: -rw-r--r-- 3,992 bytes parent folder | download | duplicates (4)
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
object Form1: TForm1
  Left = 319
  Height = 397
  Top = 165
  Width = 396
  Caption = 'Form1'
  ClientHeight = 397
  ClientWidth = 396
  OnCreate = FormCreate
  LCLVersion = '1.1'
  object Chart1: TChart
    Left = 0
    Height = 307
    Top = 0
    Width = 396
    AxisList = <    
      item
        Grid.Visible = False
        Minors = <>
        Title.LabelFont.Orientation = 900
      end    
      item
        Grid.Visible = False
        Alignment = calBottom
        Minors = <>
      end>
    Extent.XMax = 1.7
    Extent.XMin = -1.7
    Extent.YMax = 1.7
    Extent.YMin = -1.7
    Foot.Brush.Color = clBtnFace
    Foot.Font.Color = clBlue
    Title.Brush.Color = clBtnFace
    Title.Font.Color = clBlue
    Title.Text.Strings = (
      'TAChart'
    )
    Toolset = ChartToolset1
    OnExtentChanged = Chart1ExtentChanged
    Align = alClient
    ParentColor = False
    object Chart1LineSeries: TLineSeries
      LinePen.Color = clRed
      Pointer.Brush.Color = clRed
      Pointer.Pen.Color = clRed
      ShowPoints = True
      Source = RandomChartSource1
    end
    object clRight: TConstantLine
      LineStyle = lsVertical
      Pen.Color = clGreen
      Pen.Style = psDot
      Position = 1.7
      UseBounds = False
    end
    object clLeft: TConstantLine
      LineStyle = lsVertical
      Pen.Color = clGreen
      Pen.Style = psDot
      Position = -1.7
      UseBounds = False
    end
    object clTop: TConstantLine
      Pen.Color = clGreen
      Pen.Style = psDot
      Position = 1.7
      UseBounds = False
    end
    object clBottom: TConstantLine
      Pen.Color = clGreen
      Pen.Style = psDot
      Position = -1.7
      UseBounds = False
    end
  end
  object Panel1: TPanel
    Left = 0
    Height = 90
    Top = 307
    Width = 396
    Align = alBottom
    ClientHeight = 90
    ClientWidth = 396
    TabOrder = 1
    object lblBoundValue: TLabel
      Left = 160
      Height = 13
      Top = 21
      Width = 26
      Caption = 'Value'
      ParentColor = False
    end
    object cgUseBounds: TCheckGroup
      Left = 1
      Height = 88
      Top = 1
      Width = 147
      Align = alLeft
      AutoFill = True
      Caption = ' Use bounds '
      ChildSizing.LeftRightSpacing = 8
      ChildSizing.TopBottomSpacing = 6
      ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
      ChildSizing.EnlargeVertical = crsHomogenousChildResize
      ChildSizing.ShrinkHorizontal = crsScaleChilds
      ChildSizing.ShrinkVertical = crsScaleChilds
      ChildSizing.Layout = cclLeftToRightThenTopToBottom
      ChildSizing.ControlsPerLine = 1
      ClientHeight = 70
      ClientWidth = 143
      Items.Strings = (
        'Left'
        'Right'
        'Bottom'
        'Top'
      )
      OnItemClick = cgUseBoundsItemClick
      TabOrder = 0
      Data = {
        0400000002020202
      }
    end
    object fseBounds: TFloatSpinEdit
      Left = 204
      Height = 21
      Top = 17
      Width = 50
      Increment = 0.1
      MaxValue = 10
      MinValue = 1
      OnChange = fseBoundsChange
      TabOrder = 1
      Value = 1.7
    end
    object btnPrevExtent: TButton
      Left = 159
      Height = 25
      Top = 49
      Width = 95
      Caption = 'Previous extent'
      OnClick = btnPrevExtentClick
      TabOrder = 2
    end
    object lblHistory: TLabel
      Left = 264
      Height = 13
      Top = 57
      Width = 44
      Caption = 'lblHistory'
      ParentColor = False
    end
  end
  object RandomChartSource1: TRandomChartSource
    PointsNumber = 20
    RandSeed = 628509515
    XMax = 5
    XMin = -5
    YMax = 5
    YMin = -5
    left = 176
    top = 118
  end
  object ChartToolset1: TChartToolset
    left = 336
    top = 320
    object ChartToolset1PanDragTool1: TPanDragTool
      Shift = [ssRight]
      LimitToExtent = [pdLeft, pdUp, pdRight, pdDown]
    end
    object ChartToolset1ZoomDragTool1: TZoomDragTool
      Shift = [ssLeft]
      AnimationInterval = 100
      AnimationSteps = 5
    end
  end
end