-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathunit1.lfm
189 lines (189 loc) · 3.82 KB
/
unit1.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
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
object Form1: TForm1
Left = 331
Height = 600
Top = 118
Width = 806
Caption = 'Form1'
ClientHeight = 600
ClientWidth = 806
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
LCLVersion = '2.3.0.0'
object Button1: TButton
Left = 608
Height = 25
Top = 496
Width = 185
Anchors = [akRight, akBottom]
Caption = 'Load from file'
OnClick = Button1Click
TabOrder = 0
end
object Button2: TButton
Left = 608
Height = 25
Top = 528
Width = 185
Anchors = [akRight, akBottom]
Caption = 'Save to file'
OnClick = Button2Click
TabOrder = 1
end
object Button3: TButton
Left = 608
Height = 25
Top = 560
Width = 185
Anchors = [akRight, akBottom]
Caption = 'Close'
OnClick = Button3Click
TabOrder = 2
end
object Label1: TLabel
Left = 616
Height = 32
Top = 270
Width = 107
Caption = 'use context menu'#13#10'to edit chart'
end
object GroupBox1: TGroupBox
Left = 608
Height = 129
Top = 344
Width = 185
Anchors = [akRight, akBottom]
Caption = ' for all do '
ClientHeight = 112
ClientWidth = 183
TabOrder = 3
object Button4: TButton
Left = 8
Height = 25
Top = 72
Width = 167
Caption = 'Set'
OnClick = Button4Click
TabOrder = 0
end
object Label2: TLabel
Left = 8
Height = 16
Top = 8
Width = 60
Caption = 'Pen width'
end
object Label3: TLabel
Left = 8
Height = 16
Top = 42
Width = 57
Caption = 'Pen color'
end
object Edit1: TEdit
Left = 96
Height = 26
Top = 0
Width = 80
TabOrder = 1
Text = 'Edit1'
end
object Shape1: TShape
Left = 96
Height = 25
Top = 32
Width = 79
end
end
object Button5: TButton
Left = 608
Height = 25
Top = 40
Width = 185
Anchors = [akTop, akRight]
Caption = 'New Random'
OnClick = Button5Click
TabOrder = 4
end
object Label4: TLabel
Left = 611
Height = 16
Top = 17
Width = 37
Caption = 'Count'
end
object Edit2: TEdit
Left = 713
Height = 26
Top = 8
Width = 80
Anchors = [akTop, akRight]
TabOrder = 5
Text = 'Edit2'
end
object PopupMenu1: TPopupMenu
Left = 136
Top = 136
object MenuItem1: TMenuItem
Caption = 'Add circle'
OnClick = MenuItem1Click
end
object MenuItem2: TMenuItem
Caption = 'Edit circle'
OnClick = MenuItem2Click
end
object MenuItem3: TMenuItem
Caption = 'Del circle'
OnClick = MenuItem3Click
end
object MenuItem4: TMenuItem
Caption = 'Clear'
OnClick = MenuItem4Click
end
end
object ColorDialog1: TColorDialog
Color = clBlack
CustomColors.Strings = (
'ColorA=000000'
'ColorB=000080'
'ColorC=008000'
'ColorD=008080'
'ColorE=800000'
'ColorF=800080'
'ColorG=808000'
'ColorH=808080'
'ColorI=C0C0C0'
'ColorJ=0000FF'
'ColorK=00FF00'
'ColorL=00FFFF'
'ColorM=FF0000'
'ColorN=FF00FF'
'ColorO=FFFF00'
'ColorP=FFFFFF'
'ColorQ=C0DCC0'
'ColorR=F0CAA6'
'ColorS=F0FBFF'
'ColorT=A4A0A0'
)
Left = 548
Top = 237
end
object OpenDialog1: TOpenDialog
DefaultExt = '.pc'
Filter = 'Packed Circle|*.pc|All|*.*'
Left = 304
Top = 72
end
object SaveDialog1: TSaveDialog
DefaultExt = '.pc'
Filter = 'Packed Circle|*.pc|All|*.*'
Left = 304
Top = 144
end
object Timer1: TTimer
Enabled = False
Interval = 10
OnTimer = Timer1Timer
Left = 624
Top = 48
end
end