File: main.lfm

package info (click to toggle)
lazarus 2.2.6%2Bdfsg2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 219,980 kB
  • sloc: pascal: 1,944,919; xml: 357,634; makefile: 270,608; cpp: 57,115; sh: 3,249; java: 609; perl: 297; sql: 222; ansic: 137
file content (177 lines) | stat: -rw-r--r-- 4,201 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
177
object Form1: TForm1
  Left = 319
  Height = 347
  Top = 177
  Width = 560
  Caption = 'Form1'
  ClientHeight = 347
  ClientWidth = 560
  OnShow = FormShow
  Position = poScreenCenter
  LCLVersion = '2.1.0.0'
  object Chart1: TChart
    Left = 0
    Height = 306
    Top = 0
    Width = 560
    AxisList = <    
      item
        Grid.Color = clGray
        AxisPen.Visible = True
        Marks.LabelBrush.Style = bsClear
        Minors = <>
        Title.LabelFont.Orientation = 900
        Title.LabelBrush.Style = bsClear
      end    
      item
        Grid.Color = clGray
        Alignment = calBottom
        AxisPen.Visible = True
        Marks.LabelBrush.Style = bsClear
        Minors = <>
        Title.LabelBrush.Style = bsClear
      end>
    BackColor = clSkyBlue
    Depth = 50
    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
    Color = clWhite
    object Chart1BarSeries1: TBarSeries
      ZPosition = 10
      BarBrush.Color = clTeal
      BarWidthPercent = 50
      Depth = 10
      DepthBrightnessDelta = -32
      Source = RandomChartSource1
    end
    object Chart1BarSeries2: TBarSeries
      ZPosition = 30
      BarBrush.Color = clMaroon
      BarWidthPercent = 50
      Depth = 10
      DepthBrightnessDelta = -32
      Source = RandomChartSource2
    end
    object Chart1LineSeries1: TLineSeries
      ZPosition = 50
      Depth = 10
      LinePen.Color = clBlue
      Source = RandomChartSource1
    end
  end
  object pnControls: TPanel
    Left = 0
    Height = 41
    Top = 306
    Width = 560
    Align = alBottom
    AutoSize = True
    ClientHeight = 41
    ClientWidth = 560
    TabOrder = 1
    object seDepth: TSpinEdit
      AnchorSideLeft.Control = lblDepth
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = pnControls
      Left = 52
      Height = 23
      Top = 9
      Width = 74
      BorderSpacing.Around = 8
      OnChange = seDepthChange
      TabOrder = 0
    end
    object lblDepth: TLabel
      AnchorSideLeft.Control = pnControls
      AnchorSideTop.Control = seDepth
      AnchorSideTop.Side = asrCenter
      Left = 9
      Height = 15
      Top = 13
      Width = 35
      BorderSpacing.Left = 8
      Caption = 'Depth:'
      ParentColor = False
    end
    object seAxisZ: TSpinEdit
      AnchorSideLeft.Control = lblAxisZ
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = seDepth
      Left = 192
      Height = 23
      Top = 9
      Width = 74
      BorderSpacing.Left = 8
      OnChange = seAxisZChange
      TabOrder = 1
    end
    object lblAxisZ: TLabel
      AnchorSideLeft.Control = seDepth
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = seAxisZ
      AnchorSideTop.Side = asrCenter
      Left = 150
      Height = 15
      Top = 13
      Width = 34
      BorderSpacing.Left = 24
      Caption = 'Axis Z:'
      ParentColor = False
    end
    object lblDepthBrightnessDelta: TLabel
      AnchorSideLeft.Control = seAxisZ
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = seDepthBrighnessDelta
      AnchorSideTop.Side = asrCenter
      Left = 290
      Height = 15
      Top = 13
      Width = 149
      BorderSpacing.Left = 24
      Caption = 'Depth brightness difference:'
      ParentColor = False
    end
    object seDepthBrighnessDelta: TSpinEdit
      AnchorSideLeft.Control = lblDepthBrightnessDelta
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = seDepth
      Left = 447
      Height = 23
      Top = 9
      Width = 76
      BorderSpacing.Left = 8
      MaxValue = 255
      MinValue = -255
      OnChange = seDepthBrighnessDeltaChange
      TabOrder = 2
      Value = -32
    end
  end
  object RandomChartSource1: TRandomChartSource
    PointsNumber = 7
    RandSeed = 545516281
    XMax = 7
    XMin = 1
    YMax = 12
    YMin = 4
    left = 120
    top = 52
  end
  object RandomChartSource2: TRandomChartSource
    PointsNumber = 7
    RandSeed = 87568756
    XMax = 7
    XMin = 1
    YMax = 12
    YMin = 1
    left = 120
    top = 100
  end
end