-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathunit8.lfm
More file actions
119 lines (119 loc) · 2.21 KB
/
unit8.lfm
File metadata and controls
119 lines (119 loc) · 2.21 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
object Form8: TForm8
Left = 517
Height = 321
Top = 163
Width = 378
Caption = 'Form8'
ClientHeight = 321
ClientWidth = 378
Color = clGray
Position = poScreenCenter
LCLVersion = '4.99.0.0'
OnCreate = FormCreate
OnDestroy = FormDestroy
object SpeedButton1: TSpeedButton
Left = 280
Height = 25
Top = 8
Width = 25
AllowAllUp = True
Caption = 'R'
Down = True
GroupIndex = 1
OnClick = SpeedButton1Click
end
object SpeedButton2: TSpeedButton
Left = 312
Height = 25
Top = 8
Width = 25
AllowAllUp = True
Caption = 'G'
Down = True
GroupIndex = 2
OnClick = SpeedButton1Click
end
object SpeedButton3: TSpeedButton
Left = 344
Height = 25
Top = 8
Width = 25
AllowAllUp = True
Caption = 'B'
Down = True
GroupIndex = 3
OnClick = SpeedButton1Click
end
object Button1: TButton
Left = 8
Height = 25
Top = 288
Width = 89
Caption = 'Cancel'
Color = clGray
Font.Color = clSilver
ModalResult = 2
ParentFont = False
TabOrder = 0
end
object Button2: TButton
Left = 280
Height = 25
Top = 288
Width = 89
Caption = 'OK'
Color = clGray
Font.Color = clSilver
ModalResult = 1
ParentFont = False
TabOrder = 1
end
object Button3: TButton
Left = 280
Height = 25
Top = 176
Width = 89
Caption = 'reset'
Color = clGray
Font.Color = clSilver
ParentFont = False
TabOrder = 2
OnClick = Button3Click
end
object Button4: TButton
Left = 280
Height = 25
Top = 112
Width = 89
Caption = 'load'
Color = clGray
Font.Color = clSilver
ParentFont = False
TabOrder = 3
OnClick = Button4Click
end
object Button5: TButton
Left = 280
Height = 25
Top = 144
Width = 89
Caption = 'save'
Color = clGray
Font.Color = clSilver
ParentFont = False
TabOrder = 4
OnClick = Button5Click
end
object OpenDialog1: TOpenDialog
DefaultExt = '.curve'
Filter = 'Colorcurve|*.curve|All|*'
Left = 96
Top = 80
end
object SaveDialog1: TSaveDialog
DefaultExt = '.curve'
Filter = 'Colorcurve|*.curve|All|*'
Left = 96
Top = 144
end
end