-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.fmx
60 lines (60 loc) · 1.64 KB
/
Main.fmx
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
object Form1: TForm1
Left = 0
Top = 0
Caption = 'Gamma Function'
ClientHeight = 532
ClientWidth = 722
Position = ScreenCenter
FormFactor.Width = 320
FormFactor.Height = 480
FormFactor.Devices = [Desktop]
OnCreate = FormCreate
OnDestroy = FormDestroy
DesignerMasterStyle = 0
inline Viewer1: TViewerFrame
Align = Client
Margins.Left = 10.000000000000000000
Margins.Top = 10.000000000000000000
Margins.Right = 10.000000000000000000
Margins.Bottom = 10.000000000000000000
Size.Width = 512.000000000000000000
Size.Height = 512.000000000000000000
Size.PlatformDefault = False
end
object Panel1: TPanel
Align = Right
Margins.Left = -10.000000000000000000
Position.X = 522.000000000000000000
Size.Width = 200.000000000000000000
Size.Height = 532.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'pushpanel'
TabOrder = 1
object LabelA: TLabel
Position.X = 5.000000000000000000
Position.Y = 15.000000000000000000
Size.Width = 66.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
TextSettings.HorzAlign = Trailing
Text = 'Algorithm :'
TabOrder = 0
end
object ComboBoxA: TComboBox
Items.Strings = (
'Lanczos 7'
'Lanczos 9'
'Lanczos 11'
'Lanczos 15'
'Ooura')
ItemIndex = 0
Position.X = 75.000000000000000000
Position.Y = 15.000000000000000000
Size.Width = 110.000000000000000000
Size.Height = 26.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
OnChange = ComboBoxAChange
end
end
end