forked from radiasoft/rshellweg
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOptimizerResults.dfm
More file actions
174 lines (174 loc) · 3.9 KB
/
OptimizerResults.dfm
File metadata and controls
174 lines (174 loc) · 3.9 KB
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
object OptForm: TOptForm
Left = 0
Top = 0
Caption = 'OptForm'
ClientHeight = 807
ClientWidth = 1149
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -14
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnShow = FormShow
PixelsPerInch = 120
TextHeight = 17
object MainPanel: TPanel
Left = 0
Top = 0
Width = 1149
Height = 764
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Align = alClient
TabOrder = 0
object InfoPanel: TPanel
Left = 1106
Top = 1
Width = 42
Height = 761
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Align = alRight
TabOrder = 0
end
object MainChart: TChart
Left = 1
Top = 1
Width = 1105
Height = 761
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Title.Font.Height = -32
Title.Text.Strings = (
'TChart')
BottomAxis.LabelsAngle = 90
BottomAxis.LabelsFormat.Font.Height = -29
BottomAxis.Title.Font.Height = -32
LeftAxis.LabelsFormat.Font.Height = -29
LeftAxis.Title.Font.Height = -32
View3D = False
Align = alClient
Color = clWhite
TabOrder = 1
DefaultCanvas = 'TGDIPlusCanvas'
ColorPaletteIndex = 13
object AddSeries: TLineSeries
Legend.Visible = False
SeriesColor = clBlue
ShowInLegend = False
Brush.BackColor = clDefault
LinePen.Width = 4
Pointer.InflateMargins = True
Pointer.Style = psCircle
Pointer.Visible = True
XValues.Name = 'X'
XValues.Order = loAscending
YValues.Name = 'Y'
YValues.Order = loNone
end
object LineSeries: TLineSeries
Legend.Visible = False
ShowInLegend = False
Brush.BackColor = clDefault
LinePen.Width = 4
Pointer.InflateMargins = True
Pointer.Style = psCircle
Pointer.Visible = True
XValues.Name = 'X'
XValues.Order = loAscending
YValues.Name = 'Y'
YValues.Order = loNone
end
end
end
object BottomPanel: TPanel
Left = 0
Top = 764
Width = 1149
Height = 43
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Align = alBottom
TabOrder = 1
DesignSize = (
1149
43)
object EnergyButton: TSpeedButton
Left = 20
Top = 7
Width = 96
Height = 28
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
GroupIndex = 1
Caption = 'Energy'
OnClick = EnergyButtonClick
end
object CaptureButton: TSpeedButton
Left = 124
Top = 5
Width = 97
Height = 29
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
GroupIndex = 1
Down = True
Caption = 'Capture'
OnClick = CaptureButtonClick
end
object SpectrumButton: TSpeedButton
Left = 229
Top = 5
Width = 97
Height = 29
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
GroupIndex = 1
Caption = 'Spectrum'
OnClick = SpectrumButtonClick
end
object PhaseButton: TSpeedButton
Left = 333
Top = 5
Width = 97
Height = 29
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
GroupIndex = 1
Caption = 'Phase Length'
OnClick = PhaseButtonClick
end
object CloseButton: TButton
Left = 1063
Top = 7
Width = 67
Height = 32
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Anchors = [akRight, akBottom]
Caption = 'Close'
TabOrder = 0
OnClick = CloseButtonClick
end
end
end