1227
|
1 |
"
|
|
2 |
COPYRIGHT (c) 1999 by eXept Software AG
|
1371
|
3 |
All Rights Reserved
|
1227
|
4 |
|
|
5 |
This software is furnished under a license and may be used
|
|
6 |
only in accordance with the terms of that license and with the
|
|
7 |
inclusion of the above copyright notice. This software may not
|
|
8 |
be provided or otherwise made available to, or used by, any
|
|
9 |
other person. No title to or ownership of the software is
|
|
10 |
hereby transferred.
|
|
11 |
"
|
2076
|
12 |
"{ Package: 'stx:libtool2' }"
|
|
13 |
|
1037
|
14 |
ToolApplicationModel subclass:#ProjectBrowser
|
1251
|
15 |
instanceVariableNames:'projectTree modifiedChannel selectedTreeNodeHolder
|
|
16 |
lastMoveToProject'
|
1147
|
17 |
classVariableNames:'AlreadCheckedExistingModulesAndPackages'
|
1025
|
18 |
poolDictionaries:''
|
2076
|
19 |
category:'Interface-Tools'
|
1025
|
20 |
!
|
|
21 |
|
1079
|
22 |
TreeItemWithImage subclass:#ProjectTreeItem
|
1109
|
23 |
instanceVariableNames:'action spec info'
|
1025
|
24 |
classVariableNames:''
|
|
25 |
poolDictionaries:''
|
|
26 |
privateIn:ProjectBrowser
|
|
27 |
!
|
|
28 |
|
1026
|
29 |
ProjectBrowser::ProjectTreeItem subclass:#ProjectNode
|
|
30 |
instanceVariableNames:''
|
|
31 |
classVariableNames:''
|
|
32 |
poolDictionaries:''
|
|
33 |
privateIn:ProjectBrowser
|
|
34 |
!
|
|
35 |
|
1227
|
36 |
!ProjectBrowser class methodsFor:'documentation'!
|
|
37 |
|
|
38 |
copyright
|
|
39 |
"
|
|
40 |
COPYRIGHT (c) 1999 by eXept Software AG
|
1371
|
41 |
All Rights Reserved
|
1227
|
42 |
|
|
43 |
This software is furnished under a license and may be used
|
|
44 |
only in accordance with the terms of that license and with the
|
|
45 |
inclusion of the above copyright notice. This software may not
|
|
46 |
be provided or otherwise made available to, or used by, any
|
|
47 |
other person. No title to or ownership of the software is
|
|
48 |
hereby transferred.
|
|
49 |
"
|
|
50 |
|
|
51 |
|
|
52 |
|
|
53 |
!
|
|
54 |
|
|
55 |
documentation
|
|
56 |
"
|
2597
|
57 |
Obsolete - before even going into production...
|
|
58 |
|
1227
|
59 |
The new project browser & builder.
|
|
60 |
This one will (eventually) make packaging of classLibraries and
|
|
61 |
applications easier.
|
|
62 |
|
|
63 |
EXPERIMENTAL: not finished.
|
|
64 |
|
|
65 |
[start with:]
|
2597
|
66 |
ProjectBrowser open
|
1227
|
67 |
|
|
68 |
[see also:]
|
2597
|
69 |
Project
|
1227
|
70 |
|
|
71 |
[author:]
|
2597
|
72 |
Claus Gittinger, eXept Software AG
|
1227
|
73 |
"
|
|
74 |
! !
|
1025
|
75 |
|
1236
|
76 |
!ProjectBrowser class methodsFor:'class initialization'!
|
|
77 |
|
|
78 |
initialize
|
|
79 |
"add myself to the launchers tool menu"
|
|
80 |
|
2597
|
81 |
|menuItem|
|
|
82 |
menuItem := MenuItem new
|
|
83 |
translateLabel: true;
|
|
84 |
value: [ProjectBrowser open];
|
|
85 |
label:'Project Builder' icon:nil;
|
|
86 |
nameKey: #projectBrowserIcon;
|
|
87 |
activeHelpKey: #projectBrowserIcon.
|
|
88 |
|
|
89 |
NewLauncher
|
|
90 |
addMenuItem:menuItem
|
|
91 |
from:self
|
|
92 |
in:'menu.tools'
|
|
93 |
position:#( #after #changesBrowser)
|
|
94 |
space:true.
|
|
95 |
"/ NewLauncher allInstancesDo:[:l |
|
|
96 |
"/ l addUserTool:'Project Builder'
|
|
97 |
"/ action:[ProjectBrowser open]
|
|
98 |
"/ in:#menu
|
|
99 |
"/ after:'Changes Browser'
|
|
100 |
"/ icon:self projectBrowserIcon
|
|
101 |
"/ space:false
|
|
102 |
"/ ].
|
1236
|
103 |
|
|
104 |
"
|
|
105 |
self initialize
|
|
106 |
"
|
1237
|
107 |
"
|
|
108 |
NewLauncher allInstancesDo:[:l |
|
2597
|
109 |
l removeUserTool:'Project Builder'
|
1237
|
110 |
]
|
|
111 |
"
|
1236
|
112 |
! !
|
|
113 |
|
1147
|
114 |
!ProjectBrowser class methodsFor:'help specs'!
|
|
115 |
|
|
116 |
helpSpec
|
|
117 |
"This resource specification was automatically generated
|
|
118 |
by the UIHelpTool of ST/X."
|
|
119 |
|
|
120 |
"Do not manually edit this!! If it is corrupted,
|
|
121 |
the UIHelpTool may not be able to read the specification."
|
|
122 |
|
|
123 |
"
|
|
124 |
UIHelpTool openOnClass:ProjectBrowser
|
|
125 |
"
|
|
126 |
|
|
127 |
<resource: #help>
|
|
128 |
|
|
129 |
^super helpSpec addPairsFrom:#(
|
|
130 |
|
|
131 |
#accept
|
|
132 |
'Accept modifications made here.'
|
|
133 |
|
|
134 |
#appType
|
|
135 |
'An application - ie an executable program (and support files if any).'
|
|
136 |
|
|
137 |
#cancel
|
|
138 |
'Undo modifications made here.'
|
|
139 |
|
|
140 |
#defaultNamespace
|
|
141 |
'Namespace for new classes when created in the Browser.'
|
|
142 |
|
1231
|
143 |
#deliverGZipArchive
|
1147
|
144 |
'Package delivery into a gzip archive (for unix)'
|
|
145 |
|
1231
|
146 |
#deliverTarArchive
|
1147
|
147 |
'Package delivery into a tar archive (for unix)'
|
|
148 |
|
1231
|
149 |
#deliverZipArchive
|
1147
|
150 |
'Package delivery into a zip archive (for win32)'
|
|
151 |
|
1231
|
152 |
#deliverCompiledBinary
|
1229
|
153 |
'Create and deliver as compiled binary (classLibrary) - will only execute on the running systems architecture.'
|
|
154 |
|
|
155 |
#deliverByteCode
|
|
156 |
'Create and deliver as bytecode - portable across architectures.'
|
1147
|
157 |
|
|
158 |
#deliverLoadAll
|
|
159 |
'Deliver a loadAll script file, which files-In the other files.'
|
|
160 |
|
1231
|
161 |
#deliverSources
|
1147
|
162 |
'Include smalltalk sourceCode in the delivery.'
|
|
163 |
|
1231
|
164 |
#deliverMakefiles
|
|
165 |
'Include makefiles in the delivery.'
|
|
166 |
|
1147
|
167 |
#includeSource
|
|
168 |
'Include smalltalk sourceCode in the delivery.'
|
|
169 |
|
|
170 |
#installDirMacOS
|
|
171 |
'The final install directory for MacOS deliveries.'
|
|
172 |
|
|
173 |
#installDirUnix
|
|
174 |
'The final install directory for UNIX deliveries.'
|
|
175 |
|
|
176 |
#installDirVMS
|
|
177 |
'The final install directory for VMS deliveries.'
|
|
178 |
|
|
179 |
#installDirWin32
|
|
180 |
'The final install directory for Win32 deliveries.'
|
|
181 |
|
|
182 |
#libType
|
|
183 |
'A classLibrary addOn (and support files if any)'
|
|
184 |
|
1303
|
185 |
loadProjectCode
|
|
186 |
'Load projects classes from the project directory'
|
|
187 |
|
1223
|
188 |
#methodsFile
|
|
189 |
'Patches & Extensions are stored in this file.'
|
|
190 |
|
1147
|
191 |
#packageID
|
|
192 |
'Package ID used to associate classes & methods to this project.'
|
|
193 |
|
|
194 |
#projectDir
|
|
195 |
'The projects directory.'
|
|
196 |
|
|
197 |
#repositoryDirectory
|
|
198 |
'The directory path below the module in the source-repository.'
|
|
199 |
|
|
200 |
#repositoryModule
|
|
201 |
'The module (top directory) in the source-repository.'
|
|
202 |
|
1303
|
203 |
#saveProjectFile
|
|
204 |
'Write a new .prj file.'
|
|
205 |
|
1147
|
206 |
)
|
|
207 |
! !
|
|
208 |
|
1079
|
209 |
!ProjectBrowser class methodsFor:'image specs'!
|
|
210 |
|
1239
|
211 |
bigProjectBrowserIcon
|
|
212 |
"This resource specification was automatically generated
|
|
213 |
by the ImageEditor of ST/X."
|
|
214 |
|
|
215 |
"Do not manually edit this!! If it is corrupted,
|
|
216 |
the ImageEditor may not be able to read the specification."
|
|
217 |
|
|
218 |
"
|
|
219 |
self bigProjectBrowserIcon inspect
|
|
220 |
ImageEditor openOnClass:self andSelector:#bigProjectBrowserIcon
|
|
221 |
"
|
|
222 |
|
|
223 |
<resource: #image>
|
|
224 |
|
|
225 |
^Icon
|
1371
|
226 |
constantNamed:#'ProjectBrowser bigProjectBrowserIcon'
|
|
227 |
ifAbsentPut:[(Depth2Image new) width: 48; height: 48; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
|
1287
|
228 |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@U@@EUP@@@@@@@@@@U@@EUP@@@@@@@@@UUP
|
|
229 |
@UUU@@@@@@@@EUEPEP@U@@@@@@@@EUEPEP@U@@@@@@@@U@EPEP@U@@@@@@@@U@EPEP@U@@@@@@@@U@EPEP@U@@@@@@@@U@EPEPUU@@@@@@@@EU%Z%UU*(@@@
|
|
230 |
@@@@EU%Z%UU*"@@@@@@@EUUZUUZ*J@@@@@@@EUUUUUUU*@@@@@@@EUUUUUUU*@@@@@@@J**UU**E*@@@@@@@**%UZ*(%*@@@@@@B**%UZ*"%*@@@@@@@@@UU
|
|
231 |
@@J%*@@@@@@J**UZ**J%*@@@@@@J**UZ**J%*@@@@@@J**UZ**J%*@@@@@@J**UZ**J%*@@@@@@J**UZ**J%*@@@@@@J**UZ**J%*@@@@@@J**UZ**J%*@@@
|
|
232 |
@@@J**UZ**J%*@@@@@@J**UZ**J%*@@@@@@J**UZ**J%(@@@@@@J**UZ**J% @@@@@@J**UZ**J%@@@@@@@J**UZ**J%@@@@@@@J**UZ**J%@@@@@@@J**UZ
|
|
233 |
**J@@@@@@@@J**UZ**H@@@@@@@@J**UZ**@@@@@@@@@@@@UP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
|
234 |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 132 0 132 255 255 0]; mask:((Depth1Image new) width: 48; height: 48; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
|
|
235 |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8C<@@@@@8C<@@@@G<G?@@@@_\\G@@@@_\\G@@@@8\\G@@@@8\\G@@@@8\\G@@@@8???<@@@_???<@
|
|
236 |
@@_???<@@@_???<@@@_???<@@@_???<@@@????<@@A????<@@C????<@@G????<@@G????<@@G????<@@G????<@@G????<@@G????<@@G????<@@G????<@
|
|
237 |
@G????<@@G????<@@G????8@@G????0@@G???? @@G????@@@G????@@@G???<@@@G???8@@@G???0@@@G??? @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
2076
|
238 |
@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
|
|
239 |
!
|
1287
|
240 |
|
|
241 |
bigProjectBrowserIcon2
|
|
242 |
"This resource specification was automatically generated
|
|
243 |
by the ImageEditor of ST/X."
|
|
244 |
|
|
245 |
"Do not manually edit this!! If it is corrupted,
|
|
246 |
the ImageEditor may not be able to read the specification."
|
|
247 |
|
|
248 |
"
|
|
249 |
self bigProjectBrowserIcon2 inspect
|
|
250 |
ImageEditor openOnClass:self andSelector:#bigProjectBrowserIcon2
|
|
251 |
"
|
|
252 |
|
|
253 |
<resource: #image>
|
|
254 |
|
|
255 |
^Icon
|
1371
|
256 |
constantNamed:#'ProjectBrowser bigProjectBrowserIcon2'
|
|
257 |
ifAbsentPut:[(Depth2Image new) width: 48; height: 48; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
|
1287
|
258 |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@U@@EUP@@@@@@@@@@U@@EUP@@@@@@@@@UUP
|
|
259 |
@UUU@@@@@@@@EUEPEP@U@@@@@@@@EUEPEP@U@@@@@@@@U@EPEP@U@@@@@@@@U@EPEP@U@@@@@@@@U@EPEP@U@@@@@@@@U@EPEPUU@@@@@@@@EU%Z%UU*(@@@
|
|
260 |
@@@@EU%Z%UU*"@@@@@@@EUUZUUZ*J@@@@@@@EUUUUUUU*@@@@@@@EUUUUUUU*@@@@@@@J**UU**E*@@@@@@@**%UZ*(%*@@@@@@B**%UZ*"%*@@@@@@@@@UU
|
|
261 |
@@J%*@@@@@@J**UZ**J%*@@@@@@J**UZ**J%*@@@@@@J**UZ**J%*@@@@@@J**UZ**J%*@@@@@@J**UZ**J%*@@@@@@J**UZ**J%*@@@@@@J**UZ**J%*@@@
|
|
262 |
@@@J**UZ**J%*@@@@@@J**UZ**J%*@@@@@@J**UZ**J%(@@@@@@J**UZ**J% @@@@@@J**UZ**J%@@@@@@@J**UZ**J%@@@@@@@J**UZ**J%@@@@@@@J**UZ
|
|
263 |
**J@@@@@@@@J**UZ**H@@@@@@@@J**UZ**@@@@@@@@@@@@UP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
|
264 |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@') ; colorMapFromArray:#[0 0 0 132 0 132 255 255 0]; mask:((Depth1Image new) width: 48; height: 48; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
|
|
265 |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@8C<@@@@@8C<@@@@G<G?@@@@_\\G@@@@_\\G@@@@8\\G@@@@8\\G@@@@8\\G@@@@8???<@@@_???<@
|
|
266 |
@@_???<@@@_???<@@@_???<@@@_???<@@@????<@@A????<@@C????<@@G????<@@G????<@@G????<@@G????<@@G????<@@G????<@@G????<@@G????<@
|
|
267 |
@G????<@@G????<@@G????8@@G????0@@G???? @@G????@@@G????@@@G???<@@@G???8@@@G???0@@@G??? @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
2076
|
268 |
@@@@@@@@@@@@@@@@@@@@@@@@') ; yourself); yourself]
|
|
269 |
!
|
1239
|
270 |
|
1234
|
271 |
buildOptionsIcon
|
|
272 |
"This resource specification was automatically generated
|
|
273 |
by the ImageEditor of ST/X."
|
|
274 |
|
|
275 |
"Do not manually edit this!! If it is corrupted,
|
|
276 |
the ImageEditor may not be able to read the specification."
|
|
277 |
|
|
278 |
"
|
1287
|
279 |
self buildOptionsIcon inspect
|
|
280 |
ImageEditor openOnClass:self andSelector:#buildOptionsIcon
|
1234
|
281 |
"
|
|
282 |
|
|
283 |
<resource: #image>
|
|
284 |
|
|
285 |
^Icon
|
1371
|
286 |
constantNamed:#'ProjectBrowser buildOptionsIcon'
|
2076
|
287 |
ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@ATET@AUEE@APQAP@TDQT@AY%Z@@UUUX@J%*F@@E@I B)Z"X@*V(&@J%*I B)Z"X@*V($@J%*I@B)Z @@@T@@@@a') ; colorMapFromArray:#[0 0 0 132 0 132 255 255 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A30O[A%LF?<O?0??G?<??3??O?<??3??O?8??C?8O?@b') ; yourself); yourself]
|
|
288 |
!
|
1234
|
289 |
|
1097
|
290 |
classIcon
|
|
291 |
"This resource specification was automatically generated
|
|
292 |
by the ImageEditor of ST/X."
|
|
293 |
|
|
294 |
"Do not manually edit this!! If it is corrupted,
|
|
295 |
the ImageEditor may not be able to read the specification."
|
|
296 |
|
|
297 |
"
|
|
298 |
self classIcon inspect
|
|
299 |
ImageEditor openOnClass:self andSelector:#classIcon
|
|
300 |
"
|
|
301 |
|
|
302 |
<resource: #image>
|
|
303 |
|
|
304 |
^Icon
|
1371
|
305 |
constantNamed:#'ProjectBrowser classIcon'
|
2076
|
306 |
ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'UUUUUEUUUUQP@@@TTV*%EE@@@AQQUUTTTZ*)@@@@@@@AUUT@@Z*)@@EUUQQQ**$TTUUUEE@@@@AQUUUUTUUUUP@a') ; colorMapFromArray:#[0 0 0 255 255 255 132 130 132]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@C?8O? ?>C?8O? ?>C?8O? ?>C?8O? ?>@@@@@@b') ; yourself); yourself]
|
|
307 |
!
|
1097
|
308 |
|
1079
|
309 |
classesIcon
|
|
310 |
"This resource specification was automatically generated
|
|
311 |
by the ImageEditor of ST/X."
|
|
312 |
|
|
313 |
"Do not manually edit this!! If it is corrupted,
|
|
314 |
the ImageEditor may not be able to read the specification."
|
|
315 |
|
|
316 |
"
|
|
317 |
self classesIcon inspect
|
|
318 |
ImageEditor openOnClass:self andSelector:#classesIcon
|
|
319 |
"
|
|
320 |
|
|
321 |
<resource: #image>
|
|
322 |
|
|
323 |
^Icon
|
1371
|
324 |
constantNamed:#'ProjectBrowser classesIcon'
|
2076
|
325 |
ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@B"B%U(( @@@@HJ**"BBUUX @***H @@@BHB**("@)UZH J**"HB**("@@@@H (***HJ@@@BB*J** * @@@@@a') ; colorMapFromArray:#[0 0 0 132 130 132 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?>C?8O?8??#??/?>??;??/?>??;??/?>O?8?? ?>C?8b') ; yourself); yourself]
|
|
326 |
!
|
1079
|
327 |
|
|
328 |
commentIcon
|
|
329 |
"This resource specification was automatically generated
|
|
330 |
by the ImageEditor of ST/X."
|
|
331 |
|
|
332 |
"Do not manually edit this!! If it is corrupted,
|
|
333 |
the ImageEditor may not be able to read the specification."
|
|
334 |
|
|
335 |
"
|
|
336 |
self commentIcon inspect
|
|
337 |
ImageEditor openOnClass:self andSelector:#commentIcon
|
|
338 |
"
|
|
339 |
|
|
340 |
<resource: #image>
|
|
341 |
|
|
342 |
^Icon
|
1371
|
343 |
constantNamed:#'ProjectBrowser commentIcon'
|
|
344 |
ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'******************U****%Z***)V*********%Z***!!T***(UJ***ER***!!T***(UJ**(UT***(B****(** @a') ; colorMapFromArray:#[0 0 0 0 0 255 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
|
1287
|
345 |
@@@@@@@@@8@C @N@@@@C @N@@8@C @N@@8@G0@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
|
346 |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
2076
|
347 |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself]
|
|
348 |
!
|
1079
|
349 |
|
|
350 |
deploymentIcon
|
|
351 |
"This resource specification was automatically generated
|
|
352 |
by the ImageEditor of ST/X."
|
|
353 |
|
|
354 |
"Do not manually edit this!! If it is corrupted,
|
|
355 |
the ImageEditor may not be able to read the specification."
|
|
356 |
|
|
357 |
"
|
|
358 |
self deploymentIcon inspect
|
|
359 |
ImageEditor openOnClass:self andSelector:#deploymentIcon
|
|
360 |
"
|
|
361 |
|
|
362 |
<resource: #image>
|
|
363 |
|
|
364 |
^Icon
|
1371
|
365 |
constantNamed:#'ProjectBrowser deploymentIcon'
|
2076
|
366 |
ifAbsentPut:[(Depth2Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@ATET@AUEE@APQAP@TDQT@AY%Z@@UUUX@J%*F@@E@I B)Z"X@*V(&@J%*I B)Z"X@*V($@J%*I@B)Z @@@T@@@@a') ; colorMapFromArray:#[0 0 0 132 0 132 255 255 0]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'A30O[A%LF?<O?0??G?<??3??O?<??3??O?8??C?8O?@b') ; yourself); yourself]
|
|
367 |
!
|
1079
|
368 |
|
|
369 |
filesIcon
|
|
370 |
"This resource specification was automatically generated
|
|
371 |
by the ImageEditor of ST/X."
|
|
372 |
|
|
373 |
"Do not manually edit this!! If it is corrupted,
|
|
374 |
the ImageEditor may not be able to read the specification."
|
|
375 |
|
|
376 |
"
|
|
377 |
self filesIcon inspect
|
|
378 |
ImageEditor openOnClass:self andSelector:#filesIcon
|
|
379 |
"
|
|
380 |
|
|
381 |
<resource: #image>
|
|
382 |
|
|
383 |
^Icon
|
1371
|
384 |
constantNamed:#'ProjectBrowser filesIcon'
|
2076
|
385 |
ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@G:@P@A_(E@@U>!!W;E_ U?9W?!!_>E?8G? _>@@@b') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@C? O?@?>C?<O?8??3??/??????????O?<??0??C?<b') ; yourself); yourself]
|
|
386 |
!
|
1079
|
387 |
|
1218
|
388 |
methodIcon
|
|
389 |
"This resource specification was automatically generated
|
|
390 |
by the ImageEditor of ST/X."
|
|
391 |
|
|
392 |
"Do not manually edit this!! If it is corrupted,
|
|
393 |
the ImageEditor may not be able to read the specification."
|
|
394 |
|
|
395 |
"
|
|
396 |
self methodIcon inspect
|
|
397 |
ImageEditor openOnClass:self andSelector:#methodIcon
|
|
398 |
"
|
|
399 |
|
|
400 |
<resource: #image>
|
|
401 |
|
|
402 |
^Icon
|
1371
|
403 |
constantNamed:#'ProjectBrowser methodIcon'
|
2076
|
404 |
ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@DH@@@@@@@@4QA@@@@@@@TQDPP@@@@@@MDQDH@@@@@@PQDQA@@@@@@LTQA@@@@@@@@I@L@@@@@@@@QD@@@@@@@@@H@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 0 0 132 132 0 0 132 0 132 255 0 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@B@@\@C8@_0A? C?@G<@O @\@@ @@@@@@@@@b') ; yourself); yourself]
|
|
405 |
!
|
1218
|
406 |
|
1079
|
407 |
methodsIcon
|
|
408 |
"This resource specification was automatically generated
|
|
409 |
by the ImageEditor of ST/X."
|
|
410 |
|
|
411 |
"Do not manually edit this!! If it is corrupted,
|
|
412 |
the ImageEditor may not be able to read the specification."
|
|
413 |
|
|
414 |
"
|
|
415 |
self multipleUnlockedMagentaIcon inspect
|
|
416 |
ImageEditor openOnClass:self andSelector:#multipleUnlockedMagentaIcon
|
|
417 |
"
|
|
418 |
|
|
419 |
<resource: #image>
|
|
420 |
|
|
421 |
^Icon
|
1371
|
422 |
constantNamed:#'ProjectBrowser methodsIcon'
|
|
423 |
ifAbsentPut:[(Depth4Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(4 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@@@@@@DH@@@@@@@@4QA@@@@@@@TQDPP@@@@@@MDQDH@@@@@@PQDQA@@@@@@LTQA@@@@@@M@I@L@@@@@EDPQD@@@@@@CQDIB@@@@@@DDQDPP@@@@@CEDPP@@@@@@@BPC@@@@@@@@DQ@@@@@@@@@B@@@@@@@@@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 0 0 132 132 0 0 132 0 132 255 0 255]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'B@@\@C8@_0A? C?@G<@? G<@_8@?0A?@C8@G@@H@@@@b') ; yourself); yourself]
|
1079
|
424 |
|
|
425 |
|
1080
|
426 |
!
|
|
427 |
|
1109
|
428 |
prerequisiteClassesIcon
|
|
429 |
<resource: #programImage>
|
|
430 |
|
|
431 |
^ self classesIcon
|
|
432 |
!
|
|
433 |
|
1291
|
434 |
prerequisitePackagesIcon
|
1109
|
435 |
<resource: #programImage>
|
|
436 |
|
|
437 |
^ self projectsIcon
|
|
438 |
!
|
|
439 |
|
1080
|
440 |
prerequisitesIcon
|
|
441 |
"This resource specification was automatically generated
|
|
442 |
by the ImageEditor of ST/X."
|
|
443 |
|
|
444 |
"Do not manually edit this!! If it is corrupted,
|
|
445 |
the ImageEditor may not be able to read the specification."
|
|
446 |
|
|
447 |
"
|
|
448 |
self prerequisitesIcon inspect
|
|
449 |
ImageEditor openOnClass:self andSelector:#prerequisitesIcon
|
|
450 |
"
|
|
451 |
|
|
452 |
<resource: #image>
|
|
453 |
|
|
454 |
^Icon
|
1371
|
455 |
constantNamed:#'ProjectBrowser prerequisitesIcon'
|
2076
|
456 |
ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@C@@L@@@@@@@@@@0A#@F@@X@@@@@L@@0@@@@@@@b') ; colorMapFromArray:#[0 0 0 127 127 127]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@A8@G(@^PA80@C@^@=8S7//^D<@C7#@^LA9@G(@@@@b') ; yourself); yourself]
|
|
457 |
!
|
1109
|
458 |
|
1236
|
459 |
projectBrowserIcon
|
|
460 |
"This resource specification was automatically generated
|
|
461 |
by the ImageEditor of ST/X."
|
|
462 |
|
|
463 |
"Do not manually edit this!! If it is corrupted,
|
|
464 |
the ImageEditor may not be able to read the specification."
|
|
465 |
|
|
466 |
"
|
|
467 |
self projectBrowserIcon inspect
|
|
468 |
ImageEditor openOnClass:self andSelector:#projectBrowserIcon
|
|
469 |
"
|
|
470 |
|
|
471 |
<resource: #image>
|
|
472 |
|
|
473 |
^Icon
|
1371
|
474 |
constantNamed:#'ProjectBrowser projectBrowserIcon'
|
|
475 |
ifAbsentPut:[(Depth2Image new) width: 32; height: 32; photometric:(#palette); bitsPerSample:(#(2 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
|
1287
|
476 |
@@@T@ET@@@@@@UTAUT@@@@@EQPTAP@@@@APEAPE@@@@@E@TE@T@@@@@TAPTUP@@@@@U%)UZ @@@@AUVUV( @@@@EUUUUZ@@@@@*)U*!!(@@@@B*UZ(& @@@@@
|
|
477 |
ET@JZ@@@@J*U*()(@@@@*)V*"& @@@B*%Z*JZ@@@@J*U*()(@@@@*)V*"& @@@B*%Z*JZ@@@@J*U*() @@@@*)V*"$@@@@B*%Z*JP@@@@J*U*( @@@@@*)V*
|
|
478 |
@@@@@@@EP@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; colorMapFromArray:#[0 0 0 132 0 132 255 255 0]; mask:((Depth1Image new) width: 32; height: 32; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'
|
|
479 |
@FC0@@G1>@@C,1 @A#LX@@X3F@@F_?<@@???@@O??0@C??<@A???@@_??0@_??<@G???@A???0@_??<@G???@A???0@_??<@G??>@A???@@_?? @G??0@A??
|
2076
|
480 |
8@@_?<@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@b') ; yourself); yourself]
|
|
481 |
!
|
1236
|
482 |
|
1109
|
483 |
projectsIcon
|
|
484 |
"This resource specification was automatically generated
|
|
485 |
by the ImageEditor of ST/X."
|
|
486 |
|
|
487 |
"Do not manually edit this!! If it is corrupted,
|
|
488 |
the ImageEditor may not be able to read the specification."
|
|
489 |
|
|
490 |
"
|
|
491 |
self projectsIcon inspect
|
|
492 |
ImageEditor openOnClass:self andSelector:#projectsIcon
|
|
493 |
"
|
|
494 |
|
|
495 |
<resource: #image>
|
|
496 |
|
|
497 |
^Icon
|
1371
|
498 |
constantNamed:#'ProjectBrowser projectsIcon'
|
2076
|
499 |
ifAbsentPut:[(Depth1Image new) width: 16; height: 16; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@_8C?P_;@@\O=0?7C?\O=0?6C?PO<@@@@@@@@@b') ; colorMapFromArray:#[0 0 0 255 128 128]; mask:((Depth1Image new) width: 16; height: 16; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@G? ?>G?8??''?>_?9??''?>_?9??G?8_?A?8@@@@@@b') ; yourself); yourself]
|
|
500 |
! !
|
1079
|
501 |
|
1025
|
502 |
!ProjectBrowser class methodsFor:'interface specs'!
|
|
503 |
|
1240
|
504 |
classValidationDialogSpec
|
|
505 |
"This resource specification was automatically generated
|
|
506 |
by the UIPainter of ST/X."
|
|
507 |
|
|
508 |
"Do not manually edit this!! If it is corrupted,
|
|
509 |
the UIPainter may not be able to read the specification."
|
|
510 |
|
|
511 |
"
|
|
512 |
UIPainter new openOnClass:ProjectBrowser andSelector:#classValidationDialogSpec
|
|
513 |
ProjectBrowser new openInterface:#classValidationDialogSpec
|
|
514 |
"
|
|
515 |
|
|
516 |
<resource: #canvas>
|
|
517 |
|
|
518 |
^
|
|
519 |
#(#FullSpec
|
1371
|
520 |
#name: #classValidationDialogSpec
|
|
521 |
#window:
|
1240
|
522 |
#(#WindowSpec
|
1371
|
523 |
#label: 'ProjectBrowser'
|
|
524 |
#name: 'ProjectBrowser'
|
|
525 |
#min: #(#Point 10 10)
|
|
526 |
#max: #(#Point 1024 768)
|
|
527 |
#bounds: #(#Rectangle 24 554 457 1003)
|
|
528 |
#menu: #mainMenu
|
|
529 |
#icon: #bigProjectBrowserIcon
|
|
530 |
)
|
|
531 |
#component:
|
1240
|
532 |
#(#SpecCollection
|
1371
|
533 |
#collection: #(
|
|
534 |
#(#VariableVerticalPanelSpec
|
|
535 |
#name: 'VariableVerticalPanel1'
|
|
536 |
#layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 -30 1.0)
|
|
537 |
#handles:
|
|
538 |
#(#OrderedCollection
|
|
539 |
#Any 0.5
|
|
540 |
1.0
|
|
541 |
)
|
|
542 |
#component:
|
|
543 |
#(#SpecCollection
|
|
544 |
#collection: #(
|
|
545 |
#(#ViewSpec
|
|
546 |
#name: 'Box1'
|
|
547 |
#component:
|
|
548 |
#(#SpecCollection
|
|
549 |
#collection: #(
|
|
550 |
#(#LabelSpec
|
|
551 |
#label: 'Classes only in Image'
|
|
552 |
#name: 'Label1'
|
|
553 |
#layout: #(#LayoutFrame 0 0 0 0 0 1 30 0)
|
|
554 |
#translateLabel: true
|
|
555 |
#adjust: #left
|
|
556 |
)
|
|
557 |
#(#SequenceViewSpec
|
|
558 |
#name: 'List2'
|
|
559 |
#layout: #(#LayoutFrame 0 0.0 30 0.0 0 1.0 0 1.0)
|
|
560 |
#hasHorizontalScrollBar: true
|
|
561 |
#hasVerticalScrollBar: true
|
|
562 |
#useIndex: false
|
|
563 |
#sequenceList: #classesInImageOnly
|
|
564 |
)
|
|
565 |
)
|
1240
|
566 |
|
1371
|
567 |
)
|
|
568 |
)
|
|
569 |
#(#ViewSpec
|
|
570 |
#name: 'Box2'
|
|
571 |
#component:
|
|
572 |
#(#SpecCollection
|
|
573 |
#collection: #(
|
|
574 |
#(#LabelSpec
|
|
575 |
#label: 'Classes only in Project'
|
|
576 |
#name: 'Label2'
|
|
577 |
#layout: #(#LayoutFrame 0 0 0 0 0 1 30 0)
|
|
578 |
#translateLabel: true
|
|
579 |
#adjust: #left
|
|
580 |
)
|
|
581 |
#(#SequenceViewSpec
|
|
582 |
#name: 'List1'
|
|
583 |
#layout: #(#LayoutFrame 0 0.0 30 0.0 0 1.0 0 1.0)
|
|
584 |
#hasHorizontalScrollBar: true
|
|
585 |
#hasVerticalScrollBar: true
|
|
586 |
#useIndex: false
|
|
587 |
#sequenceList: #classesInProjectOnly
|
|
588 |
)
|
|
589 |
)
|
1240
|
590 |
|
1371
|
591 |
)
|
|
592 |
)
|
|
593 |
)
|
1240
|
594 |
|
1371
|
595 |
)
|
|
596 |
)
|
|
597 |
#(#HorizontalPanelViewSpec
|
|
598 |
#name: 'HorizontalPanel1'
|
|
599 |
#layout: #(#LayoutFrame 0 0 -30 1 0 1 0 1)
|
|
600 |
#horizontalLayout: #center
|
|
601 |
#verticalLayout: #center
|
|
602 |
#horizontalSpace: 3
|
|
603 |
#verticalSpace: 3
|
|
604 |
#component:
|
|
605 |
#(#SpecCollection
|
|
606 |
#collection: #(
|
|
607 |
#(#ActionButtonSpec
|
|
608 |
#label: 'OK'
|
|
609 |
#name: 'Button1'
|
|
610 |
#translateLabel: true
|
|
611 |
#model: #closeRequest
|
|
612 |
#extent: #(#Point 125 22)
|
|
613 |
)
|
|
614 |
)
|
1240
|
615 |
|
1371
|
616 |
)
|
|
617 |
)
|
|
618 |
)
|
1240
|
619 |
|
1371
|
620 |
)
|
1240
|
621 |
)
|
|
622 |
!
|
|
623 |
|
1025
|
624 |
emptyRightCanvasSpec
|
|
625 |
"This resource specification was automatically generated
|
|
626 |
by the UIPainter of ST/X."
|
|
627 |
|
|
628 |
"Do not manually edit this!! If it is corrupted,
|
|
629 |
the UIPainter may not be able to read the specification."
|
|
630 |
|
|
631 |
"
|
|
632 |
UIPainter new openOnClass:ProjectBrowser andSelector:#emptyRightCanvasSpec
|
|
633 |
ProjectBrowser new openInterface:#emptyRightCanvasSpec
|
|
634 |
"
|
|
635 |
|
|
636 |
<resource: #canvas>
|
|
637 |
|
1232
|
638 |
^
|
|
639 |
#(#FullSpec
|
1371
|
640 |
#name: #emptyRightCanvasSpec
|
|
641 |
#window:
|
1232
|
642 |
#(#WindowSpec
|
1371
|
643 |
#label: 'NewApplication'
|
|
644 |
#name: 'NewApplication'
|
|
645 |
#min: #(#Point 10 10)
|
|
646 |
#max: #(#Point 1280 1024)
|
|
647 |
#bounds: #(#Rectangle 10 20 310 320)
|
|
648 |
)
|
|
649 |
#component:
|
1232
|
650 |
#(#SpecCollection
|
1371
|
651 |
#collection: #(
|
|
652 |
#(#TextEditorSpec
|
|
653 |
#name: 'TextEditor1'
|
|
654 |
#layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
|
|
655 |
#initiallyInvisible: true
|
|
656 |
#model: #rightCanvasTextHolder
|
|
657 |
#hasHorizontalScrollBar: true
|
|
658 |
#hasVerticalScrollBar: true
|
|
659 |
#miniScrollerHorizontal: true
|
|
660 |
#isReadOnly: true
|
|
661 |
)
|
|
662 |
)
|
1232
|
663 |
|
1371
|
664 |
)
|
1025
|
665 |
)
|
|
666 |
!
|
|
667 |
|
1255
|
668 |
methodValidationDialogSpec
|
|
669 |
"This resource specification was automatically generated
|
|
670 |
by the UIPainter of ST/X."
|
|
671 |
|
|
672 |
"Do not manually edit this!! If it is corrupted,
|
|
673 |
the UIPainter may not be able to read the specification."
|
|
674 |
|
|
675 |
"
|
|
676 |
UIPainter new openOnClass:ProjectBrowser andSelector:#classValidationDialogSpec
|
|
677 |
ProjectBrowser new openInterface:#classValidationDialogSpec
|
|
678 |
"
|
|
679 |
|
|
680 |
<resource: #canvas>
|
|
681 |
|
|
682 |
^
|
|
683 |
#(#FullSpec
|
1371
|
684 |
#name: #classValidationDialogSpec
|
|
685 |
#window:
|
1255
|
686 |
#(#WindowSpec
|
1371
|
687 |
#label: 'ProjectBrowser'
|
|
688 |
#name: 'ProjectBrowser'
|
|
689 |
#min: #(#Point 10 10)
|
|
690 |
#max: #(#Point 1024 768)
|
|
691 |
#bounds: #(#Rectangle 24 554 457 1003)
|
|
692 |
#menu: #mainMenu
|
|
693 |
#icon: #bigProjectBrowserIcon
|
|
694 |
)
|
|
695 |
#component:
|
1255
|
696 |
#(#SpecCollection
|
1371
|
697 |
#collection: #(
|
|
698 |
#(#VariableVerticalPanelSpec
|
|
699 |
#name: 'VariableVerticalPanel1'
|
|
700 |
#layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 -30 1.0)
|
|
701 |
#handles:
|
|
702 |
#(#OrderedCollection
|
|
703 |
#Any 0.5
|
|
704 |
1.0
|
|
705 |
)
|
|
706 |
#component:
|
|
707 |
#(#SpecCollection
|
|
708 |
#collection: #(
|
|
709 |
#(#ViewSpec
|
|
710 |
#name: 'Box1'
|
|
711 |
#component:
|
|
712 |
#(#SpecCollection
|
|
713 |
#collection: #(
|
|
714 |
#(#LabelSpec
|
|
715 |
#label: 'Methods only in Image'
|
|
716 |
#name: 'Label1'
|
|
717 |
#layout: #(#LayoutFrame 0 0 0 0 0 1 30 0)
|
|
718 |
#translateLabel: true
|
|
719 |
#adjust: #left
|
|
720 |
)
|
|
721 |
#(#SequenceViewSpec
|
|
722 |
#name: 'List2'
|
|
723 |
#layout: #(#LayoutFrame 0 0.0 30 0.0 0 1.0 0 1.0)
|
|
724 |
#hasHorizontalScrollBar: true
|
|
725 |
#hasVerticalScrollBar: true
|
|
726 |
#useIndex: false
|
|
727 |
#sequenceList: #methodsInImageOnly
|
|
728 |
)
|
|
729 |
)
|
1255
|
730 |
|
1371
|
731 |
)
|
|
732 |
)
|
|
733 |
#(#ViewSpec
|
|
734 |
#name: 'Box2'
|
|
735 |
#component:
|
|
736 |
#(#SpecCollection
|
|
737 |
#collection: #(
|
|
738 |
#(#LabelSpec
|
|
739 |
#label: 'Methods only in Project'
|
|
740 |
#name: 'Label2'
|
|
741 |
#layout: #(#LayoutFrame 0 0 0 0 0 1 30 0)
|
|
742 |
#translateLabel: true
|
|
743 |
#adjust: #left
|
|
744 |
)
|
|
745 |
#(#SequenceViewSpec
|
|
746 |
#name: 'List1'
|
|
747 |
#layout: #(#LayoutFrame 0 0.0 30 0.0 0 1.0 0 1.0)
|
|
748 |
#hasHorizontalScrollBar: true
|
|
749 |
#hasVerticalScrollBar: true
|
|
750 |
#useIndex: false
|
|
751 |
#sequenceList: #methodsInProjectOnly
|
|
752 |
)
|
|
753 |
)
|
1255
|
754 |
|
1371
|
755 |
)
|
|
756 |
)
|
|
757 |
)
|
1255
|
758 |
|
1371
|
759 |
)
|
|
760 |
)
|
|
761 |
#(#HorizontalPanelViewSpec
|
|
762 |
#name: 'HorizontalPanel1'
|
|
763 |
#layout: #(#LayoutFrame 0 0 -30 1 0 1 0 1)
|
|
764 |
#horizontalLayout: #center
|
|
765 |
#verticalLayout: #center
|
|
766 |
#horizontalSpace: 3
|
|
767 |
#verticalSpace: 3
|
|
768 |
#component:
|
|
769 |
#(#SpecCollection
|
|
770 |
#collection: #(
|
|
771 |
#(#ActionButtonSpec
|
|
772 |
#label: 'OK'
|
|
773 |
#name: 'Button1'
|
|
774 |
#translateLabel: true
|
|
775 |
#model: #closeRequest
|
|
776 |
#extent: #(#Point 125 22)
|
|
777 |
)
|
|
778 |
)
|
1255
|
779 |
|
1371
|
780 |
)
|
|
781 |
)
|
|
782 |
)
|
1255
|
783 |
|
1371
|
784 |
)
|
1255
|
785 |
)
|
|
786 |
!
|
|
787 |
|
1234
|
788 |
rightCanvasSpecForBuildOptions
|
|
789 |
"This resource specification was automatically generated
|
|
790 |
by the UIPainter of ST/X."
|
|
791 |
|
|
792 |
"Do not manually edit this!! If it is corrupted,
|
|
793 |
the UIPainter may not be able to read the specification."
|
|
794 |
|
|
795 |
"
|
|
796 |
UIPainter new openOnClass:ProjectBrowser andSelector:#rightCanvasSpecForBuildOptions
|
|
797 |
ProjectBrowser new openInterface:#rightCanvasSpecForBuildOptions
|
|
798 |
"
|
|
799 |
|
|
800 |
<resource: #canvas>
|
|
801 |
|
|
802 |
^
|
|
803 |
#(#FullSpec
|
1371
|
804 |
#name: #rightCanvasSpecForBuildOptions
|
|
805 |
#window:
|
1234
|
806 |
#(#WindowSpec
|
1371
|
807 |
#label: 'NewApplication'
|
|
808 |
#name: 'NewApplication'
|
|
809 |
#min: #(#Point 10 10)
|
|
810 |
#max: #(#Point 1280 1024)
|
|
811 |
#bounds: #(#Rectangle 216 173 577 536)
|
|
812 |
)
|
|
813 |
#component:
|
1234
|
814 |
#(#SpecCollection
|
1371
|
815 |
#collection: #(
|
|
816 |
#(#FramedBoxSpec
|
|
817 |
#label: 'STC Compiler Warnings'
|
|
818 |
#name: 'FramedBox2'
|
|
819 |
#layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 146 0)
|
|
820 |
#labelPosition: #topLeft
|
|
821 |
#translateLabel: true
|
|
822 |
#component:
|
|
823 |
#(#SpecCollection
|
|
824 |
#collection: #(
|
|
825 |
#(#CheckBoxSpec
|
|
826 |
#label: 'Non Standard Language Features'
|
|
827 |
#name: 'CheckBox1'
|
|
828 |
#layout: #(#LayoutFrame 0 0.0 9 0 0 1.0 31 0)
|
|
829 |
#tabable: true
|
|
830 |
#model: #makeWarnNonStandard
|
|
831 |
#translateLabel: true
|
|
832 |
)
|
|
833 |
#(#CheckBoxSpec
|
|
834 |
#label: 'End-of-line Comments'
|
|
835 |
#name: 'CheckBox2'
|
|
836 |
#layout: #(#LayoutFrame 0 0.0 36 0 0 1.0 58 0)
|
|
837 |
#tabable: true
|
|
838 |
#model: #makeWarnEOLComments
|
|
839 |
#translateLabel: true
|
|
840 |
)
|
|
841 |
#(#LabelSpec
|
|
842 |
#label: 'other warning options:'
|
|
843 |
#name: 'Label3'
|
|
844 |
#layout: #(#LayoutFrame 0 0.0 69 0 0 1.0 91 0)
|
|
845 |
#translateLabel: true
|
|
846 |
#adjust: #left
|
|
847 |
)
|
|
848 |
#(#InputFieldSpec
|
|
849 |
#name: 'EntryField1'
|
|
850 |
#layout: #(#LayoutFrame 0 0.0 93 0 0 1.0 115 0)
|
|
851 |
#activeHelpKey: #projectDir
|
|
852 |
#tabable: true
|
|
853 |
#model: #makeOtherWarningOptions
|
|
854 |
#acceptChannel: #acceptChannel
|
|
855 |
#modifiedChannel: #modifiedChannel
|
|
856 |
#acceptOnPointerLeave: false
|
|
857 |
)
|
|
858 |
)
|
1234
|
859 |
|
1371
|
860 |
)
|
|
861 |
)
|
|
862 |
#(#FramedBoxSpec
|
|
863 |
#label: 'STC Compiler Includes'
|
|
864 |
#name: 'FramedBox3'
|
|
865 |
#layout: #(#LayoutFrame 0 0.0 146 0.0 0 1.0 203 0)
|
|
866 |
#labelPosition: #topLeft
|
|
867 |
#translateLabel: true
|
|
868 |
#component:
|
|
869 |
#(#SpecCollection
|
|
870 |
#collection: #(
|
|
871 |
#(#InputFieldSpec
|
|
872 |
#name: 'EntryField2'
|
|
873 |
#layout: #(#LayoutFrame 0 0.0 4 0 0 1.0 26 0)
|
|
874 |
#activeHelpKey: #repositoryModule
|
|
875 |
#tabable: true
|
|
876 |
#model: #makeIncludes
|
|
877 |
#acceptChannel: #acceptChannel
|
|
878 |
#modifiedChannel: #modifiedChannel
|
|
879 |
#acceptOnPointerLeave: false
|
|
880 |
)
|
|
881 |
)
|
1234
|
882 |
|
1371
|
883 |
)
|
|
884 |
)
|
|
885 |
#(#FramedBoxSpec
|
|
886 |
#label: 'STC Compiler Defines'
|
|
887 |
#name: 'FramedBox5'
|
|
888 |
#layout: #(#LayoutFrame 0 0.0 210 0.0 0 1.0 267 0)
|
|
889 |
#labelPosition: #topLeft
|
|
890 |
#translateLabel: true
|
|
891 |
#component:
|
|
892 |
#(#SpecCollection
|
|
893 |
#collection: #(
|
|
894 |
#(#InputFieldSpec
|
|
895 |
#name: 'EntryField5'
|
|
896 |
#layout: #(#LayoutFrame 0 0.0 4 0 0 1.0 26 0)
|
|
897 |
#activeHelpKey: #repositoryModule
|
|
898 |
#tabable: true
|
|
899 |
#model: #makeDefines
|
|
900 |
#acceptChannel: #acceptChannel
|
|
901 |
#modifiedChannel: #modifiedChannel
|
|
902 |
#acceptOnPointerLeave: false
|
|
903 |
)
|
|
904 |
)
|
1234
|
905 |
|
1371
|
906 |
)
|
|
907 |
)
|
|
908 |
#(#HorizontalPanelViewSpec
|
|
909 |
#name: 'HorizontalPanel1'
|
|
910 |
#layout: #(#LayoutFrame 0 0 -30 1 0 1 0 1)
|
|
911 |
#horizontalLayout: #fitSpace
|
|
912 |
#verticalLayout: #center
|
|
913 |
#horizontalSpace: 3
|
|
914 |
#verticalSpace: 3
|
|
915 |
#component:
|
|
916 |
#(#SpecCollection
|
|
917 |
#collection: #(
|
|
918 |
#(#ActionButtonSpec
|
|
919 |
#label: 'Cancel'
|
|
920 |
#name: 'Button1'
|
|
921 |
#activeHelpKey: #cancel
|
|
922 |
#translateLabel: true
|
|
923 |
#model: #cancel
|
|
924 |
#enableChannel: #modifiedChannel
|
|
925 |
#actionValue: ''
|
|
926 |
#useDefaultExtent: true
|
|
927 |
)
|
|
928 |
#(#ActionButtonSpec
|
|
929 |
#label: 'OK'
|
|
930 |
#name: 'Button2'
|
|
931 |
#activeHelpKey: #accept
|
|
932 |
#translateLabel: true
|
|
933 |
#model: #accept
|
|
934 |
#enableChannel: #modifiedChannel
|
|
935 |
#useDefaultExtent: true
|
|
936 |
)
|
|
937 |
)
|
1234
|
938 |
|
1371
|
939 |
)
|
|
940 |
)
|
|
941 |
)
|
1234
|
942 |
|
1371
|
943 |
)
|
1234
|
944 |
)
|
|
945 |
!
|
|
946 |
|
1037
|
947 |
rightCanvasSpecForClassList
|
|
948 |
"This resource specification was automatically generated
|
|
949 |
by the UIPainter of ST/X."
|
|
950 |
|
|
951 |
"Do not manually edit this!! If it is corrupted,
|
|
952 |
the UIPainter may not be able to read the specification."
|
|
953 |
|
|
954 |
"
|
|
955 |
UIPainter new openOnClass:ProjectBrowser andSelector:#rightCanvasSpecForClassList
|
|
956 |
ProjectBrowser new openInterface:#rightCanvasSpecForClassList
|
|
957 |
"
|
|
958 |
|
|
959 |
<resource: #canvas>
|
|
960 |
|
1218
|
961 |
^
|
|
962 |
#(#FullSpec
|
1371
|
963 |
#name: #rightCanvasSpecForClassList
|
|
964 |
#window:
|
1218
|
965 |
#(#WindowSpec
|
1371
|
966 |
#label: 'NewApplication'
|
|
967 |
#name: 'NewApplication'
|
|
968 |
#min: #(#Point 10 10)
|
|
969 |
#max: #(#Point 1280 1024)
|
|
970 |
#bounds: #(#Rectangle 10 20 310 320)
|
|
971 |
)
|
|
972 |
#component:
|
1218
|
973 |
#(#SpecCollection
|
1371
|
974 |
#collection: #(
|
|
975 |
#(#DataSetSpec
|
|
976 |
#name: 'classTable'
|
|
977 |
#layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 0 1.0)
|
|
978 |
#hasHorizontalScrollBar: true
|
|
979 |
#hasVerticalScrollBar: true
|
|
980 |
#miniScrollerHorizontal: true
|
|
981 |
#dataList: #classList
|
|
982 |
#has3Dsepartors: false
|
|
983 |
#columnHolder: #classTableColumns
|
|
984 |
#verticalSpacing: 0
|
|
985 |
#columnAdaptor: #classTableAdaptor
|
|
986 |
)
|
|
987 |
)
|
1218
|
988 |
|
1371
|
989 |
)
|
1037
|
990 |
)
|
|
991 |
!
|
|
992 |
|
1081
|
993 |
rightCanvasSpecForDeployment
|
|
994 |
"This resource specification was automatically generated
|
|
995 |
by the UIPainter of ST/X."
|
|
996 |
|
|
997 |
"Do not manually edit this!! If it is corrupted,
|
|
998 |
the UIPainter may not be able to read the specification."
|
|
999 |
|
|
1000 |
"
|
|
1001 |
UIPainter new openOnClass:ProjectBrowser andSelector:#rightCanvasSpecForDeployment
|
|
1002 |
ProjectBrowser new openInterface:#rightCanvasSpecForDeployment
|
|
1003 |
"
|
|
1004 |
|
|
1005 |
<resource: #canvas>
|
|
1006 |
|
1088
|
1007 |
^
|
|
1008 |
#(#FullSpec
|
1371
|
1009 |
#name: #rightCanvasSpecForDeployment
|
|
1010 |
#window:
|
1088
|
1011 |
#(#WindowSpec
|
1371
|
1012 |
#label: 'NewApplication'
|
|
1013 |
#name: 'NewApplication'
|
|
1014 |
#min: #(#Point 10 10)
|
|
1015 |
#max: #(#Point 1280 1024)
|
|
1016 |
#bounds: #(#Rectangle 12 22 365 521)
|
|
1017 |
)
|
|
1018 |
#component:
|
1088
|
1019 |
#(#SpecCollection
|
1371
|
1020 |
#collection: #(
|
|
1021 |
#(#FramedBoxSpec
|
|
1022 |
#label: 'Deliver'
|
|
1023 |
#name: 'DeliverBox'
|
|
1024 |
#layout: #(#LayoutFrame 0 0.0 0 0.0 0 1.0 172 0)
|
|
1025 |
#labelPosition: #topLeft
|
|
1026 |
#translateLabel: true
|
|
1027 |
#component:
|
|
1028 |
#(#SpecCollection
|
|
1029 |
#collection: #(
|
|
1030 |
#(#CheckBoxSpec
|
|
1031 |
#label: '''loadAll''-File'
|
|
1032 |
#name: 'CheckBox5'
|
|
1033 |
#layout: #(#LayoutFrame 0 0.0 67 0 0 1.0 89 0)
|
|
1034 |
#activeHelpKey: #deliverLoadAll
|
|
1035 |
#tabable: true
|
|
1036 |
#model: #deliverLoadAllFile
|
|
1037 |
#translateLabel: true
|
|
1038 |
)
|
|
1039 |
#(#CheckBoxSpec
|
|
1040 |
#label: 'Compiled Binary (non-portable .dll / .so)'
|
|
1041 |
#name: 'CheckBox6'
|
|
1042 |
#layout: #(#LayoutFrame 0 0.0 32 0 0 1.0 54 0)
|
|
1043 |
#activeHelpKey: #deliverCompiledBinary
|
|
1044 |
#tabable: true
|
|
1045 |
#model: #deliverCompiledBinary
|
|
1046 |
#translateLabel: true
|
|
1047 |
)
|
|
1048 |
#(#CheckBoxSpec
|
|
1049 |
#label: 'Bytecode Binary (portable)'
|
|
1050 |
#name: 'CheckBox1'
|
|
1051 |
#layout: #(#LayoutFrame 0 0.0 8 0 0 1.0 30 0)
|
|
1052 |
#activeHelpKey: #deliverByteCode
|
|
1053 |
#tabable: true
|
|
1054 |
#model: #deliverByteCode
|
|
1055 |
#translateLabel: true
|
|
1056 |
)
|
|
1057 |
#(#CheckBoxSpec
|
|
1058 |
#label: 'Sources'
|
|
1059 |
#name: 'CheckBox4'
|
|
1060 |
#layout: #(#LayoutFrame 0 0.0 90 0 0 1.0 112 0)
|
|
1061 |
#activeHelpKey: #deliverSources
|
|
1062 |
#tabable: true
|
|
1063 |
#model: #deliverSources
|
|
1064 |
#translateLabel: true
|
|
1065 |
)
|
|
1066 |
#(#CheckBoxSpec
|
|
1067 |
#label: 'Makefiles'
|
|
1068 |
#name: 'CheckBox8'
|
|
1069 |
#layout: #(#LayoutFrame 0 0.0 113 0 0 1.0 135 0)
|
|
1070 |
#activeHelpKey: #deliverMakefiles
|
|
1071 |
#tabable: true
|
|
1072 |
#model: #deliverMakefiles
|
|
1073 |
#translateLabel: true
|
|
1074 |
)
|
|
1075 |
)
|
1091
|
1076 |
|
1371
|
1077 |
)
|
|
1078 |
)
|
|
1079 |
#(#FramedBoxSpec
|
|
1080 |
#label: 'Format'
|
|
1081 |
#name: 'DeliverAsBox'
|
|
1082 |
#layout: #(#LayoutFrame 0 0.0 172 0 0 1.0 290 0)
|
|
1083 |
#labelPosition: #topLeft
|
|
1084 |
#translateLabel: true
|
|
1085 |
#component:
|
|
1086 |
#(#SpecCollection
|
|
1087 |
#collection: #(
|
|
1088 |
#(#CheckBoxSpec
|
|
1089 |
#label: 'Tar Archive (.tar - for unix)'
|
|
1090 |
#name: 'CheckBox7'
|
|
1091 |
#layout: #(#LayoutFrame 0 0.0 34 0 0 1.0 56 0)
|
|
1092 |
#activeHelpKey: #deliverTarArchive
|
|
1093 |
#tabable: true
|
|
1094 |
#model: #deliverTarArchive
|
|
1095 |
#translateLabel: true
|
|
1096 |
)
|
|
1097 |
#(#CheckBoxSpec
|
|
1098 |
#label: 'Zip Archive (.zip - for windows)'
|
|
1099 |
#name: 'CheckBox2'
|
|
1100 |
#layout: #(#LayoutFrame 0 0.0 10 0 0 1.0 32 0)
|
|
1101 |
#activeHelpKey: #deliverZipArchive
|
|
1102 |
#tabable: true
|
|
1103 |
#model: #deliverZipArchive
|
|
1104 |
#translateLabel: true
|
|
1105 |
)
|
|
1106 |
#(#CheckBoxSpec
|
|
1107 |
#label: 'GZip Archive (self extracting for unix)'
|
|
1108 |
#name: 'CheckBox3'
|
|
1109 |
#layout: #(#LayoutFrame 0 0.0 58 0 0 1.0 80 0)
|
|
1110 |
#activeHelpKey: #deliverGZipArchive
|
|
1111 |
#tabable: true
|
|
1112 |
#model: #deliverGZipArchive
|
|
1113 |
#translateLabel: true
|
|
1114 |
)
|
|
1115 |
)
|
1231
|
1116 |
|
1371
|
1117 |
)
|
|
1118 |
)
|
|
1119 |
#(#FramedBoxSpec
|
|
1120 |
#label: 'Target Install Directory'
|
|
1121 |
#name: 'DestinationBox'
|
|
1122 |
#layout: #(#LayoutFrame 0 0.0 295 0 0 1.0 448 0)
|
|
1123 |
#labelPosition: #topLeft
|
|
1124 |
#translateLabel: true
|
|
1125 |
#component:
|
|
1126 |
#(#SpecCollection
|
|
1127 |
#collection: #(
|
|
1128 |
#(#LabelSpec
|
|
1129 |
#label: 'Unix:'
|
|
1130 |
#name: 'Label1'
|
|
1131 |
#layout: #(#AlignmentOrigin 76 0.0 16 0 1 0.5)
|
|
1132 |
#translateLabel: true
|
|
1133 |
#resizeForLabel: true
|
|
1134 |
#adjust: #right
|
|
1135 |
)
|
|
1136 |
#(#InputFieldSpec
|
|
1137 |
#name: 'EntryField1'
|
|
1138 |
#layout: #(#LayoutFrame 80 0.0 4 0 0 1.0 26 0)
|
|
1139 |
#activeHelpKey: #installDirUnix
|
|
1140 |
#enableChannel: #canDeliverForUnix
|
|
1141 |
#tabable: true
|
|
1142 |
#model: #installDirectoryUnix
|
|
1143 |
#acceptChannel: #acceptChannel
|
|
1144 |
#modifiedChannel: #modifiedChannel
|
|
1145 |
#acceptOnPointerLeave: false
|
|
1146 |
)
|
|
1147 |
#(#LabelSpec
|
|
1148 |
#label: 'Win32:'
|
|
1149 |
#name: 'Label2'
|
|
1150 |
#layout: #(#AlignmentOrigin 76 0.0 47 0 1 0.5)
|
|
1151 |
#translateLabel: true
|
|
1152 |
#resizeForLabel: true
|
|
1153 |
#adjust: #right
|
|
1154 |
)
|
|
1155 |
#(#InputFieldSpec
|
|
1156 |
#name: 'EntryField2'
|
|
1157 |
#layout: #(#LayoutFrame 80 0.0 34 0 0 1.0 56 0)
|
|
1158 |
#activeHelpKey: #installDirWin32
|
|
1159 |
#enableChannel: #canDeliverForWin32
|
|
1160 |
#tabable: true
|
|
1161 |
#model: #installDirectoryWin32
|
|
1162 |
#acceptChannel: #acceptChannel
|
|
1163 |
#modifiedChannel: #modifiedChannel
|
|
1164 |
#acceptOnPointerLeave: false
|
|
1165 |
)
|
|
1166 |
#(#LabelSpec
|
|
1167 |
#label: 'VMS:'
|
|
1168 |
#name: 'Label3'
|
|
1169 |
#layout: #(#AlignmentOrigin 76 0.0 76 0 1 0.5)
|
|
1170 |
#translateLabel: true
|
|
1171 |
#resizeForLabel: true
|
|
1172 |
#adjust: #right
|
|
1173 |
)
|
|
1174 |
#(#InputFieldSpec
|
|
1175 |
#name: 'EntryField3'
|
|
1176 |
#layout: #(#LayoutFrame 80 0.0 63 0 0 1.0 85 0)
|
|
1177 |
#activeHelpKey: #installDirVMS
|
|
1178 |
#initiallyDisabled: true
|
|
1179 |
#enableChannel: #canDeliverForVMS
|
|
1180 |
#tabable: true
|
|
1181 |
#model: #installDirectoryVMS
|
|
1182 |
#acceptChannel: #acceptChannel
|
|
1183 |
#modifiedChannel: #modifiedChannel
|
|
1184 |
#acceptOnPointerLeave: false
|
|
1185 |
)
|
|
1186 |
#(#LabelSpec
|
|
1187 |
#label: 'MacOS:'
|
|
1188 |
#name: 'Label4'
|
|
1189 |
#layout: #(#AlignmentOrigin 76 0.0 106 0 1 0.5)
|
|
1190 |
#translateLabel: true
|
|
1191 |
#resizeForLabel: true
|
|
1192 |
#adjust: #right
|
|
1193 |
)
|
|
1194 |
#(#InputFieldSpec
|
|
1195 |
#name: 'EntryField4'
|
|
1196 |
#layout: #(#LayoutFrame 80 0.0 93 0 0 1.0 115 0)
|
|
1197 |
#activeHelpKey: #installDirMacOS
|
|
1198 |
#initiallyDisabled: true
|
|
1199 |
#enableChannel: #canDeliverForMacOS
|
|
1200 |
#tabable: true
|
|
1201 |
#model: #installDirectoryMac
|
|
1202 |
#acceptChannel: #acceptChannel
|
|