author | ca |
Wed, 05 Dec 2007 12:51:40 +0100 | |
changeset 2207 | 7f16eb639cc1 |
parent 2146 | a5ce8e00652f |
child 2666 | 316855d0ca7d |
permissions | -rw-r--r-- |
2078 | 1 |
"{ Package: 'stx:libtool2' }" |
2 |
||
3 |
"{ NameSpace: Tools }" |
|
4 |
||
5 |
ResourceSpecEditor subclass:#ProjectDefinitionEditor |
|
2079 | 6 |
instanceVariableNames:'definitionClass classList extensionsList selectedClassIndexHolder |
2078 | 7 |
classesTableColumns revisionNrHolder companyNameHolder |
8 |
fileMajorVersionNrHolder minorVersionNrHolder iconFileNameHolder |
|
9 |
fileReleaseNrHolder productNameHolder majorVersionNrHolder |
|
10 |
fileRevisionNrHolder fileDescriptionHolder releaseNrHolder |
|
11 |
fileMinorVersionNrHolder descriptionHolder legalCopyrightHolder |
|
12 |
isApplicationDefinitionHolder isNonGUIApplicationHolder |
|
2121 | 13 |
startSinglethreadedHolder hasConsoleHolder shownHasConsoleHolder |
14 |
startupClassNameHolder startupSelectorHolder prerequisitesList |
|
15 |
classListHolder extensionsListHolder prerequisitesListHolder |
|
16 |
documentExtensionsListStringHolder stcOptimizationFlagsHolder |
|
17 |
ccOptimizationFlagsHolder' |
|
2078 | 18 |
classVariableNames:'' |
19 |
poolDictionaries:'' |
|
20 |
category:'Interface-Tools' |
|
21 |
! |
|
22 |
||
23 |
Object subclass:#ClassListEntry |
|
24 |
instanceVariableNames:'className autoloaded win32 unix' |
|
25 |
classVariableNames:'' |
|
26 |
poolDictionaries:'' |
|
27 |
privateIn:ProjectDefinitionEditor |
|
28 |
! |
|
29 |
||
2079 | 30 |
Object subclass:#ExtensionsListEntry |
31 |
instanceVariableNames:'className selector' |
|
32 |
classVariableNames:'' |
|
33 |
poolDictionaries:'' |
|
34 |
privateIn:ProjectDefinitionEditor |
|
35 |
! |
|
36 |
||
2081 | 37 |
Object subclass:#PrerequisitesListEntry |
38 |
instanceVariableNames:'package' |
|
39 |
classVariableNames:'' |
|
40 |
poolDictionaries:'' |
|
41 |
privateIn:ProjectDefinitionEditor |
|
42 |
! |
|
43 |
||
2078 | 44 |
!ProjectDefinitionEditor class methodsFor:'documentation'! |
45 |
||
46 |
documentation |
|
47 |
" |
|
48 |
unfinished app-definition editor |
|
49 |
||
50 |
[author:] |
|
2100 | 51 |
cg (cg@FUSI) |
2078 | 52 |
|
53 |
[instance variables:] |
|
54 |
||
55 |
[class variables:] |
|
56 |
||
57 |
[see also:] |
|
58 |
||
59 |
" |
|
60 |
! |
|
61 |
||
62 |
examples |
|
63 |
" |
|
64 |
Starting the application: |
|
2100 | 65 |
[exBegin] |
2078 | 66 |
(ProjectDefinitionEditor new |
2100 | 67 |
definitionClass:stx_libbasic) open |
68 |
[exEnd] |
|
2078 | 69 |
|
2100 | 70 |
[exBegin] |
2078 | 71 |
(ProjectDefinitionEditor new |
2100 | 72 |
definitionClass:bosch_dapasx_application) open |
73 |
[exEnd] |
|
2078 | 74 |
" |
75 |
! ! |
|
76 |
||
2121 | 77 |
!ProjectDefinitionEditor class methodsFor:'help specs'! |
78 |
||
79 |
flyByHelpSpec |
|
80 |
"This resource specification was automatically generated |
|
81 |
by the UIHelpTool of ST/X." |
|
82 |
||
83 |
"Do not manually edit this!! If it is corrupted, |
|
84 |
the UIHelpTool may not be able to read the specification." |
|
85 |
||
86 |
" |
|
87 |
UIHelpTool openOnClass:Tools::ProjectDefinitionEditor |
|
88 |
" |
|
89 |
||
90 |
<resource: #help> |
|
91 |
||
92 |
^ super flyByHelpSpec addPairsFrom:#( |
|
93 |
||
94 |
#documentExtensions |
|
95 |
'";"-separated list of file extensions' |
|
96 |
||
97 |
) |
|
98 |
||
99 |
"Created: / 15-10-2006 / 14:34:57 / cg" |
|
100 |
! |
|
101 |
||
102 |
helpSpec |
|
103 |
"This resource specification was automatically generated |
|
104 |
by the UIHelpTool of ST/X." |
|
105 |
||
106 |
"Do not manually edit this!! If it is corrupted, |
|
107 |
the UIHelpTool may not be able to read the specification." |
|
108 |
||
109 |
" |
|
110 |
UIHelpTool openOnClass:Tools::ProjectDefinitionEditor |
|
111 |
" |
|
112 |
||
113 |
<resource: #help> |
|
114 |
||
115 |
^ super helpSpec addPairsFrom:#( |
|
116 |
||
117 |
#documentExtensions |
|
118 |
'";"-separated list of file extensions' |
|
119 |
||
120 |
) |
|
121 |
! ! |
|
122 |
||
2078 | 123 |
!ProjectDefinitionEditor class methodsFor:'interface specs'! |
124 |
||
125 |
classesSpec |
|
126 |
"This resource specification was automatically generated |
|
127 |
by the UIPainter of ST/X." |
|
128 |
||
129 |
"Do not manually edit this!! If it is corrupted, |
|
130 |
the UIPainter may not be able to read the specification." |
|
131 |
||
132 |
" |
|
2080 | 133 |
UIPainter new openOnClass:Tools::ProjectDefinitionEditor andSelector:#classesSpec |
134 |
Tools::ProjectDefinitionEditor new openInterface:#classesSpec |
|
2078 | 135 |
" |
136 |
||
137 |
<resource: #canvas> |
|
138 |
||
2100 | 139 |
^ |
2078 | 140 |
#(FullSpec |
2100 | 141 |
name: classesSpec |
142 |
window: |
|
2078 | 143 |
(WindowSpec |
2100 | 144 |
label: 'NewApplication' |
145 |
name: 'NewApplication' |
|
146 |
min: (Point 0 0) |
|
147 |
bounds: (Rectangle 0 0 300 300) |
|
148 |
) |
|
149 |
component: |
|
2078 | 150 |
(SpecCollection |
2100 | 151 |
collection: ( |
152 |
(DataSetSpec |
|
153 |
name: 'ClassesTable' |
|
154 |
layout: (LayoutFrame 0 0 0 0 0 1 0 1) |
|
155 |
model: selectedClassIndexHolder |
|
156 |
menu: classListMenu |
|
157 |
hasHorizontalScrollBar: true |
|
158 |
hasVerticalScrollBar: true |
|
159 |
dataList: classListHolder |
|
160 |
columnHolder: classesTableColumns |
|
161 |
) |
|
162 |
) |
|
163 |
||
164 |
) |
|
2078 | 165 |
) |
2081 | 166 |
|
167 |
"Modified: / 07-09-2006 / 11:35:14 / cg" |
|
2078 | 168 |
! |
169 |
||
170 |
compilationSpec |
|
171 |
"This resource specification was automatically generated |
|
172 |
by the UIPainter of ST/X." |
|
173 |
||
174 |
"Do not manually edit this!! If it is corrupted, |
|
175 |
the UIPainter may not be able to read the specification." |
|
176 |
||
177 |
" |
|
2080 | 178 |
UIPainter new openOnClass:Tools::ProjectDefinitionEditor andSelector:#compilationSpec |
179 |
Tools::ProjectDefinitionEditor new openInterface:#compilationSpec |
|
2078 | 180 |
" |
181 |
||
182 |
<resource: #canvas> |
|
183 |
||
2121 | 184 |
^ |
2078 | 185 |
#(FullSpec |
2121 | 186 |
name: compilationSpec |
187 |
window: |
|
2078 | 188 |
(WindowSpec |
2121 | 189 |
label: 'NewApplication' |
190 |
name: 'NewApplication' |
|
191 |
min: (Point 0 0) |
|
192 |
bounds: (Rectangle 0 0 433 300) |
|
193 |
) |
|
194 |
component: |
|
2078 | 195 |
(SpecCollection |
2121 | 196 |
collection: ( |
197 |
(FramedBoxSpec |
|
198 |
label: 'Optimization' |
|
199 |
name: 'FramedBox1' |
|
200 |
layout: (LayoutFrame 0 0 0 0 0 1 93 0) |
|
201 |
labelPosition: topLeft |
|
202 |
translateLabel: true |
|
203 |
component: |
|
204 |
(SpecCollection |
|
205 |
collection: ( |
|
206 |
(LabelSpec |
|
207 |
label: 'STC Optimization Flags:' |
|
208 |
name: 'Label1' |
|
209 |
layout: (LayoutFrame 0 0.0 7 0 160 0 29 0) |
|
210 |
translateLabel: true |
|
211 |
adjust: right |
|
212 |
) |
|
213 |
(ComboBoxSpec |
|
214 |
name: 'STCOptimizationFlagsComboBox' |
|
215 |
layout: (LayoutFrame 162 0.0 5 0 0 1.0 27 0) |
|
216 |
model: stcOptimizationFlagsHolder |
|
217 |
acceptOnPointerLeave: false |
|
218 |
comboList: stcOptimizationFlagList |
|
219 |
postBuildCallback: flagHolderBuilt: |
|
220 |
) |
|
221 |
(LabelSpec |
|
222 |
label: 'CC Optimization Flags:' |
|
223 |
name: 'Label2' |
|
224 |
layout: (LayoutFrame 0 0.0 35 0 160 0 57 0) |
|
225 |
translateLabel: true |
|
226 |
adjust: right |
|
227 |
) |
|
228 |
(ComboBoxSpec |
|
229 |
name: 'CCOptimizationFlagsComboBox' |
|
230 |
layout: (LayoutFrame 162 0.0 33 0 0 1.0 55 0) |
|
231 |
model: ccOptimizationFlagsHolder |
|
232 |
acceptOnPointerLeave: false |
|
233 |
comboList: ccOptimizationFlagList |
|
234 |
postBuildCallback: flagHolderBuilt: |
|
235 |
) |
|
236 |
) |
|
237 |
||
238 |
) |
|
239 |
) |
|
240 |
(FramedBoxSpec |
|
241 |
label: 'Includes' |
|
242 |
name: 'FramedBox2' |
|
243 |
layout: (LayoutFrame 0 0 98 0 0 1 160 0) |
|
244 |
labelPosition: topLeft |
|
245 |
translateLabel: true |
|
246 |
component: |
|
247 |
(SpecCollection |
|
248 |
collection: ( |
|
249 |
(LabelSpec |
|
250 |
label: 'Additional Includes:' |
|
251 |
name: 'Label3' |
|
252 |
layout: (LayoutFrame 0 0.0 7 0 160 0 29 0) |
|
253 |
translateLabel: true |
|
254 |
adjust: right |
|
255 |
) |
|
256 |
(InputFieldSpec |
|
257 |
name: 'IncludeFlagsEntryField' |
|
258 |
layout: (LayoutFrame 162 0.0 5 0 0 1.0 27 0) |
|
259 |
model: includeFlagsHolder |
|
260 |
acceptOnReturn: true |
|
261 |
acceptOnTab: true |
|
262 |
acceptOnLostFocus: true |
|
263 |
acceptOnPointerLeave: false |
|
264 |
) |
|
265 |
) |
|
266 |
||
267 |
) |
|
268 |
) |
|
269 |
) |
|
270 |
||
271 |
) |
|
2078 | 272 |
) |
273 |
! |
|
274 |
||
275 |
descriptionSpec |
|
276 |
"This resource specification was automatically generated |
|
277 |
by the UIPainter of ST/X." |
|
278 |
||
279 |
"Do not manually edit this!! If it is corrupted, |
|
280 |
the UIPainter may not be able to read the specification." |
|
281 |
||
282 |
" |
|
283 |
UIPainter new openOnClass:ApplicationDefinitionBuilder andSelector:#descriptionSpec |
|
284 |
ApplicationDefinitionBuilder new openInterface:#descriptionSpec |
|
285 |
" |
|
286 |
||
287 |
<resource: #canvas> |
|
288 |
||
2100 | 289 |
^ |
2078 | 290 |
#(FullSpec |
2100 | 291 |
name: descriptionSpec |
292 |
window: |
|
2078 | 293 |
(WindowSpec |
2100 | 294 |
label: 'NewApplication' |
295 |
name: 'NewApplication' |
|
296 |
min: (Point 0 0) |
|
297 |
bounds: (Rectangle 0 0 433 300) |
|
298 |
) |
|
299 |
component: |
|
2078 | 300 |
(SpecCollection |
2100 | 301 |
collection: ( |
302 |
(LabelSpec |
|
303 |
label: 'Company:' |
|
304 |
name: 'CompanyLabel' |
|
305 |
layout: (LayoutFrame 2 0.0 13 0 160 0 35 0) |
|
306 |
translateLabel: true |
|
307 |
adjust: right |
|
308 |
) |
|
309 |
(InputFieldSpec |
|
310 |
name: 'CompanyEntryField' |
|
311 |
layout: (LayoutFrame 162 0.0 12 0 -2 1.0 34 0) |
|
312 |
model: companyNameHolder |
|
313 |
acceptOnReturn: true |
|
314 |
acceptOnTab: true |
|
315 |
acceptOnLostFocus: true |
|
316 |
acceptOnPointerLeave: false |
|
317 |
) |
|
318 |
(LabelSpec |
|
319 |
label: 'Description:' |
|
320 |
name: 'DescriptionLabel' |
|
321 |
layout: (LayoutFrame 2 0.0 39 0 160 0 61 0) |
|
322 |
translateLabel: true |
|
323 |
adjust: right |
|
324 |
) |
|
325 |
(InputFieldSpec |
|
326 |
name: 'DescriptionEntryField' |
|
327 |
layout: (LayoutFrame 162 0.0 38 0 -2 1.0 60 0) |
|
328 |
model: descriptionHolder |
|
329 |
acceptOnReturn: true |
|
330 |
acceptOnTab: true |
|
331 |
acceptOnLostFocus: true |
|
332 |
acceptOnPointerLeave: false |
|
333 |
) |
|
334 |
(LabelSpec |
|
335 |
label: 'ProductName:' |
|
336 |
name: 'ProductNameLabel' |
|
337 |
layout: (LayoutFrame 2 0.0 65 0 160 0 87 0) |
|
338 |
translateLabel: true |
|
339 |
adjust: right |
|
340 |
) |
|
341 |
(InputFieldSpec |
|
342 |
name: 'ProductNameEntryField' |
|
343 |
layout: (LayoutFrame 162 0.0 64 0 -2 1.0 86 0) |
|
344 |
model: productNameHolder |
|
345 |
acceptOnReturn: true |
|
346 |
acceptOnTab: true |
|
347 |
acceptOnLostFocus: true |
|
348 |
acceptOnPointerLeave: false |
|
349 |
) |
|
350 |
(LabelSpec |
|
351 |
label: 'ProductVersion:' |
|
352 |
name: 'ProductVersionLabel' |
|
353 |
layout: (LayoutFrame 2 0.0 91 0 160 0 113 0) |
|
354 |
translateLabel: true |
|
355 |
adjust: right |
|
356 |
) |
|
357 |
(InputFieldSpec |
|
358 |
name: 'MajorVersionNrEntryField' |
|
359 |
layout: (LayoutFrame 162 0.0 90 0 182 0.0 112 0) |
|
360 |
model: majorVersionNrHolder |
|
361 |
type: number |
|
362 |
acceptOnReturn: true |
|
363 |
acceptOnTab: true |
|
364 |
acceptOnLostFocus: true |
|
365 |
acceptOnPointerLeave: false |
|
366 |
) |
|
367 |
(InputFieldSpec |
|
368 |
name: 'MinorVersionNrEntryField' |
|
369 |
layout: (LayoutFrame 184 0.0 90 0 204 0.0 112 0) |
|
370 |
model: minorVersionNrHolder |
|
371 |
type: numberOrNil |
|
372 |
acceptOnReturn: true |
|
373 |
acceptOnTab: true |
|
374 |
acceptOnLostFocus: true |
|
375 |
acceptOnPointerLeave: false |
|
376 |
) |
|
377 |
(InputFieldSpec |
|
378 |
name: 'RevisionNrEntryField' |
|
379 |
layout: (LayoutFrame 206 0.0 90 0 226 0.0 112 0) |
|
380 |
model: revisionNrHolder |
|
381 |
type: number |
|
382 |
acceptOnReturn: true |
|
383 |
acceptOnTab: true |
|
384 |
acceptOnLostFocus: true |
|
385 |
acceptOnPointerLeave: false |
|
386 |
) |
|
387 |
(InputFieldSpec |
|
388 |
name: 'ReleaseNrEntryField' |
|
389 |
layout: (LayoutFrame 228 0.0 90 0 248 0.0 112 0) |
|
390 |
model: releaseNrHolder |
|
391 |
type: number |
|
392 |
acceptOnReturn: true |
|
393 |
acceptOnTab: true |
|
394 |
acceptOnLostFocus: true |
|
395 |
acceptOnPointerLeave: false |
|
396 |
) |
|
397 |
(LabelSpec |
|
398 |
label: 'LegalCopyright:' |
|
399 |
name: 'LegalCopyrightLabel' |
|
400 |
layout: (LayoutFrame 2 0.0 119 0 160 0 141 0) |
|
401 |
translateLabel: true |
|
402 |
adjust: right |
|
403 |
) |
|
404 |
(InputFieldSpec |
|
405 |
name: 'LegalCopyrightEntryField' |
|
406 |
layout: (LayoutFrame 162 0.0 118 0 -2 1.0 140 0) |
|
407 |
model: legalCopyrightHolder |
|
408 |
acceptOnReturn: true |
|
409 |
acceptOnTab: true |
|
410 |
acceptOnLostFocus: true |
|
411 |
acceptOnPointerLeave: false |
|
412 |
) |
|
413 |
(LabelSpec |
|
414 |
label: 'FileDescriptionDescription:' |
|
415 |
name: 'FileDescriptionLabel' |
|
416 |
layout: (LayoutFrame 2 0.0 161 0 160 0 183 0) |
|
417 |
translateLabel: true |
|
418 |
adjust: right |
|
419 |
) |
|
420 |
(InputFieldSpec |
|
421 |
name: 'FileDescriptionEntryField' |
|
422 |
layout: (LayoutFrame 162 0.0 160 0 -2 1.0 182 0) |
|
423 |
model: fileDescriptionHolder |
|
424 |
acceptOnReturn: true |
|
425 |
acceptOnTab: true |
|
426 |
acceptOnLostFocus: true |
|
427 |
acceptOnPointerLeave: false |
|
428 |
) |
|
429 |
(LabelSpec |
|
430 |
label: 'FileVersion:' |
|
431 |
name: 'FileVersionLabel' |
|
432 |
layout: (LayoutFrame 2 0.0 187 0 160 0 209 0) |
|
433 |
translateLabel: true |
|
434 |
adjust: right |
|
435 |
) |
|
436 |
(InputFieldSpec |
|
437 |
name: 'FileMajorVersionNrEntryField' |
|
438 |
layout: (LayoutFrame 162 0.0 186 0 182 0.0 208 0) |
|
439 |
model: fileMajorVersionNrHolder |
|
440 |
type: number |
|
441 |
acceptOnReturn: true |
|
442 |
acceptOnTab: true |
|
443 |
acceptOnLostFocus: true |
|
444 |
acceptOnPointerLeave: false |
|
445 |
) |
|
446 |
(InputFieldSpec |
|
447 |
name: 'FileMinorVersionNrEntryField' |
|
448 |
layout: (LayoutFrame 184 0.0 186 0 204 0.0 208 0) |
|
449 |
model: fileMinorVersionNrHolder |
|
450 |
type: number |
|
451 |
acceptOnReturn: true |
|
452 |
acceptOnTab: true |
|
453 |
acceptOnLostFocus: true |
|
454 |
acceptOnPointerLeave: false |
|
455 |
) |
|
456 |
(InputFieldSpec |
|
457 |
name: 'FileRevisionNrEntryField' |
|
458 |
layout: (LayoutFrame 206 0.0 186 0 226 0.0 208 0) |
|
459 |
model: fileRevisionNrHolder |
|
460 |
type: number |
|
461 |
acceptOnReturn: true |
|
462 |
acceptOnTab: true |
|
463 |
acceptOnLostFocus: true |
|
464 |
acceptOnPointerLeave: false |
|
465 |
) |
|
466 |
(InputFieldSpec |
|
467 |
name: 'FileReleaseNrEntryField' |
|
468 |
layout: (LayoutFrame 228 0.0 186 0 248 0.0 208 0) |
|
469 |
model: fileReleaseNrHolder |
|
470 |
type: number |
|
471 |
acceptOnReturn: true |
|
472 |
acceptOnTab: true |
|
473 |
acceptOnLostFocus: true |
|
474 |
acceptOnPointerLeave: false |
|
475 |
) |
|
476 |
(LabelSpec |
|
477 |
label: 'Icon Filename:' |
|
478 |
name: 'IconFileNameLabel' |
|
479 |
layout: (LayoutFrame 2 0.0 236 0 160 0 258 0) |
|
480 |
visibilityChannel: isApplicationDefinitionHolder |
|
481 |
translateLabel: true |
|
482 |
adjust: right |
|
483 |
) |
|
484 |
(InputFieldSpec |
|
485 |
name: 'IconFileNameEntryField' |
|
486 |
layout: (LayoutFrame 162 0.0 234 0 -2 1.0 256 0) |
|
487 |
visibilityChannel: isApplicationDefinitionHolder |
|
488 |
model: iconFilenameHolder |
|
489 |
acceptOnReturn: true |
|
490 |
acceptOnTab: true |
|
491 |
acceptOnLostFocus: true |
|
492 |
acceptOnPointerLeave: false |
|
493 |
) |
|
494 |
) |
|
495 |
||
496 |
) |
|
2078 | 497 |
) |
498 |
! |
|
499 |
||
500 |
extensionsSpec |
|
501 |
"This resource specification was automatically generated |
|
502 |
by the UIPainter of ST/X." |
|
503 |
||
504 |
"Do not manually edit this!! If it is corrupted, |
|
505 |
the UIPainter may not be able to read the specification." |
|
506 |
||
507 |
" |
|
508 |
UIPainter new openOnClass:ApplicationDefinitionEditor andSelector:#extensionsSpec |
|
509 |
ApplicationDefinitionEditor new openInterface:#extensionsSpec |
|
510 |
" |
|
511 |
||
512 |
<resource: #canvas> |
|
513 |
||
2100 | 514 |
^ |
2078 | 515 |
#(FullSpec |
2100 | 516 |
name: extensionsSpec |
517 |
window: |
|
2078 | 518 |
(WindowSpec |
2100 | 519 |
label: 'NewApplication' |
520 |
name: 'NewApplication' |
|
521 |
min: (Point 0 0) |
|
522 |
bounds: (Rectangle 0 0 300 300) |
|
523 |
) |
|
524 |
component: |
|
2078 | 525 |
(SpecCollection |
2100 | 526 |
collection: ( |
527 |
(DataSetSpec |
|
528 |
name: 'ExtensionsTable' |
|
529 |
layout: (LayoutFrame 0 0 0 0 0 1 0 1) |
|
530 |
model: selectedExtensionIndexHolder |
|
531 |
hasHorizontalScrollBar: true |
|
532 |
hasVerticalScrollBar: true |
|
533 |
dataList: extensionsListHolder |
|
534 |
columnHolder: extensionsTableColumns |
|
535 |
) |
|
536 |
) |
|
537 |
||
538 |
) |
|
2078 | 539 |
) |
2081 | 540 |
|
541 |
"Modified: / 07-09-2006 / 11:35:17 / cg" |
|
2078 | 542 |
! |
543 |
||
544 |
prerequisitesSpec |
|
545 |
"This resource specification was automatically generated |
|
546 |
by the UIPainter of ST/X." |
|
547 |
||
548 |
"Do not manually edit this!! If it is corrupted, |
|
549 |
the UIPainter may not be able to read the specification." |
|
550 |
||
551 |
" |
|
552 |
UIPainter new openOnClass:ApplicationDefinitionEditor andSelector:#extensionsSpec |
|
553 |
ApplicationDefinitionEditor new openInterface:#extensionsSpec |
|
554 |
" |
|
555 |
||
556 |
<resource: #canvas> |
|
557 |
||
2100 | 558 |
^ |
2078 | 559 |
#(FullSpec |
2100 | 560 |
name: extensionsSpec |
561 |
window: |
|
2078 | 562 |
(WindowSpec |
2100 | 563 |
label: 'NewApplication' |
564 |
name: 'NewApplication' |
|
565 |
min: (Point 0 0) |
|
566 |
bounds: (Rectangle 0 0 300 300) |
|
567 |
) |
|
568 |
component: |
|
2078 | 569 |
(SpecCollection |
2100 | 570 |
collection: ( |
571 |
(DataSetSpec |
|
572 |
name: 'ExtensionsTable' |
|
573 |
layout: (LayoutFrame 0 0 0 0 0 1 0 1) |
|
574 |
model: selectedPrerequisitesIndexHolder |
|
575 |
hasHorizontalScrollBar: true |
|
576 |
hasVerticalScrollBar: true |
|
577 |
dataList: prerequisitesListHolder |
|
578 |
columnHolder: prerequisitesTableColumns |
|
579 |
) |
|
580 |
) |
|
581 |
||
582 |
) |
|
2078 | 583 |
) |
584 |
||
585 |
"Created: / 05-09-2006 / 13:21:32 / cg" |
|
2081 | 586 |
"Modified: / 07-09-2006 / 11:35:20 / cg" |
2078 | 587 |
! |
588 |
||
589 |
startupSpec |
|
590 |
"This resource specification was automatically generated |
|
591 |
by the UIPainter of ST/X." |
|
592 |
||
593 |
"Do not manually edit this!! If it is corrupted, |
|
594 |
the UIPainter may not be able to read the specification." |
|
595 |
||
596 |
" |
|
2080 | 597 |
UIPainter new openOnClass:Tools::ProjectDefinitionEditor andSelector:#startupSpec |
598 |
Tools::ProjectDefinitionEditor new openInterface:#startupSpec |
|
2078 | 599 |
" |
600 |
||
601 |
<resource: #canvas> |
|
602 |
||
603 |
^ |
|
604 |
#(FullSpec |
|
605 |
name: startupSpec |
|
606 |
window: |
|
607 |
(WindowSpec |
|
608 |
label: 'NewApplication' |
|
609 |
name: 'NewApplication' |
|
610 |
min: (Point 0 0) |
|
611 |
bounds: (Rectangle 0 0 433 300) |
|
612 |
) |
|
613 |
component: |
|
614 |
(SpecCollection |
|
615 |
collection: ( |
|
616 |
(FramedBoxSpec |
|
617 |
label: 'Startup' |
|
2121 | 618 |
name: 'StartupFrame' |
2080 | 619 |
layout: (LayoutFrame 0 0 0 0 0 1 93 0) |
2078 | 620 |
labelPosition: topLeft |
621 |
translateLabel: true |
|
622 |
component: |
|
623 |
(SpecCollection |
|
624 |
collection: ( |
|
625 |
(LabelSpec |
|
626 |
label: 'Startup Class:' |
|
627 |
name: 'Label1' |
|
628 |
layout: (LayoutFrame 0 0.0 7 0 160 0 29 0) |
|
629 |
translateLabel: true |
|
630 |
adjust: right |
|
631 |
) |
|
632 |
(InputFieldSpec |
|
633 |
name: 'StartupClassEntryField' |
|
634 |
layout: (LayoutFrame 162 0.0 5 0 0 1.0 27 0) |
|
2079 | 635 |
model: startupClassNameHolder |
2078 | 636 |
acceptOnReturn: true |
637 |
acceptOnTab: true |
|
638 |
acceptOnLostFocus: true |
|
639 |
acceptOnPointerLeave: false |
|
640 |
) |
|
641 |
(LabelSpec |
|
642 |
label: 'Startup Selector:' |
|
643 |
name: 'Label2' |
|
644 |
layout: (LayoutFrame 0 0.0 35 0 160 0 57 0) |
|
645 |
translateLabel: true |
|
646 |
adjust: right |
|
647 |
) |
|
648 |
(InputFieldSpec |
|
649 |
name: 'StartupSelectorEntryField' |
|
650 |
layout: (LayoutFrame 162 0.0 33 0 0 1.0 55 0) |
|
651 |
model: startupSelectorHolder |
|
652 |
acceptOnReturn: true |
|
653 |
acceptOnTab: true |
|
654 |
acceptOnLostFocus: true |
|
655 |
acceptOnPointerLeave: false |
|
656 |
) |
|
657 |
) |
|
658 |
||
659 |
) |
|
660 |
) |
|
661 |
(FramedBoxSpec |
|
662 |
label: 'Execution' |
|
2121 | 663 |
name: 'ExecutionFrame' |
664 |
layout: (LayoutFrame 0 0 94 0 0 1 176 0) |
|
2078 | 665 |
labelPosition: topLeft |
666 |
translateLabel: true |
|
667 |
component: |
|
668 |
(SpecCollection |
|
669 |
collection: ( |
|
670 |
(CheckBoxSpec |
|
671 |
label: 'Non-GUI Application' |
|
2100 | 672 |
name: 'Non-GUI CheckBox' |
2078 | 673 |
layout: (LayoutFrame 0 0.0 7 0 0 0.5 29 0) |
674 |
model: isNonGUIApplicationHolder |
|
675 |
translateLabel: true |
|
676 |
) |
|
677 |
(CheckBoxSpec |
|
678 |
label: 'Singlethreaded' |
|
2100 | 679 |
name: 'SinglethreadedCheckBox' |
2078 | 680 |
layout: (LayoutFrame 0 0.5 7 0 0 1 29 0) |
681 |
enableChannel: isNonGUIApplicationHolder |
|
682 |
model: startSinglethreadedHolder |
|
683 |
translateLabel: true |
|
684 |
) |
|
2100 | 685 |
(CheckBoxSpec |
686 |
label: 'Has Console' |
|
687 |
name: 'HasConsoleCheckBox1' |
|
688 |
layout: (LayoutFrame 0 0.5 34 0 0 1 56 0) |
|
689 |
enableChannel: isGUIApplicationHolder |
|
2121 | 690 |
model: shownHasConsoleHolder |
2100 | 691 |
translateLabel: true |
692 |
) |
|
2078 | 693 |
) |
694 |
||
695 |
) |
|
696 |
) |
|
2121 | 697 |
(FramedBoxSpec |
698 |
label: 'File Extensions' |
|
699 |
name: 'FileExtensionsFrame' |
|
700 |
layout: (LayoutFrame 0 0 177 0 0 1 237 0) |
|
701 |
labelPosition: topLeft |
|
702 |
translateLabel: true |
|
703 |
component: |
|
704 |
(SpecCollection |
|
705 |
collection: ( |
|
706 |
(LabelSpec |
|
707 |
label: 'Document Extensions:' |
|
708 |
name: 'Label3' |
|
709 |
layout: (LayoutFrame 0 0.0 7 0 160 0 29 0) |
|
710 |
activeHelpKey: documentExtensions |
|
711 |
translateLabel: true |
|
712 |
adjust: right |
|
713 |
) |
|
714 |
(InputFieldSpec |
|
715 |
activeHelpKey: documentExtensions |
|
716 |
name: 'EntryField1' |
|
717 |
layout: (LayoutFrame 162 0.0 5 0 0 1.0 27 0) |
|
718 |
model: documentExtensionsListStringHolder |
|
719 |
type: string |
|
720 |
acceptOnReturn: true |
|
721 |
acceptOnTab: true |
|
722 |
acceptOnLostFocus: true |
|
723 |
acceptOnPointerLeave: false |
|
724 |
) |
|
725 |
) |
|
726 |
||
727 |
) |
|
728 |
) |
|
2078 | 729 |
) |
730 |
||
731 |
) |
|
732 |
) |
|
2121 | 733 |
|
734 |
"Modified: / 15-10-2006 / 14:35:12 / cg" |
|
2078 | 735 |
! |
736 |
||
737 |
windowSpec |
|
738 |
"This resource specification was automatically generated |
|
739 |
by the UIPainter of ST/X." |
|
740 |
||
741 |
"Do not manually edit this!! If it is corrupted, |
|
742 |
the UIPainter may not be able to read the specification." |
|
743 |
||
744 |
" |
|
745 |
UIPainter new openOnClass:ApplicationDefinitionBuilder andSelector:#windowSpec |
|
746 |
ApplicationDefinitionBuilder new openInterface:#windowSpec |
|
747 |
ApplicationDefinitionBuilder open |
|
748 |
" |
|
749 |
||
750 |
<resource: #canvas> |
|
751 |
||
2100 | 752 |
^ |
2078 | 753 |
#(FullSpec |
2100 | 754 |
name: windowSpec |
755 |
window: |
|
2078 | 756 |
(WindowSpec |
2100 | 757 |
label: 'ApplicationDefinitionBuilder' |
758 |
name: 'ApplicationDefinitionBuilder' |
|
759 |
min: (Point 10 10) |
|
760 |
max: (Point 1024 768) |
|
761 |
bounds: (Rectangle 0 0 596 339) |
|
762 |
menu: mainMenu |
|
763 |
) |
|
764 |
component: |
|
2078 | 765 |
(SpecCollection |
2100 | 766 |
collection: ( |
767 |
(NoteBookViewSpec |
|
768 |
name: 'NoteBook1' |
|
769 |
layout: (LayoutFrame 0 0 0 0 0 1 0 1) |
|
770 |
model: selectedTabIndexHolder |
|
771 |
menu: tabList |
|
772 |
useIndex: true |
|
773 |
) |
|
774 |
) |
|
775 |
||
776 |
) |
|
2078 | 777 |
) |
778 |
||
779 |
"Modified: / 03-09-2006 / 10:57:33 / cg" |
|
780 |
! ! |
|
781 |
||
782 |
!ProjectDefinitionEditor class methodsFor:'list specs'! |
|
783 |
||
2079 | 784 |
tabList |
785 |
^ self tabListForApplication. |
|
786 |
||
787 |
"Created: / 06-09-2006 / 13:38:03 / cg" |
|
788 |
! |
|
789 |
||
2078 | 790 |
tabListForApplication |
791 |
"This resource specification was automatically generated |
|
792 |
by the TabListEditor of ST/X." |
|
793 |
||
794 |
"Do not manually edit this!! If it is corrupted, |
|
795 |
the TabListEditor may not be able to read the specification." |
|
796 |
||
797 |
" |
|
798 |
TabListEditor new openOnClass: self andSelector:#tabList |
|
799 |
" |
|
800 |
||
801 |
<resource: #tabList> |
|
802 |
||
803 |
^ #( |
|
804 |
(TabItem |
|
2100 | 805 |
label: 'Description' |
806 |
minorKey: descriptionSpec |
|
807 |
) |
|
2079 | 808 |
(TabItem |
2100 | 809 |
label: 'Classes' |
810 |
createNewBuilder: false |
|
811 |
translateLabel: true |
|
812 |
minorKey: classesSpec |
|
813 |
) |
|
2078 | 814 |
(TabItem |
2100 | 815 |
label: 'Extensions' |
816 |
minorKey: extensionsSpec |
|
817 |
) |
|
2078 | 818 |
(TabItem |
2100 | 819 |
label: 'Prerequisites' |
820 |
minorKey: prerequisitesSpec |
|
821 |
) |
|
2078 | 822 |
(TabItem |
2100 | 823 |
label: 'Compilation' |
824 |
minorKey: compilationSpec |
|
825 |
) |
|
2078 | 826 |
(TabItem |
2100 | 827 |
label: 'Startup' |
828 |
minorKey: startupSpec |
|
829 |
) |
|
2078 | 830 |
) |
2100 | 831 |
|
2078 | 832 |
collect:[:aTab| TabItem new fromLiteralArrayEncoding:aTab ] |
833 |
||
834 |
"Created: / 05-09-2006 / 16:24:48 / cg" |
|
2079 | 835 |
"Modified: / 06-09-2006 / 18:44:34 / cg" |
2078 | 836 |
! |
837 |
||
838 |
tabListForLibrary |
|
839 |
"This resource specification was automatically generated |
|
840 |
by the TabListEditor of ST/X." |
|
841 |
||
842 |
"Do not manually edit this!! If it is corrupted, |
|
843 |
the TabListEditor may not be able to read the specification." |
|
844 |
||
845 |
" |
|
846 |
TabListEditor new openOnClass: self andSelector:#tabList |
|
847 |
" |
|
848 |
||
849 |
<resource: #tabList> |
|
850 |
||
851 |
^ #( |
|
852 |
(TabItem |
|
2100 | 853 |
label: 'Description' |
854 |
minorKey: descriptionSpec |
|
855 |
) |
|
2079 | 856 |
(TabItem |
2100 | 857 |
label: 'Classes' |
858 |
createNewBuilder: false |
|
859 |
translateLabel: true |
|
860 |
minorKey: classesSpec |
|
861 |
) |
|
2078 | 862 |
(TabItem |
2100 | 863 |
label: 'Extensions' |
864 |
minorKey: extensionsSpec |
|
865 |
) |
|
2078 | 866 |
(TabItem |
2100 | 867 |
label: 'Prerequisites' |
868 |
minorKey: prerequisitesSpec |
|
869 |
) |
|
2078 | 870 |
(TabItem |
2100 | 871 |
label: 'Compilation' |
872 |
minorKey: compilationSpec |
|
873 |
) |
|
2078 | 874 |
) |
2100 | 875 |
|
2078 | 876 |
collect:[:aTab| TabItem new fromLiteralArrayEncoding:aTab ] |
877 |
||
878 |
"Created: / 05-09-2006 / 16:24:52 / cg" |
|
2079 | 879 |
"Modified: / 06-09-2006 / 18:44:38 / cg" |
2078 | 880 |
! ! |
881 |
||
882 |
!ProjectDefinitionEditor class methodsFor:'menu specs'! |
|
883 |
||
884 |
classListMenu |
|
885 |
"This resource specification was automatically generated |
|
886 |
by the MenuEditor of ST/X." |
|
887 |
||
888 |
"Do not manually edit this!! If it is corrupted, |
|
889 |
the MenuEditor may not be able to read the specification." |
|
890 |
||
891 |
" |
|
2082 | 892 |
MenuEditor new openOnClass:Tools::ProjectDefinitionEditor andSelector:#classListMenu |
893 |
(Menu new fromLiteralArrayEncoding:(Tools::ProjectDefinitionEditor classListMenu)) startUp |
|
2078 | 894 |
" |
895 |
||
896 |
<resource: #menu> |
|
897 |
||
2100 | 898 |
^ |
2078 | 899 |
#(Menu |
2100 | 900 |
( |
901 |
(MenuItem |
|
902 |
enabled: hasDefinitionClassHolder |
|
903 |
label: 'Generate' |
|
904 |
itemValue: menuGenerateClassList |
|
905 |
translateLabel: true |
|
906 |
) |
|
907 |
(MenuItem |
|
908 |
label: '-' |
|
909 |
) |
|
910 |
(MenuItem |
|
911 |
enabled: hasDefinitionClassHolder |
|
912 |
label: 'Add...' |
|
913 |
itemValue: menuAddClass |
|
914 |
translateLabel: true |
|
915 |
) |
|
916 |
(MenuItem |
|
917 |
enabled: hasDefinitionClassHolder |
|
918 |
label: 'Remove...' |
|
919 |
itemValue: menuRemoveClass |
|
920 |
translateLabel: true |
|
921 |
) |
|
922 |
) |
|
923 |
nil |
|
924 |
nil |
|
2078 | 925 |
) |
926 |
! |
|
927 |
||
928 |
extensionsListMenu |
|
929 |
"This resource specification was automatically generated |
|
930 |
by the MenuEditor of ST/X." |
|
931 |
||
932 |
"Do not manually edit this!! If it is corrupted, |
|
933 |
the MenuEditor may not be able to read the specification." |
|
934 |
||
935 |
" |
|
2082 | 936 |
MenuEditor new openOnClass:Tools::ProjectDefinitionEditor andSelector:#extensionsListMenu |
937 |
(Menu new fromLiteralArrayEncoding:(Tools::ProjectDefinitionEditor extensionsListMenu)) startUp |
|
2078 | 938 |
" |
939 |
||
940 |
<resource: #menu> |
|
941 |
||
2100 | 942 |
^ |
2078 | 943 |
#(Menu |
2100 | 944 |
( |
945 |
(MenuItem |
|
946 |
enabled: hasDefinitionClassHolder |
|
947 |
label: 'Generate' |
|
948 |
itemValue: menuGenerateExtensionsList |
|
949 |
translateLabel: true |
|
950 |
) |
|
951 |
(MenuItem |
|
952 |
label: '-' |
|
953 |
) |
|
954 |
(MenuItem |
|
955 |
enabled: hasDefinitionClassHolder |
|
956 |
label: 'Add...' |
|
957 |
itemValue: menuAddExtension |
|
958 |
translateLabel: true |
|
959 |
) |
|
960 |
(MenuItem |
|
961 |
enabled: hasDefinitionClassHolder |
|
962 |
label: 'Remove...' |
|
963 |
itemValue: menuRemoveExtension |
|
964 |
translateLabel: true |
|
965 |
) |
|
966 |
) |
|
967 |
nil |
|
968 |
nil |
|
2078 | 969 |
) |
970 |
! |
|
971 |
||
972 |
mainMenu |
|
973 |
"This resource specification was automatically generated |
|
974 |
by the MenuEditor of ST/X." |
|
975 |
||
976 |
"Do not manually edit this!! If it is corrupted, |
|
977 |
the MenuEditor may not be able to read the specification." |
|
978 |
||
979 |
" |
|
2082 | 980 |
MenuEditor new openOnClass:Tools::ProjectDefinitionEditor andSelector:#mainMenu |
981 |
(Menu new fromLiteralArrayEncoding:(Tools::ProjectDefinitionEditor mainMenu)) startUp |
|
2078 | 982 |
" |
983 |
||
984 |
<resource: #menu> |
|
985 |
||
2128
b64b5a143005
conditionalRight in startGroup
Claus Gittinger <cg@exept.de>
parents:
2121
diff
changeset
|
986 |
^ |
2078 | 987 |
#(Menu |
2121 | 988 |
( |
989 |
(MenuItem |
|
990 |
label: 'File' |
|
991 |
translateLabel: true |
|
2128
b64b5a143005
conditionalRight in startGroup
Claus Gittinger <cg@exept.de>
parents:
2121
diff
changeset
|
992 |
submenu: |
2121 | 993 |
(Menu |
994 |
( |
|
995 |
(MenuItem |
|
996 |
label: 'New Library' |
|
997 |
itemValue: menuNewLibraryDefinition |
|
998 |
translateLabel: true |
|
999 |
) |
|
1000 |
(MenuItem |
|
1001 |
label: 'New Application' |
|
1002 |
itemValue: menuNewApplicationDefinition |
|
1003 |
translateLabel: true |
|
1004 |
) |
|
1005 |
(MenuItem |
|
1006 |
label: '-' |
|
1007 |
) |
|
1008 |
(MenuItem |
|
1009 |
label: 'Open...' |
|
1010 |
itemValue: menuOpen |
|
1011 |
translateLabel: true |
|
1012 |
) |
|
1013 |
(MenuItem |
|
1014 |
label: '-' |
|
1015 |
) |
|
1016 |
(MenuItem |
|
1017 |
enabled: hasDefinitionClassHolder |
|
1018 |
label: 'Save' |
|
1019 |
itemValue: menuSave |
|
1020 |
translateLabel: true |
|
1021 |
) |
|
1022 |
(MenuItem |
|
1023 |
enabled: hasDefinitionClassHolder |
|
1024 |
label: 'Save As...' |
|
1025 |
itemValue: menuSaveAs |
|
1026 |
translateLabel: true |
|
1027 |
) |
|
1028 |
(MenuItem |
|
1029 |
label: '-' |
|
1030 |
) |
|
1031 |
(MenuItem |
|
1032 |
label: 'Exit' |
|
1033 |
itemValue: closeRequest |
|
1034 |
translateLabel: true |
|
1035 |
) |
|
1036 |
) |
|
1037 |
nil |
|
1038 |
nil |
|
1039 |
) |
|
1040 |
) |
|
1041 |
(MenuItem |
|
1042 |
label: 'Definition' |
|
1043 |
translateLabel: true |
|
2128
b64b5a143005
conditionalRight in startGroup
Claus Gittinger <cg@exept.de>
parents:
2121
diff
changeset
|
1044 |
submenu: |
2121 | 1045 |
(Menu |
1046 |
( |
|
1047 |
(MenuItem |
|
1048 |
enabled: hasDefinitionClassHolder |
|
1049 |
label: 'Generate Definitions' |
|
1050 |
itemValue: menuGenerateProjectDefinitions |
|
1051 |
translateLabel: true |
|
1052 |
) |
|
1053 |
) |
|
1054 |
nil |
|
1055 |
nil |
|
1056 |
) |
|
1057 |
) |
|
1058 |
(MenuItem |
|
1059 |
label: 'Classes' |
|
1060 |
translateLabel: true |
|
1061 |
isVisible: classesMenuVisibleHolder |
|
1062 |
submenuChannel: classListMenu |
|
1063 |
keepLinkedMenu: true |
|
1064 |
) |
|
1065 |
(MenuItem |
|
1066 |
label: 'Extensions' |
|
1067 |
translateLabel: true |
|
1068 |
isVisible: extensionsMenuVisibleHolder |
|
1069 |
submenuChannel: extensionsListMenu |
|
1070 |
keepLinkedMenu: true |
|
1071 |
) |
|
1072 |
(MenuItem |
|
1073 |
label: 'Prerequisites' |
|
1074 |
translateLabel: true |
|
1075 |
isVisible: prerequisitesMenuVisibleHolder |
|
1076 |
submenuChannel: prerequisitesListMenu |
|
1077 |
keepLinkedMenu: true |
|
1078 |
) |
|
1079 |
(MenuItem |
|
1080 |
label: 'Help' |
|
1081 |
translateLabel: true |
|
2128
b64b5a143005
conditionalRight in startGroup
Claus Gittinger <cg@exept.de>
parents:
2121
diff
changeset
|
1082 |
startGroup: conditionalRight |
b64b5a143005
conditionalRight in startGroup
Claus Gittinger <cg@exept.de>
parents:
2121
diff
changeset
|
1083 |
submenu: |
2121 | 1084 |
(Menu |
1085 |
( |
|
1086 |
(MenuItem |
|
1087 |
label: 'Documentation' |
|
1088 |
itemValue: openDocumentation |
|
1089 |
translateLabel: true |
|
1090 |
) |
|
1091 |
(MenuItem |
|
1092 |
label: '-' |
|
1093 |
) |
|
1094 |
(MenuItem |
|
1095 |
label: 'About this Application...' |
|
1096 |
itemValue: openAboutThisApplication |
|
1097 |
translateLabel: true |
|
1098 |
) |
|
1099 |
) |
|
1100 |
nil |
|
1101 |
nil |
|
1102 |
) |
|
1103 |
) |
|
1104 |
) |
|
1105 |
nil |
|
1106 |
nil |
|
2078 | 1107 |
) |
1108 |
! |
|
1109 |
||
1110 |
prerequisitesListMenu |
|
1111 |
"This resource specification was automatically generated |
|
1112 |
by the MenuEditor of ST/X." |
|
1113 |
||
1114 |
"Do not manually edit this!! If it is corrupted, |
|
1115 |
the MenuEditor may not be able to read the specification." |
|
1116 |
||
1117 |
" |
|
2082 | 1118 |
MenuEditor new openOnClass:Tools::ProjectDefinitionEditor andSelector:#prerequisitesListMenu |
1119 |
(Menu new fromLiteralArrayEncoding:(Tools::ProjectDefinitionEditor prerequisitesListMenu)) startUp |
|
2078 | 1120 |
" |
1121 |
||
1122 |
<resource: #menu> |
|
1123 |
||
2100 | 1124 |
^ |
2078 | 1125 |
#(Menu |
2100 | 1126 |
( |
1127 |
(MenuItem |
|
1128 |
enabled: hasDefinitionClassHolder |
|
1129 |
label: 'Generate' |
|
1130 |
itemValue: menuGeneratePrerequisitesList |
|
1131 |
translateLabel: true |
|
1132 |
) |
|
1133 |
(MenuItem |
|
1134 |
label: '-' |
|
1135 |
) |
|
1136 |
(MenuItem |
|
1137 |
enabled: hasDefinitionClassHolder |
|
1138 |
label: 'Add...' |
|
1139 |
itemValue: menuAddPrerequisite |
|
1140 |
translateLabel: true |
|
1141 |
) |
|
1142 |
(MenuItem |
|
1143 |
enabled: hasDefinitionClassHolder |
|
1144 |
label: 'Remove...' |
|
1145 |
itemValue: menuRemovePrerequisite |
|
1146 |
translateLabel: true |
|
1147 |
) |
|
1148 |
) |
|
1149 |
nil |
|
1150 |
nil |
|
2078 | 1151 |
) |
1152 |
! ! |
|
1153 |
||
1154 |
!ProjectDefinitionEditor class methodsFor:'tableColumns specs'! |
|
1155 |
||
1156 |
classesTableColumns |
|
1157 |
"This resource specification was automatically generated |
|
1158 |
by the DataSetBuilder of ST/X." |
|
1159 |
||
1160 |
"Do not manually edit this!! If it is corrupted, |
|
1161 |
the DataSetBuilder may not be able to read the specification." |
|
1162 |
||
1163 |
" |
|
2079 | 1164 |
DataSetBuilder new openOnClass:Tools::ProjectDefinitionEditor andSelector:#classesTableColumns |
2078 | 1165 |
" |
1166 |
||
1167 |
<resource: #tableColumns> |
|
1168 |
||
1169 |
^#( |
|
1170 |
(DataSetColumnSpec |
|
2111 | 1171 |
label: 'Class' |
1172 |
labelAlignment: left |
|
1173 |
labelButtonType: Button |
|
1174 |
model: className |
|
1175 |
canSelect: false |
|
2078 | 1176 |
) |
1177 |
(DataSetColumnSpec |
|
2111 | 1178 |
label: 'Auto' |
1179 |
labelButtonType: Button |
|
2146 | 1180 |
editorType: CheckToggle |
2111 | 1181 |
rendererType: CheckToggle |
1182 |
model: autoloaded |
|
2078 | 1183 |
) |