-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathunit4.lfm
76 lines (76 loc) · 2.05 KB
/
unit4.lfm
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
object Form4: TForm4
Left = 240
Height = 515
Top = 108
Width = 577
Caption = 'Form4'
ClientHeight = 515
ClientWidth = 577
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '2.3.0.0'
object Label1: TLabel
Left = 8
Height = 30
Top = 8
Width = 118
Caption = 'Aviable operators and'#10'their binding strength:'
ParentColor = False
end
object ListBox1: TListBox
Left = 8
Height = 419
Top = 48
Width = 168
Font.Height = -13
Font.Name = 'Courier New'
Font.Pitch = fpFixed
Items.Strings = (
'Operator Kind'
'----------------'
' strongest'
' - unary'
' + unary'
' abs unary'
' sqrt unary'
' sqr unary'
' sin unary'
' cos unary'
' ^ binary'
' / binary'
' * binary'
' - binary'
' + binary'
' max binary'
' min binary'
' = binary'
' <> binary'
' < binary'
' <= binary'
' > binary'
' >= binary'
' weakest'
)
ItemHeight = 16
ParentFont = False
ScrollWidth = 145
TabOrder = 0
end
object Button1: TButton
Left = 24
Height = 25
Top = 480
Width = 528
Caption = 'OK'
OnClick = Button1Click
TabOrder = 1
end
object Label2: TLabel
Left = 184
Height = 270
Top = 8
Width = 315
Caption = '! Attention !'#13#10'Only round braces allowed'#13#10' Use them to control the binding strength'#13#10#13#10'All Operators are inorder operators'#13#10' E.g. : Building the min value of two numbers by: ( x min y )'#13#10#13#10'The decimalseparator is the dot '#13#10' (independent by the used operating system settings)'#13#10#13#10'Sin, Cos are calculated in radian'#13#10#13#10'Available constants'#13#10' pi = 3.141...'#13#10' e = 2.718...'#13#10#13#10'You can use // as single line comments or'#13#10' { } to comment out any text block you want to'
ParentColor = False
end
end