-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathunit7.lfm
More file actions
97 lines (97 loc) · 1.92 KB
/
Copy pathunit7.lfm
File metadata and controls
97 lines (97 loc) · 1.92 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
object Form7: TForm7
Left = 334
Height = 304
Top = 115
Width = 198
BorderStyle = bsDialog
Caption = 'Form7'
ClientHeight = 304
ClientWidth = 198
Color = clGray
Position = poScreenCenter
LCLVersion = '3.99.0.0'
OnCreate = FormCreate
OnDestroy = FormDestroy
object Image1: TImage
Left = 8
Height = 180
Top = 8
Width = 180
AntialiasingMode = amOff
Center = True
Proportional = True
Stretch = True
end
object RadioButton1: TRadioButton
Left = 9
Height = 22
Top = 200
Width = 69
Caption = 'Normal'
Checked = True
Font.Color = clSilver
ParentFont = False
TabOrder = 1
TabStop = True
OnChange = FloatSpinEdit1Change
end
object RadioButton2: TRadioButton
Left = 104
Height = 22
Top = 200
Width = 71
Caption = 'Smooth'
Font.Color = clSilver
ParentFont = False
TabOrder = 0
OnChange = FloatSpinEdit1Change
end
object Button1: TButton
Left = 9
Height = 25
Top = 269
Width = 75
Caption = 'Cancel'
Color = clGray
Font.Color = clSilver
ModalResult = 2
ParentFont = False
TabOrder = 2
end
object Button2: TButton
Left = 113
Height = 25
Top = 269
Width = 75
Caption = 'OK'
Color = clGray
Font.Color = clSilver
ModalResult = 1
ParentFont = False
TabOrder = 3
end
object FloatSpinEdit1: TFloatSpinEdit
Left = 81
Height = 26
Top = 229
Width = 107
Color = clGray
DecimalPlaces = 1
Font.Color = clSilver
MaxValue = 360
MinValue = -360
ParentFont = False
TabOrder = 4
OnChange = FloatSpinEdit1Change
OnKeyDown = FloatSpinEdit1KeyDown
end
object Label1: TLabel
Left = 9
Height = 16
Top = 236
Width = 36
Caption = 'Angle'
Font.Color = clSilver
ParentFont = False
end
end