-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathunit1.lfm
223 lines (223 loc) · 4.71 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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
object Form1: TForm1
Left = 329
Height = 500
Top = 115
Width = 700
Caption = 'Form1'
ClientHeight = 500
ClientWidth = 700
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '2.3.0.0'
object Panel1: TPanel
Left = 500
Height = 500
Top = 0
Width = 200
Anchors = [akTop, akRight, akBottom]
Caption = 'Panel1'
ClientHeight = 500
ClientWidth = 200
TabOrder = 0
object Label1: TLabel
Left = 8
Height = 15
Top = 8
Width = 48
Caption = 'Initial arc'
end
object ScrollBar1: TScrollBar
Left = 8
Height = 14
Top = 24
Width = 185
Max = 360
PageSize = 0
Position = 360
TabOrder = 0
OnChange = ScrollBar1Change
end
object Label2: TLabel
Left = 8
Height = 15
Top = 48
Width = 64
Caption = 'Angle offset'
end
object ScrollBar2: TScrollBar
Left = 8
Height = 14
Top = 64
Width = 185
Max = 360
PageSize = 0
TabOrder = 1
OnChange = ScrollBar2Change
end
object ScrollBar3: TScrollBar
Left = 8
Height = 14
Top = 112
Width = 185
Max = 10
PageSize = 0
TabOrder = 2
OnChange = ScrollBar3Change
end
object Label3: TLabel
Left = 8
Height = 15
Top = 94
Width = 38
Caption = 'Margin'
end
object Button1: TButton
Left = 8
Height = 25
Top = 400
Width = 179
Anchors = [akLeft, akBottom]
Caption = 'Load from file'
OnClick = Button1Click
TabOrder = 3
end
object Button2: TButton
Left = 8
Height = 25
Top = 432
Width = 179
Anchors = [akLeft, akBottom]
Caption = 'Save to file'
OnClick = Button2Click
TabOrder = 4
end
object Button3: TButton
Left = 8
Height = 25
Top = 464
Width = 179
Anchors = [akLeft, akBottom]
Caption = 'Close'
OnClick = Button3Click
TabOrder = 5
end
object Label4: TLabel
Left = 8
Height = 30
Top = 168
Width = 98
Caption = 'use context menu '#10'to edit chart'
end
object GroupBox1: TGroupBox
Left = 16
Height = 120
Top = 248
Width = 169
Caption = ' For all do '
ClientHeight = 100
ClientWidth = 165
TabOrder = 6
object Label5: TLabel
Left = 8
Height = 15
Top = 11
Width = 53
Caption = 'Pen width'
end
object Edit1: TEdit
Left = 80
Height = 23
Top = 3
Width = 80
TabOrder = 0
Text = 'Edit1'
end
object Label6: TLabel
Left = 8
Height = 15
Top = 38
Width = 50
Caption = 'Pen color'
end
object Shape1: TShape
Left = 80
Height = 21
Top = 32
Width = 80
end
object Button4: TButton
Left = 8
Height = 25
Top = 64
Width = 152
Caption = 'Set'
OnClick = Button4Click
TabOrder = 1
end
end
end
object PopupMenu1: TPopupMenu
Left = 200
Top = 200
object MenuItem1: TMenuItem
Caption = 'Add child'
OnClick = MenuItem1Click
end
object MenuItem5: TMenuItem
Caption = 'Add sibling'
OnClick = MenuItem5Click
end
object MenuItem3: TMenuItem
Caption = 'Edit element'
OnClick = MenuItem3Click
end
object MenuItem4: TMenuItem
Caption = 'Del element'
OnClick = MenuItem4Click
end
object MenuItem2: TMenuItem
Caption = 'Clear'
OnClick = MenuItem2Click
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 = 400
Top = 240
end
object OpenDialog1: TOpenDialog
DefaultExt = '.sbc'
Filter = 'Sunburstchart|*.sbc|All|*.*'
Left = 400
Top = 392
end
object SaveDialog1: TSaveDialog
DefaultExt = '.sbc'
Filter = 'Sunburstchart|*.sbc|All|*.*'
Left = 400
Top = 448
end
end