author | mawalch |
Thu, 11 May 2017 13:31:27 +0200 | |
changeset 3444 | 4d705dd47c2d |
parent 3428 | 2159fce56364 |
child 3450 | 28497108316d |
permissions | -rw-r--r-- |
3444 | 1 |
"{ Encoding: utf8 }" |
2 |
||
156 | 3 |
" |
765 | 4 |
COPYRIGHT (c) 1995-1998 by eXept Software AG |
2217
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
5 |
All Rights Reserved |
156 | 6 |
|
7 |
This software is furnished under a license and may be used |
|
8 |
only in accordance with the terms of that license and with the |
|
9 |
inclusion of the above copyright notice. This software may not |
|
10 |
be provided or otherwise made available to, or used by, any |
|
11 |
other person. No title to or ownership of the software is |
|
12 |
hereby transferred. |
|
13 |
" |
|
2023 | 14 |
"{ Package: 'stx:libtool2' }" |
1391 | 15 |
|
3218 | 16 |
"{ NameSpace: Smalltalk }" |
17 |
||
2007
77cf7ecc9ecf
embedding as special editors
Claus Gittinger <cg@exept.de>
parents:
2001
diff
changeset
|
18 |
ResourceSpecEditor subclass:#UIPainter |
2218 | 19 |
instanceVariableNames:'specSuperclassName treeView selectionPanel specTool layoutTool |
2243 | 20 |
helpTool painterView painter lastPort lastPage' |
2500
3e2feb544801
cleaned up the code and fixed bugs;
Claus Gittinger <cg@exept.de>
parents:
2479
diff
changeset
|
21 |
classVariableNames:'SelectionPanelClass UseViewScroller LastPort LastPage |
3e2feb544801
cleaned up the code and fixed bugs;
Claus Gittinger <cg@exept.de>
parents:
2479
diff
changeset
|
22 |
DefaultEditToolBarVisible DefaultToolBarVisible' |
2218 | 23 |
poolDictionaries:'' |
24 |
category:'Interface-UIPainter' |
|
60 | 25 |
! |
26 |
||
3111 | 27 |
Query subclass:#ApplicationClassQuery |
28 |
instanceVariableNames:'' |
|
29 |
classVariableNames:'' |
|
30 |
poolDictionaries:'' |
|
31 |
privateIn:UIPainter |
|
32 |
! |
|
33 |
||
222 | 34 |
SelectionInTreeView subclass:#TreeView |
2541
6241ec9e6a6f
default name of top-level spec
Claus Gittinger <cg@exept.de>
parents:
2540
diff
changeset
|
35 |
instanceVariableNames:'lastDrawnMaster canvasEventsDisabled windowSpec windowSpecClass |
6241ec9e6a6f
default name of top-level spec
Claus Gittinger <cg@exept.de>
parents:
2540
diff
changeset
|
36 |
painter' |
2218 | 37 |
classVariableNames:'' |
38 |
poolDictionaries:'' |
|
39 |
privateIn:UIPainter |
|
222 | 40 |
! |
41 |
||
60 | 42 |
!UIPainter class methodsFor:'documentation'! |
43 |
||
156 | 44 |
copyright |
45 |
" |
|
765 | 46 |
COPYRIGHT (c) 1995-1998 by eXept Software AG |
2217
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
47 |
All Rights Reserved |
156 | 48 |
|
49 |
This software is furnished under a license and may be used |
|
50 |
only in accordance with the terms of that license and with the |
|
51 |
inclusion of the above copyright notice. This software may not |
|
52 |
be provided or otherwise made available to, or used by, any |
|
53 |
other person. No title to or ownership of the software is |
|
54 |
hereby transferred. |
|
55 |
" |
|
56 |
||
57 |
! |
|
58 |
||
60 | 59 |
documentation |
60 |
" |
|
765 | 61 |
The GUI Painter provides the user with a graphical user interface for building own |
62 |
interfaces by interactively assembling widgets and defining the behavior of the widgets. |
|
63 |
The resulting interface specifications can be saved as methods on the application |
|
64 |
classes, typically subclasses of the class ApplicationModel. These specifications |
|
65 |
are used by the UIBuilder to generate the application window and its widgets when |
|
66 |
opening the application. |
|
60 | 67 |
|
68 |
[start with:] |
|
2217
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
69 |
UIPainter open |
127 | 70 |
|
156 | 71 |
[author:] |
2217
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
72 |
Claus Gittinger, eXept Software AG |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
73 |
Claus Atzkern, eXept Software AG |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
74 |
Thomas Zwick, eXept Software AG |
156 | 75 |
|
127 | 76 |
[see also:] |
2217
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
77 |
UIBuilder |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
78 |
ApplicationModel |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
79 |
UISpecification |
2277
342f25e2c276
more changes to allow for non-class/selector (i.e. spec-only) use
Claus Gittinger <cg@exept.de>
parents:
2273
diff
changeset
|
80 |
|
342f25e2c276
more changes to allow for non-class/selector (i.e. spec-only) use
Claus Gittinger <cg@exept.de>
parents:
2273
diff
changeset
|
81 |
[instance variables:] |
342f25e2c276
more changes to allow for non-class/selector (i.e. spec-only) use
Claus Gittinger <cg@exept.de>
parents:
2273
diff
changeset
|
82 |
isSpecOnlyPainter true if this painter is for a spec only (as used by expecco), |
342f25e2c276
more changes to allow for non-class/selector (i.e. spec-only) use
Claus Gittinger <cg@exept.de>
parents:
2273
diff
changeset
|
83 |
as opposed to a regular painter, which stores the spec in a class. |
342f25e2c276
more changes to allow for non-class/selector (i.e. spec-only) use
Claus Gittinger <cg@exept.de>
parents:
2273
diff
changeset
|
84 |
A spec-only painter has no class to store additional specs (esp. |
342f25e2c276
more changes to allow for non-class/selector (i.e. spec-only) use
Claus Gittinger <cg@exept.de>
parents:
2273
diff
changeset
|
85 |
menu- and tabSpecs) and should not offer postBuild and other |
342f25e2c276
more changes to allow for non-class/selector (i.e. spec-only) use
Claus Gittinger <cg@exept.de>
parents:
2273
diff
changeset
|
86 |
callback functions. |
60 | 87 |
" |
109 | 88 |
! ! |
89 |
||
2399 | 90 |
!UIPainter class methodsFor:'initialization'! |
91 |
||
92 |
initialize |
|
93 |
SelectionPanelClass isNil ifTrue:[ |
|
94 |
SelectionPanelClass := UISelectionPanel |
|
95 |
]. |
|
96 |
! ! |
|
97 |
||
109 | 98 |
!UIPainter class methodsFor:'instance creation'! |
99 |
||
195
350f95af5d9d
check before sending selector to class
Claus Gittinger <cg@exept.de>
parents:
194
diff
changeset
|
100 |
openOnClass:aClass andSelector:aSelector |
1976 | 101 |
"open a GUI Painter on aClass and (windowSpec) aSelector" |
102 |
||
103 |
^ self new openOnClass:aClass theNonMetaclass andSelector:aSelector |
|
60 | 104 |
! ! |
105 |
||
87 | 106 |
!UIPainter class methodsFor:'ST-80 queries'! |
107 |
||
108 |
preferenceFor:aSymbol |
|
282 | 109 |
"ST-80 compatible; always returns false |
110 |
" |
|
87 | 111 |
^ false |
109 | 112 |
|
113 |
||
114 |
! ! |
|
115 |
||
2541
6241ec9e6a6f
default name of top-level spec
Claus Gittinger <cg@exept.de>
parents:
2540
diff
changeset
|
116 |
!UIPainter class methodsFor:'defaults'! |
6241ec9e6a6f
default name of top-level spec
Claus Gittinger <cg@exept.de>
parents:
2540
diff
changeset
|
117 |
|
6241ec9e6a6f
default name of top-level spec
Claus Gittinger <cg@exept.de>
parents:
2540
diff
changeset
|
118 |
defaultEditToolbarVisible |
6241ec9e6a6f
default name of top-level spec
Claus Gittinger <cg@exept.de>
parents:
2540
diff
changeset
|
119 |
^ DefaultEditToolBarVisible ? true |
6241ec9e6a6f
default name of top-level spec
Claus Gittinger <cg@exept.de>
parents:
2540
diff
changeset
|
120 |
! |
713 | 121 |
|
122 |
defaultNameOfCanvas |
|
765 | 123 |
"returns the default name of the application" |
124 |
||
2208 | 125 |
^ 'NewApplication' |
2217
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
126 |
! |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
127 |
|
2541
6241ec9e6a6f
default name of top-level spec
Claus Gittinger <cg@exept.de>
parents:
2540
diff
changeset
|
128 |
defaultToolbarVisible |
6241ec9e6a6f
default name of top-level spec
Claus Gittinger <cg@exept.de>
parents:
2540
diff
changeset
|
129 |
^ DefaultToolBarVisible ? true |
6241ec9e6a6f
default name of top-level spec
Claus Gittinger <cg@exept.de>
parents:
2540
diff
changeset
|
130 |
! |
6241ec9e6a6f
default name of top-level spec
Claus Gittinger <cg@exept.de>
parents:
2540
diff
changeset
|
131 |
|
2218 | 132 |
selectionPanelClass |
133 |
^ SelectionPanelClass |
|
2225 | 134 |
|
135 |
" |
|
136 |
UIPainter selectionPanelClass. |
|
137 |
UIPainter selectionPanelClass:UISelectionPanel |
|
138 |
" |
|
2218 | 139 |
! |
140 |
||
2217
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
141 |
selectionPanelClass:something |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
142 |
"set the class used as selection panel. |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
143 |
this is UISelectionPanel as default" |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
144 |
|
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
145 |
SelectionPanelClass := something. |
2225 | 146 |
|
147 |
" |
|
148 |
UIPainter selectionPanelClass:UISelectionPanel |
|
149 |
" |
|
713 | 150 |
! ! |
151 |
||
193 | 152 |
!UIPainter class methodsFor:'help specs'! |
153 |
||
1545 | 154 |
flyByHelpSpec |
155 |
<resource: #help> |
|
156 |
||
2361
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
157 |
^super flyByHelpSpec |
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
158 |
addPairsFrom:#( |
1545 | 159 |
|
160 |
#fileSave |
|
2198
804e778590fc
slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents:
2175
diff
changeset
|
161 |
'Save Spec' |
804e778590fc
slightly refactored to allow for more redefinition in a subclass
Claus Gittinger <cg@exept.de>
parents:
2175
diff
changeset
|
162 |
|
2336 | 163 |
shadesOfRed |
164 |
'Red color tones' |
|
165 |
||
166 |
shadesOfGreen |
|
167 |
'Green color tones' |
|
168 |
||
169 |
shadesOfBlue |
|
170 |
'Blue color tones' |
|
171 |
||
172 |
shadesOfCyan |
|
173 |
'Cyan color tones' |
|
174 |
||
175 |
shadesOfMagenta |
|
176 |
'Magenta color tones' |
|
177 |
||
178 |
shadesOfYellow |
|
179 |
'Yellow color tones' |
|
180 |
||
181 |
shadesOfGray |
|
182 |
'Gray color tones' |
|
183 |
||
184 |
openColorEditor |
|
185 |
'Open a color editor' |
|
186 |
||
187 |
pickColorFromScreen |
|
188 |
'Pick a color from the screen' |
|
189 |
||
190 |
recentlyUsedColors |
|
191 |
'Pick a recently used color' |
|
192 |
||
193 |
useDefaultColorToggle |
|
194 |
'Toggle between default and explicit color' |
|
1545 | 195 |
|
2361
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
196 |
); |
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
197 |
declareAllFrom:self helpSpec |
1545 | 198 |
! |
199 |
||
193 | 200 |
helpSpec |
743 | 201 |
"This resource specification was automatically generated |
202 |
by the UIHelpTool of ST/X." |
|
203 |
||
204 |
"Do not manually edit this!! If it is corrupted, |
|
205 |
the UIHelpTool may not be able to read the specification." |
|
295 | 206 |
|
193 | 207 |
" |
743 | 208 |
UIHelpTool openOnClass:UIPainter |
295 | 209 |
" |
210 |
||
743 | 211 |
<resource: #help> |
212 |
||
1827 | 213 |
^ super helpSpec addPairsFrom:#( |
193 | 214 |
|
934 | 215 |
#align |
2901 | 216 |
'Widget alignment functions' |
934 | 217 |
|
3032 | 218 |
#alignResizeSelectionBottom |
219 |
'Resize the selected widgets'' bottom edges to align them with the bottom of the dominant widget' |
|
220 |
||
221 |
#alignResizeSelectionLeft |
|
222 |
'Resize the selected widgets'' left edges to align them with the left edge of the dominant widget' |
|
223 |
||
224 |
#alignResizeSelectionRight |
|
225 |
'Resize the selected widgets'' right edges to align them with the right edge of the dominant widget' |
|
226 |
||
227 |
#alignResizeSelectionTop |
|
228 |
'Resize the selected widgets'' top edges to align them with the top edge of the dominant widget' |
|
229 |
||
466 | 230 |
#alignSelectionBottom |
2901 | 231 |
'Aligns the selected widgets'' bottom edges with the bottom of the dominant widget' |
466 | 232 |
|
233 |
#alignSelectionCenterHor |
|
2901 | 234 |
'Aligns the selected widgets'' centers vertically with the center of the dominant widget' |
466 | 235 |
|
236 |
#alignSelectionCenterVer |
|
2901 | 237 |
'Aligns the selected widgets'' centers horizontally with the center of the dominant widget' |
466 | 238 |
|
239 |
#alignSelectionLeft |
|
2901 | 240 |
'Aligns the selected widgets'' left edges with the left edge of the dominant widget' |
466 | 241 |
|
242 |
#alignSelectionLeftAndRight |
|
2901 | 243 |
'Aligns the selected widgets'' left & right edges with the dominant widget' |
466 | 244 |
|
245 |
#alignSelectionRight |
|
2901 | 246 |
'Aligns the selected widgets'' right edges with the right edge of the dominant widget' |
466 | 247 |
|
248 |
#alignSelectionTop |
|
2901 | 249 |
'Aligns the selected widgets'' top edges with the top edge of the dominant widget' |
466 | 250 |
|
251 |
#alignSelectionTopAndBottom |
|
2901 | 252 |
'Aligns the selected widgets'' top and bottom edges with the dominant widget' |
466 | 253 |
|
3032 | 254 |
#alignToGrid |
255 |
'Am Raster ausrichten' |
|
256 |
||
466 | 257 |
#centerSelectionHor |
2901 | 258 |
'Centers the selected widgets horizontally within their containing widget' |
466 | 259 |
|
260 |
#centerSelectionVer |
|
2901 | 261 |
'Centers the selected widgets vertically within their containing widget' |
713 | 262 |
|
263 |
#changePositionDown |
|
3218 | 264 |
'Moves the selected widget(s) towards the bottom (by %1 pixels)' |
713 | 265 |
|
266 |
#changePositionLeft |
|
3218 | 267 |
'Moves the selected widget(s) towards the left (by %1 pixels)' |
713 | 268 |
|
269 |
#changePositionRight |
|
3218 | 270 |
'Moves the selected widget(s) towards the right (by %1 pixels)' |
713 | 271 |
|
272 |
#changePositionUp |
|
3218 | 273 |
'Moves the selected widget(s) towards the top (by %1 pixels)' |
274 |
||
275 |
#'changeMoveDelta' |
|
276 |
'Click to change the delta by which the buttons to the left move the selected widget(s)' |
|
713 | 277 |
|
1827 | 278 |
#drawEdit |
279 |
'' |
|
280 |
||
281 |
#editBrowseViewClass |
|
2901 | 282 |
'Opens a browser on the class of the selected widget' |
1827 | 283 |
|
713 | 284 |
#editDimensionCopyExtent |
2901 | 285 |
'Copies the extent of the selected widget' |
713 | 286 |
|
287 |
#editDimensionCopyLayout |
|
2901 | 288 |
'Copies the layout of the selected widget' |
713 | 289 |
|
290 |
#editDimensionDefaultExtent |
|
2901 | 291 |
'Sets the selected widget(s) extent to their default' |
713 | 292 |
|
293 |
#editDimensionDefaultHeight |
|
2901 | 294 |
'Sets the selected widget(s) height to their default' |
713 | 295 |
|
296 |
#editDimensionDefaultWidth |
|
2901 | 297 |
'Sets the selected widget(s) width to their default' |
713 | 298 |
|
299 |
#editDimensionPasteExtent |
|
2901 | 300 |
'Sets the extent of the selected widget(s) to the last copied extent' |
713 | 301 |
|
302 |
#editDimensionPasteHeight |
|
2901 | 303 |
'Sets the height of the selected widget(s) to the height of the last copied layout/extent' |
713 | 304 |
|
305 |
#editDimensionPasteLayout |
|
2901 | 306 |
'Sets the layout of the selected widget(s) to the last copied layout' |
713 | 307 |
|
308 |
#editDimensionPasteWidth |
|
2901 | 309 |
'Sets the width of the selected widget(s) to the width of the last copied layout/extent' |
713 | 310 |
|
724 | 311 |
#editInspectSpec |
2901 | 312 |
'Opens an inspector on the spec of the selected widget' |
724 | 313 |
|
755 | 314 |
#editInspectView |
2901 | 315 |
'Opens an inspector on the selected widget' |
755 | 316 |
|
743 | 317 |
#editOpenSpecDocumentation |
2901 | 318 |
'Opens the documentation of the selected widget' |
743 | 319 |
|
3032 | 320 |
#editSaveSpecForSelection |
321 |
'Generate a sub-spec method for the selected element only.\Useful when refactoring an existing spec into sub specifications.' |
|
322 |
||
1827 | 323 |
#fileBrowseAspectMethods |
2901 | 324 |
'Opens a System Browser on the application''s aspect methods' |
1827 | 325 |
|
1742 | 326 |
#fileBrowseClass |
2901 | 327 |
'Open a System Browser on the application''s class' |
1742 | 328 |
|
498 | 329 |
#fileLoad |
2901 | 330 |
'Opens a dialog to load a window specification from a classes spec method' |
498 | 331 |
|
533 | 332 |
#fileLoadSubspec |
2901 | 333 |
'Opens a dialog to load a sub specification from a classes windowSpec method' |
533 | 334 |
|
498 | 335 |
#fileNew |
2901 | 336 |
'Creates a new window spec' |
498 | 337 |
|
338 |
#filePickAnInterface |
|
2901 | 339 |
'Select a view on the screen, generate a window spec for it and edit this spec' |
498 | 340 |
|
341 |
#fileSave |
|
2901 | 342 |
'Saves the window spec in the current class (as spec method)' |
713 | 343 |
|
344 |
#fileSaveAs |
|
2901 | 345 |
'Opens a dialog to select class and selector for saving the window spec' |
713 | 346 |
|
347 |
#fileShowWindowSpec |
|
2901 | 348 |
'Opens a Workspace showing the current window spec' |
713 | 349 |
|
350 |
#generateAspectMethods |
|
2901 | 351 |
'Generates aspect methods for defined aspect selectors of the widgets' |
713 | 352 |
|
353 |
#generateHookMethods |
|
354 |
'Generates startup/release methods. (#closeRequest, #postBuildWith:, #postOpenWith:)' |
|
355 |
||
755 | 356 |
#helpExamples |
2901 | 357 |
'Show some examples uses of the GUI Painter' |
755 | 358 |
|
359 |
#helpFunctions |
|
2901 | 360 |
'Show the documentation on the GUI Painters menu and button functions' |
755 | 361 |
|
362 |
#helpLayoutTool |
|
2901 | 363 |
'Show the Layout Tools documentation' |
755 | 364 |
|
365 |
#helpSelectedWidget |
|
2901 | 366 |
'Show the documentation of the selected widget' |
935 | 367 |
|
368 |
#helpTutorial |
|
2901 | 369 |
'Show the GUI Painters documentation' |
755 | 370 |
|
924 | 371 |
#historyMenuItem |
2901 | 372 |
'Edit this windowSpec' |
924 | 373 |
|
713 | 374 |
#moveWidgetDown |
2901 | 375 |
'Moves the selected widget down in the list (brings it to the front)' |
713 | 376 |
|
377 |
#moveWidgetInto |
|
2901 | 378 |
'Moves the selected widget into next widget as child widget' |
713 | 379 |
|
380 |
#moveWidgetOut |
|
2901 | 381 |
'Moves the selected widget out of its parent widget' |
713 | 382 |
|
383 |
#moveWidgetUp |
|
2901 | 384 |
'Moves the selected widget up in the list (brings it to the back)' |
287 | 385 |
|
3032 | 386 |
#openColorEditor |
387 |
'Open a color editor' |
|
388 |
||
466 | 389 |
#pasteBuffer |
2901 | 390 |
'Pastes the widgets of the clipboard at the current mouse position' |
466 | 391 |
|
392 |
#pasteWithLayout |
|
2901 | 393 |
'Pastes the widgets of the clipboard without changing their layouts' |
713 | 394 |
|
3032 | 395 |
#pickColorFromScreen |
396 |
'Pick a color from the screen' |
|
397 |
||
398 |
#recentlyUsedColors |
|
399 |
'Pick a recently used color' |
|
400 |
||
401 |
#referToConfigDatabase |
|
1827 | 402 |
'' |
403 |
||
404 |
#settingsAspectsAsInstances |
|
2901 | 405 |
'Generate aspects as instance variables (or bindings, if off)' |
1827 | 406 |
|
713 | 407 |
#settingsCanvas |
2901 | 408 |
'Shows or hides the canvas window' |
713 | 409 |
|
410 |
#settingsGallery |
|
2901 | 411 |
'Shows or hides the gallery window' |
713 | 412 |
|
2294
0a4591e6bb20
changed #doGenerateAspectMethodFor
Stefan Vogel <sv@exept.de>
parents:
2293
diff
changeset
|
413 |
#settingsGenerateCommentedCode |
3032 | 414 |
'Enables/disables comments in the generated code, especially in aspect and hook methods' |
2294
0a4591e6bb20
changed #doGenerateAspectMethodFor
Stefan Vogel <sv@exept.de>
parents:
2293
diff
changeset
|
415 |
|
713 | 416 |
#settingsGridManager |
2901 | 417 |
'Opens a dialog to toggle grid display or to change the grids spacing' |
713 | 418 |
|
419 |
#settingsRedefineAspectMethods |
|
2901 | 420 |
'Toggles the permission to overwrite existing aspect methods' |
924 | 421 |
|
743 | 422 |
#settingsTranscriptHelp |
2901 | 423 |
'Toggles display of help texts (after opening a new GUI Painter)' |
743 | 424 |
|
713 | 425 |
#settingsUndoManager |
2901 | 426 |
'Opens a dialog to undo modifications' |
287 | 427 |
|
3032 | 428 |
#shadesOfBlue |
429 |
'Blue color tones' |
|
430 |
||
431 |
#shadesOfCyan |
|
432 |
'Cyan color tones' |
|
433 |
||
434 |
#shadesOfGray |
|
435 |
'Gray color tones' |
|
436 |
||
437 |
#shadesOfGreen |
|
438 |
'Green color tones' |
|
439 |
||
440 |
#shadesOfMagenta |
|
441 |
'Magenta color tones' |
|
442 |
||
443 |
#shadesOfRed |
|
444 |
'Red color tones' |
|
445 |
||
446 |
#shadesOfYellow |
|
447 |
'Yellow color tones' |
|
448 |
||
2690 | 449 |
#showGrid |
450 |
'Raster zeigen' |
|
451 |
||
2310
ac9be9035f2c
Support sorting of items in tree
Stefan Vogel <sv@exept.de>
parents:
2296
diff
changeset
|
452 |
#sortItems |
ac9be9035f2c
Support sorting of items in tree
Stefan Vogel <sv@exept.de>
parents:
2296
diff
changeset
|
453 |
'Sort the selected items by position (left to right, top to bottom)' |
ac9be9035f2c
Support sorting of items in tree
Stefan Vogel <sv@exept.de>
parents:
2296
diff
changeset
|
454 |
|
287 | 455 |
#spreadSelectionHor |
2901 | 456 |
'Sets the horizontal spaces between the selected widgets to the same value' |
287 | 457 |
|
466 | 458 |
#spreadSelectionVer |
2901 | 459 |
'Sets the vertical spaces between the selected widgets to the same value' |
713 | 460 |
|
461 |
#testGeometryTestMode |
|
2901 | 462 |
'Toggles geometry test mode (to define ratios of variable panels and top-window dimension)' |
498 | 463 |
|
464 |
#testStartApplication |
|
2901 | 465 |
'Starts the application with the current window spec' |
194 | 466 |
|
3032 | 467 |
#useDefaultColorToggle |
2336 | 468 |
'Toggle between default and explicit color' |
469 |
||
3229 | 470 |
#useDefaultFontToggle |
471 |
'Toggle between default and explicit font' |
|
472 |
||
473 |
#concreteFontsFamily |
|
474 |
'Choose a font family' |
|
475 |
||
476 |
#concreteFontsFace |
|
477 |
'Choose a font face' |
|
478 |
||
479 |
#concreteFontsStyle |
|
480 |
'Choose a font style' |
|
481 |
||
482 |
#concreteFontsSize |
|
483 |
'Choose a font size (in points, not pixels)' |
|
484 |
||
3054 | 485 |
|
193 | 486 |
) |
487 |
! ! |
|
488 |
||
297 | 489 |
!UIPainter class methodsFor:'helpers'! |
490 |
||
368 | 491 |
convertString:aString maxLineSize:maxCharactersPerLine skipLineFeed:skipLineFeed |
297 | 492 |
"converts a string to a string collection with maximum characters |
493 |
per line |
|
494 |
" |
|
495 |
|stream |
|
2217
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
496 |
max "{ Class:SmallInteger }" |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
497 |
size "{ Class:SmallInteger }" |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
498 |
start "{ Class:SmallInteger }" |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
499 |
stop "{ Class:SmallInteger }" |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
500 |
cpySz "{ Class:SmallInteger }" |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
501 |
lnSz "{ Class:SmallInteger }" |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
502 |
atBeginOfLine| |
297 | 503 |
|
504 |
maxCharactersPerLine < 20 ifFalse:[max := maxCharactersPerLine - 1] |
|
2217
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
505 |
ifTrue:[max := 20]. |
297 | 506 |
|
507 |
(size := aString size) <= max ifTrue:[ |
|
2217
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
508 |
^ aString |
297 | 509 |
]. |
510 |
start := 1. |
|
511 |
lnSz := 0. |
|
512 |
stream := (String new:size) writeStream. |
|
513 |
||
542 | 514 |
atBeginOfLine := true. |
515 |
||
297 | 516 |
[start <= size] whileTrue:[ |
2217
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
517 |
(start := aString indexOfNonSeparatorStartingAt:start) == 0 ifTrue:[ |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
518 |
^ stream contents |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
519 |
]. |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
520 |
(aString at:start) == $\ ifTrue:[ |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
521 |
skipLineFeed ifFalse:[ |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
522 |
stream nextPut:$\ |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
523 |
]. |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
524 |
start := start + 1. |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
525 |
stream cr. |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
526 |
start := start + 1. |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
527 |
lnSz := 0. |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
528 |
] ifFalse:[ |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
529 |
(stop := aString indexOfSeparatorStartingAt:start) == 0 ifTrue:[ |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
530 |
stop := size + 1 |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
531 |
]. |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
532 |
(aString at:(stop - 1)) == $\ ifTrue:[ |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
533 |
stop := stop - 1 |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
534 |
]. |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
535 |
cpySz := stop - start. |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
536 |
|
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
537 |
lnSz == 0 ifFalse:[ |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
538 |
(lnSz := lnSz + cpySz) >= max ifTrue:[stream cr. lnSz := cpySz. atBeginOfLine := true. ] |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
539 |
ifFalse:[stream space. lnSz := lnSz + 1] |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
540 |
] ifTrue:[ |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
541 |
lnSz := cpySz |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
542 |
]. |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
543 |
stream nextPutAll:aString startingAt:start to:(stop - 1). |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
544 |
start := stop. |
b54632779619
Use class var for SelectionPanel
Stefan Vogel <sv@exept.de>
parents:
2213
diff
changeset
|
545 |
] |
297 | 546 |
]. |
547 |
^ stream contents |
|
542 | 548 |
|
549 |
"Modified: / 1.2.1998 / 14:42:56 / cg" |
|
297 | 550 |
! ! |
551 |
||
735
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
552 |
!UIPainter class methodsFor:'image specs'! |
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
553 |
|
1883 | 554 |
arrowDown |
3113
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
555 |
<resource: #image> |
1883 | 556 |
"This resource specification was automatically generated |
557 |
by the ImageEditor of ST/X." |
|
558 |
"Do not manually edit this!! If it is corrupted, |
|
559 |
the ImageEditor may not be able to read the specification." |
|
560 |
" |
|
561 |
self arrowDown inspect |
|
562 |
ImageEditor openOnClass:self andSelector:#arrowDown |
|
3113
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
563 |
Icon flushCachedIcons" |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
564 |
|
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
565 |
^ Icon constantNamed:'UIPainter class arrowDown' |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
566 |
ifAbsentPut:[ |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
567 |
(Depth1Image new) |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
568 |
width:11; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
569 |
height:11; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
570 |
photometric:(#palette); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
571 |
bitsPerSample:(#[ 1 ]); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
572 |
samplesPerPixel:(1); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
573 |
bits:(ByteArray fromPackedString:'?>C?8O? ?>C@XNC <^C;8O? ?>C?8@@a'); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
574 |
colorMapFromArray:#[ 0 0 0 255 255 255 ]; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
575 |
mask:((ImageMask new) |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
576 |
width:11; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
577 |
height:11; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
578 |
bits:(ByteArray |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
579 |
fromPackedString:' |
1883 | 580 |
@@@@@@@@@@@? A<@C @D@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ |
3113
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
581 |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a'); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
582 |
yourself); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
583 |
yourself |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
584 |
] |
1883 | 585 |
! |
586 |
||
587 |
arrowLeft |
|
3113
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
588 |
<resource: #image> |
1883 | 589 |
"This resource specification was automatically generated |
590 |
by the ImageEditor of ST/X." |
|
591 |
"Do not manually edit this!! If it is corrupted, |
|
592 |
the ImageEditor may not be able to read the specification." |
|
593 |
" |
|
594 |
self arrowLeft inspect |
|
595 |
ImageEditor openOnClass:self andSelector:#arrowLeft |
|
3113
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
596 |
Icon flushCachedIcons" |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
597 |
|
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
598 |
^ Icon constantNamed:'UIPainter class arrowLeft' |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
599 |
ifAbsentPut:[ |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
600 |
(Depth1Image new) |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
601 |
width:11; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
602 |
height:11; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
603 |
photometric:(#palette); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
604 |
bitsPerSample:(#[ 1 ]); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
605 |
samplesPerPixel:(1); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
606 |
bits:(ByteArray fromPackedString:'?>C?8O7 >^C18NG <^C98O7 ?>C?8@@a'); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
607 |
colorMapFromArray:#[ 0 0 0 255 255 255 ]; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
608 |
mask:((ImageMask new) |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
609 |
width:11; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
610 |
height:11; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
611 |
bits:(ByteArray fromPackedString:'@@@@@@H@A @N@A8@C PF@@H@@@@@@@@a'); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
612 |
yourself); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
613 |
yourself |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
614 |
] |
1883 | 615 |
! |
616 |
||
617 |
arrowRight |
|
3113
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
618 |
<resource: #image> |
1883 | 619 |
"This resource specification was automatically generated |
620 |
by the ImageEditor of ST/X." |
|
621 |
"Do not manually edit this!! If it is corrupted, |
|
622 |
the ImageEditor may not be able to read the specification." |
|
623 |
" |
|
624 |
self arrowRight inspect |
|
625 |
ImageEditor openOnClass:self andSelector:#arrowRight |
|
3113
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
626 |
Icon flushCachedIcons" |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
627 |
|
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
628 |
^ Icon constantNamed:'UIPainter class arrowRight' |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
629 |
ifAbsentPut:[ |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
630 |
(Depth1Image new) |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
631 |
width:11; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
632 |
height:11; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
633 |
photometric:(#palette); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
634 |
bitsPerSample:(#[ 1 ]); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
635 |
samplesPerPixel:(1); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
636 |
bits:(ByteArray fromPackedString:'?>C?8O_ <>C18OC <^C38O_ ?>C?8@@a'); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
637 |
colorMapFromArray:#[ 0 0 0 255 255 255 ]; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
638 |
mask:((ImageMask new) |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
639 |
width:11; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
640 |
height:11; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
641 |
bits:(ByteArray fromPackedString:'@@@@@@ @C@@NA@<@C @L@@ @@@@@@@@a'); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
642 |
yourself); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
643 |
yourself |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
644 |
] |
1883 | 645 |
! |
646 |
||
647 |
arrowUp |
|
3113
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
648 |
<resource: #image> |
1883 | 649 |
"This resource specification was automatically generated |
650 |
by the ImageEditor of ST/X." |
|
651 |
"Do not manually edit this!! If it is corrupted, |
|
652 |
the ImageEditor may not be able to read the specification." |
|
653 |
" |
|
654 |
self arrowUp inspect |
|
655 |
ImageEditor openOnClass:self andSelector:#arrowUp |
|
3113
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
656 |
Icon flushCachedIcons" |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
657 |
|
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
658 |
^ Icon constantNamed:'UIPainter class arrowUp' |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
659 |
ifAbsentPut:[ |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
660 |
(Depth1Image new) |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
661 |
width:11; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
662 |
height:11; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
663 |
photometric:(#palette); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
664 |
bitsPerSample:(#[ 1 ]); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
665 |
samplesPerPixel:(1); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
666 |
bits:(ByteArray fromPackedString:'?>C?8O? >>C18NC 0FC?8O? ?>C?8@@a'); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
667 |
colorMapFromArray:#[ 0 0 0 255 255 255 ]; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
668 |
mask:((ImageMask new) |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
669 |
width:11; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
670 |
height:11; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
671 |
bits:(ByteArray fromPackedString:'@@@@@@@@A@@NG1<@O8@@@@@@@@@@AP@a'); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
672 |
yourself); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
673 |
yourself |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
674 |
] |
1883 | 675 |
! |
676 |
||
2210
0a2c19976d82
action creation/browse added
Claus Gittinger <cg@exept.de>
parents:
2208
diff
changeset
|
677 |
browseActionImage |
3113
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
678 |
<resource: #image> |
2210
0a2c19976d82
action creation/browse added
Claus Gittinger <cg@exept.de>
parents:
2208
diff
changeset
|
679 |
"This resource specification was automatically generated |
0a2c19976d82
action creation/browse added
Claus Gittinger <cg@exept.de>
parents:
2208
diff
changeset
|
680 |
by the ImageEditor of ST/X." |
0a2c19976d82
action creation/browse added
Claus Gittinger <cg@exept.de>
parents:
2208
diff
changeset
|
681 |
"Do not manually edit this!! If it is corrupted, |
0a2c19976d82
action creation/browse added
Claus Gittinger <cg@exept.de>
parents:
2208
diff
changeset
|
682 |
the ImageEditor may not be able to read the specification." |
0a2c19976d82
action creation/browse added
Claus Gittinger <cg@exept.de>
parents:
2208
diff
changeset
|
683 |
" |
0a2c19976d82
action creation/browse added
Claus Gittinger <cg@exept.de>
parents:
2208
diff
changeset
|
684 |
self browseActionImage inspect |
0a2c19976d82
action creation/browse added
Claus Gittinger <cg@exept.de>
parents:
2208
diff
changeset
|
685 |
ImageEditor openOnClass:self andSelector:#browseActionImage |
3113
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
686 |
Icon flushCachedIcons" |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
687 |
|
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
688 |
^ Icon constantNamed:'UIPainter class browseActionImage' |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
689 |
ifAbsentPut:[ |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
690 |
(Depth8Image new) |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
691 |
width:11; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
692 |
height:12; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
693 |
photometric:(#palette); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
694 |
bitsPerSample:(#[ 8 ]); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
695 |
samplesPerPixel:(1); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
696 |
bits:(ByteArray |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
697 |
fromPackedString:' |
2210
0a2c19976d82
action creation/browse added
Claus Gittinger <cg@exept.de>
parents:
2208
diff
changeset
|
698 |
R@@@RT%RST1LTD9H@D%IT%MRSD1PS$!!RT$5RUEILT%INT%UVT%YWU%IVUUIHT%!!YV%-ZVU!!RWD!!MT%Y[@E-VT%5\RD1RU%,@V5YRWU1HT%!!YV%-ZVU!!RWEIU |
3113
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
699 |
U%IVU5YRU%URZ%IR@EITT ART&,@@@@@T%MR@@@@@@@@@@@@T @@@@@@'); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
700 |
colorMapFromArray:#[ 255 248 248 63 144 224 64 152 232 79 160 232 64 152 224 64 144 224 63 136 224 48 128 216 48 120 216 47 112 216 47 112 208 32 104 208 32 96 208 31 88 200 16 88 200 16 80 200 15 72 192 15 64 192 0 64 192 0 56 184 0 56 176 0 48 160 143 200 248 128 200 248 127 192 248 112 184 248 111 176 248 96 168 248 95 160 248 80 152 248 79 144 248 64 128 248 63 120 248 48 112 248 32 104 248 31 96 248 16 88 248 15 80 248 0 72 248 0 64 240 0 48 168 112 176 248 111 168 248 96 160 248 95 152 248 80 144 248 79 136 248 63 128 248 48 120 248 47 112 248 15 72 248 0 48 176 95 168 232 191 224 248 191 216 248 176 208 248 175 208 248 175 200 248 160 200 248 160 192 248 159 192 248 159 184 248 144 184 248 144 176 248 143 168 248 128 168 248 128 160 248 127 160 248 127 152 240 31 72 176 111 168 232 127 160 216 207 216 240 240 240 248 240 232 240 63 88 176 239 232 240 240 240 240 48 88 176 96 168 224 224 224 232 96 160 224 240 144 24 255 248 48 255 248 96 255 248 24 240 208 24 255 248 152 255 248 88 255 248 136 255 248 176 255 248 200 48 80 176 223 216 224 96 152 224 96 152 216 95 152 216 48 120 208 80 144 208 80 136 208 79 128 200 79 120 200 79 120 192 64 112 192 64 104 184 63 104 184 63 96 184 15 56 160 ]; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
701 |
mask:((ImageMask new) |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
702 |
width:11; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
703 |
height:12; |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
704 |
bits:(ByteArray fromPackedString:'A@@N@F;@?>A?0G>@O8A?0O? [,@N@@P@'); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
705 |
yourself); |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
706 |
yourself |
7b82f9dd4e1b
Change images to use ImageMask instances instead of Depth1Image instances as
Stefan Vogel <sv@exept.de>
parents:
3111
diff
changeset
|
707 |
] |
2210
0a2c19976d82
action creation/browse added
Claus Gittinger <cg@exept.de>
parents:
2208
diff
changeset
|
708 |
! |
0a2c19976d82
action creation/browse added
Claus Gittinger <cg@exept.de>
parents:
2208
diff
changeset
|
709 |
|
3296 | 710 |
builderIcon |
711 |
"This resource specification was automatically generated |
|
712 |
by the ImageEditor of ST/X." |
|
713 |
||
714 |
"Do not manually edit this!! If it is corrupted, |
|
715 |
the ImageEditor may not be able to read the specification." |
|
716 |
||
717 |
" |
|
718 |
self builderIcon inspect |
|
719 |
ImageEditor openOnClass:self andSelector:#builderIcon |
|
720 |
Icon flushCachedIcons |
|
721 |
" |
|
722 |
||
723 |
<resource: #image> |
|
724 |
||
725 |
^Icon |
|
726 |
constantNamed:'UIPainter builderIcon' |
|
727 |
ifAbsentPut:[(Depth1Image width:48 height:48 photometric:#whiteIs0) bits:(ByteArray fromPackedString:' |
|
728 |
@@@@@@@@O??????<H@@@@@@DH_@@@@@DH_@OC?>DH_@IC??$H_@IC??4H_@IC??$H_@IC?>DH_@F@J DH_@F@M DH_@F@J DH_@F@M DH_@F@J DH_@F@M D |
|
729 |
H_@F@J DH_@F@M DH_@F@J DH_@F@M DH_@F@J DH_@_ M DH_@ PJ DH_@)PM DH_@)PJ DH_@)PM DH? )PJ DI?0)PM DK?8)PJ DK18)PM DK 8)PJ D |
|
730 |
K@X)PM DK@X PG@DK@X_ @@DH@@@@@@DH@@@@@@DO??????<@@@@@@@@NDIHNG''@IDIHIDD H$IHH$DPIDIHH$DPNDIHH$D IDIHH''G@H$IHH$E@H$IHH$D |
|
731 |
IBQHIDDPNA!!ONG$P@@@@@@@@'); yourself] |
|
732 |
! |
|
733 |
||
2157 | 734 |
defaultIcon |
2175 | 735 |
<resource: #programImage> |
736 |
||
2157 | 737 |
^ ToolbarIconLibrary startUIPainterIcon |
738 |
||
739 |
"Created: / 10-02-2007 / 14:45:56 / cg" |
|
2175 | 740 |
"Modified: / 17-09-2007 / 11:36:33 / cg" |
2157 | 741 |
! |
742 |
||
3218 | 743 |
delta |
744 |
"This resource specification was automatically generated |
|
745 |
by the ImageEditor of ST/X." |
|
746 |
||
747 |
"Do not manually edit this!! If it is corrupted, |
|
748 |
the ImageEditor may not be able to read the specification." |
|
749 |
||
750 |
" |
|
751 |
self delta inspect |
|
752 |
ImageEditor openOnClass:self andSelector:#delta |
|
753 |
Icon flushCachedIcons |
|
754 |
" |
|
755 |
||
756 |
<resource: #image> |
|
757 |
||
758 |
^Icon |
|
759 |
constantNamed:'UIPainter delta' |
|
760 |
ifAbsentPut:[(Depth1Image new) width:11; height:11; bits:(ByteArray fromPackedString:'?>C?8O? >>C@XLA 0VB;(H@ ?"C?8@@a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((ImageMask new) width:11; height:11; bits:(ByteArray fromPackedString:' |
|
761 |
@@@@@@@@A@@J@AD@HHA@PG?@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ |
|
762 |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@a') ; yourself); yourself] |
|
763 |
! |
|
764 |
||
2284
4116d91b6dda
Allow to edit a list in a spec inline
Stefan Vogel <sv@exept.de>
parents:
2280
diff
changeset
|
765 |
editTableIcon |
4116d91b6dda
Allow to edit a list in a spec inline
Stefan Vogel <sv@exept.de>
parents:
2280
diff
changeset
|
766 |
<resource: #programImage> |
4116d91b6dda
Allow to edit a list in a spec inline
Stefan Vogel <sv@exept.de>
parents:
2280
diff
changeset
|
767 |
|
4116d91b6dda
Allow to edit a list in a spec inline
Stefan Vogel <sv@exept.de>
parents:
2280
diff
changeset
|
768 |
^ SystemBrowser tableColumnsIcon |
4116d91b6dda
Allow to edit a list in a spec inline
Stefan Vogel <sv@exept.de>
parents:
2280
diff
changeset
|
769 |
! |
4116d91b6dda
Allow to edit a list in a spec inline
Stefan Vogel <sv@exept.de>
parents:
2280
diff
changeset
|
770 |
|
4116d91b6dda
Allow to edit a list in a spec inline
Stefan Vogel <sv@exept.de>
parents:
2280
diff
changeset
|
771 |
helpIcon |
4116d91b6dda
Allow to edit a list in a spec inline
Stefan Vogel <sv@exept.de>
parents:
2280
diff
changeset
|
772 |
<resource: #programImage> |
4116d91b6dda
Allow to edit a list in a spec inline
Stefan Vogel <sv@exept.de>
parents:
2280
diff
changeset
|
773 |
|
4116d91b6dda
Allow to edit a list in a spec inline
Stefan Vogel <sv@exept.de>
parents:
2280
diff
changeset
|
774 |
^ Icon helpIcon |
4116d91b6dda
Allow to edit a list in a spec inline
Stefan Vogel <sv@exept.de>
parents:
2280
diff
changeset
|
775 |
! |
4116d91b6dda
Allow to edit a list in a spec inline
Stefan Vogel <sv@exept.de>
parents:
2280
diff
changeset
|
776 |
|
2500
3e2feb544801
cleaned up the code and fixed bugs;
Claus Gittinger <cg@exept.de>
parents:
2479
diff
changeset
|
777 |
hideToolBarIcon |
3e2feb544801
cleaned up the code and fixed bugs;
Claus Gittinger <cg@exept.de>
parents:
2479
diff
changeset
|
778 |
<resource: #programImage> |
3e2feb544801
cleaned up the code and fixed bugs;
Claus Gittinger <cg@exept.de>
parents:
2479
diff
changeset
|
779 |
|
3e2feb544801
cleaned up the code and fixed bugs;
Claus Gittinger <cg@exept.de>
parents:
2479
diff
changeset
|
780 |
^ ToolbarIconLibrary hideToolBarIcon |
3e2feb544801
cleaned up the code and fixed bugs;
Claus Gittinger <cg@exept.de>
parents:
2479
diff
changeset
|
781 |
! |
3e2feb544801
cleaned up the code and fixed bugs;
Claus Gittinger <cg@exept.de>
parents:
2479
diff
changeset
|
782 |
|
735
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
783 |
iconAlignB |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
784 |
<resource: #image> |
743 | 785 |
"This resource specification was automatically generated |
786 |
by the ImageEditor of ST/X." |
|
778 | 787 |
"Do not manually edit this!! If it is corrupted, |
743 | 788 |
the ImageEditor may not be able to read the specification." |
735
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
789 |
" |
2268 | 790 |
self iconAlignB inspect |
743 | 791 |
ImageEditor openOnClass:self andSelector:#iconAlignB |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
792 |
Icon flushCachedIcons" |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
793 |
|
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
794 |
^ Icon constantNamed:'UIPainter class iconAlignB' |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
795 |
ifAbsentPut:[ |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
796 |
(Depth2Image new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
797 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
798 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
799 |
photometric:(#palette); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
800 |
bitsPerSample:(#( 2 )); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
801 |
samplesPerPixel:(1); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
802 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
803 |
fromPackedString:' |
2268 | 804 |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E@@@@@@@G@@@@@@@G@E@@@@@G@G@@@@@G@G@@@@@G@G@@@E@G@G@@@G@G@G@K@G@G@G@@@G@G@G@A@G@G@G@@ |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
805 |
@G@G@G@K@@@@@@@@B*****(@B*****(@@@@@@@@@@@@@@@@@@@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
806 |
colorMapFromArray:#[ 0 0 0 255 255 255 0 0 127 170 170 170 ]; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
807 |
mask:((ImageMask new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
808 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
809 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
810 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
811 |
fromPackedString:'@@@@@@@@@@@@@G C@G @@G'' @G'' @G'' @G'' G'''' G'''' G'''' G''''!!G'''' G'''' G'''' G'''' O??0O??0@@@@@@@C@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
812 |
yourself); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
813 |
yourself |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
814 |
] |
778 | 815 |
! |
735
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
816 |
|
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
817 |
iconAlignL |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
818 |
<resource: #image> |
743 | 819 |
"This resource specification was automatically generated |
820 |
by the ImageEditor of ST/X." |
|
778 | 821 |
"Do not manually edit this!! If it is corrupted, |
743 | 822 |
the ImageEditor may not be able to read the specification." |
735
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
823 |
" |
2268 | 824 |
self iconAlignL inspect |
743 | 825 |
ImageEditor openOnClass:self andSelector:#iconAlignL |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
826 |
Icon flushCachedIcons" |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
827 |
|
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
828 |
^ Icon constantNamed:'UIPainter class iconAlignL' |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
829 |
ifAbsentPut:[ |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
830 |
(Depth2Image new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
831 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
832 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
833 |
photometric:(#palette); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
834 |
bitsPerSample:(#( 2 )); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
835 |
samplesPerPixel:(1); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
836 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
837 |
fromPackedString:' |
2268 | 838 |
@@@@@@@@@@@@@@@@@(@@@@@@@(@@@@@@@(UUUP@I@(_??0@@@(@@@@@@@(@@@@@@@(@@@@@@@(@@@@@@@(UUUU@@@(_???@@@(@@@@@E@(@@@@@@@(@@@@@@ |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
839 |
@(@@@@@@@(UU@@@@@(_?@@@@@(@@@@@@@(@@@@@@@@@@@@@E@@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
840 |
colorMapFromArray:#[ 0 0 0 255 255 255 0 0 127 170 170 170 ]; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
841 |
mask:((ImageMask new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
842 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
843 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
844 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
845 |
fromPackedString:'@@@@@@@@F@@@G?>@G?>@G?>@G?>@F@@@F@@@G?? G?? G?? G?? F@@@F@@@G? @G? @G? @G? @F@@@@@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
846 |
yourself); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
847 |
yourself |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
848 |
] |
778 | 849 |
! |
735
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
850 |
|
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
851 |
iconAlignLR |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
852 |
<resource: #image> |
743 | 853 |
"This resource specification was automatically generated |
854 |
by the ImageEditor of ST/X." |
|
785 | 855 |
"Do not manually edit this!! If it is corrupted, |
743 | 856 |
the ImageEditor may not be able to read the specification." |
735
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
857 |
" |
2268 | 858 |
self iconAlignLR inspect |
743 | 859 |
ImageEditor openOnClass:self andSelector:#iconAlignLR |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
860 |
Icon flushCachedIcons" |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
861 |
|
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
862 |
^ Icon constantNamed:'UIPainter class iconAlignLR' |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
863 |
ifAbsentPut:[ |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
864 |
(Depth2Image new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
865 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
866 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
867 |
photometric:(#palette); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
868 |
bitsPerSample:(#( 2 )); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
869 |
samplesPerPixel:(1); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
870 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
871 |
fromPackedString:' |
2268 | 872 |
@@@@@@@@@@@@@@@@@(@@@B @@(@@@B @@(UUUR I@(_??2 @@(@@@B @@(@@@B @@(@@@B @@(@@@B @@(UUUR @@(_??2 @@(@@@B E@(@@@B @@(@@@B @ |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
873 |
@(@@@B @@(UUUR @@(_??B @@(@@@B @@(@@@B @@@@@@@@E@@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
874 |
colorMapFromArray:#[ 0 0 0 255 255 255 0 0 127 170 170 170 ]; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
875 |
mask:((ImageMask new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
876 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
877 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
878 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
879 |
fromPackedString:'@@@@@@@@F@A G?? G?? G?? G?? F@A F@A G?? G?? G?? G?? F@A F@A G?? G?? G?; G?? F@A @@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
880 |
yourself); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
881 |
yourself |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
882 |
] |
785 | 883 |
! |
735
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
884 |
|
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
885 |
iconAlignR |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
886 |
<resource: #image> |
743 | 887 |
"This resource specification was automatically generated |
888 |
by the ImageEditor of ST/X." |
|
778 | 889 |
"Do not manually edit this!! If it is corrupted, |
743 | 890 |
the ImageEditor may not be able to read the specification." |
735
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
891 |
" |
2268 | 892 |
self iconAlignR inspect |
743 | 893 |
ImageEditor openOnClass:self andSelector:#iconAlignR |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
894 |
Icon flushCachedIcons" |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
895 |
|
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
896 |
^ Icon constantNamed:'UIPainter class iconAlignR' |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
897 |
ifAbsentPut:[ |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
898 |
(Depth2Image new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
899 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
900 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
901 |
photometric:(#palette); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
902 |
bitsPerSample:(#( 2 )); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
903 |
samplesPerPixel:(1); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
904 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
905 |
fromPackedString:' |
2268 | 906 |
@@@@@@@@@@@@@@@@@@@@@B @@@@@@B @@@UUUR I@@_??2 @@@@@@B @@@@@@B @@@@@@B @@@@@@B @@EUUUR @@G???2 @@@@@@B E@@@@@B @@@@@@B @ |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
907 |
@@@@@B @@@@EUR @@@@G?2 @@@@@@B @@@@@@B @@@@@@@@E@@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
908 |
colorMapFromArray:#[ 0 0 0 255 255 255 0 0 127 170 170 170 ]; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
909 |
mask:((ImageMask new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
910 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
911 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
912 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
913 |
fromPackedString:'@@@@@@@@@@A A?? A?? A?? A?? @@A @@A G?? G?? G?? G?? @@A @@A @G? @G? @G? @G? @@A @@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
914 |
yourself); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
915 |
yourself |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
916 |
] |
1432 | 917 |
! |
735
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
918 |
|
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
919 |
iconAlignT |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
920 |
<resource: #image> |
743 | 921 |
"This resource specification was automatically generated |
922 |
by the ImageEditor of ST/X." |
|
778 | 923 |
"Do not manually edit this!! If it is corrupted, |
743 | 924 |
the ImageEditor may not be able to read the specification." |
735
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
925 |
" |
2268 | 926 |
self iconAlignT inspect |
743 | 927 |
ImageEditor openOnClass:self andSelector:#iconAlignT |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
928 |
Icon flushCachedIcons" |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
929 |
|
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
930 |
^ Icon constantNamed:'UIPainter class iconAlignT' |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
931 |
ifAbsentPut:[ |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
932 |
(Depth2Image new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
933 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
934 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
935 |
photometric:(#palette); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
936 |
bitsPerSample:(#( 2 )); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
937 |
samplesPerPixel:(1); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
938 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
939 |
fromPackedString:' |
2268 | 940 |
@@@@@@@@@@@@@@@@@@@@@@@@B*****(@B*****(@@@@@@@@@@E@E@E@K@G@G@G@@@G@G@G@A@G@G@G@@@G@G@G@K@G@G@G@@@@@G@G@@@@@G@G@@@@@G@G@@ |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
941 |
@@@G@G@@@@@G@@@@@@@G@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
942 |
colorMapFromArray:#[ 0 0 0 255 255 255 0 0 127 170 170 170 ]; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
943 |
mask:((ImageMask new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
944 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
945 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
946 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
947 |
fromPackedString:'@@@@@@@C@@@@O??0O??0G'''' G'''' G'''' G'''' G''''!!G'''' G'''' G'''' @G'' @G'' @G'' @G'' @G @@G C@@@@@@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
948 |
yourself); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
949 |
yourself |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
950 |
] |
778 | 951 |
! |
735
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
952 |
|
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
953 |
iconAlignTB |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
954 |
<resource: #image> |
743 | 955 |
"This resource specification was automatically generated |
956 |
by the ImageEditor of ST/X." |
|
778 | 957 |
"Do not manually edit this!! If it is corrupted, |
743 | 958 |
the ImageEditor may not be able to read the specification." |
735
29c8681ce68d
no picking for hierarchical lists + error handler for the starting phase
tz
parents:
729
diff
changeset
|
959 |
" |
2268 | 960 |
self iconAlignTB inspect |
743 | 961 |
ImageEditor openOnClass:self andSelector:#iconAlignTB |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
962 |
Icon flushCachedIcons" |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
963 |
|
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
964 |
^ Icon constantNamed:'UIPainter class iconAlignTB' |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
965 |
ifAbsentPut:[ |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
966 |
(Depth2Image new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
967 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
968 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
969 |
photometric:(#palette); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
970 |
bitsPerSample:(#( 2 )); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
971 |
samplesPerPixel:(1); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
972 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
973 |
fromPackedString:' |
2268 | 974 |
@@@@@@@A@@@@@@@@@@@@@@@@B*****(@B*****(@@@@@@@@@@E@E@E@G@G@G@G@@@G@G@G@@@G@G@G@@@G@G@G@H@G@G@G@@@G@G@G@A@G@G@G@@@G@G@G@@ |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
975 |
@G@G@D@@@@@@@@@@B*****(@B*****(@@@@@@@@@@@@@@@@H@@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
976 |
colorMapFromArray:#[ 0 0 0 255 255 255 0 0 127 170 170 170 ]; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
977 |
mask:((ImageMask new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
978 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
979 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
980 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
981 |
fromPackedString:'@@@@@@@C@@@@O??0O??0G'''' G''''!!G'''' G'''' G'''' G'''' G'''' G'''' G''''!!G''''!!G''& G'''' O??0O??2@@@@@@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
982 |
yourself); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
983 |
yourself |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
984 |
] |
1862 | 985 |
! |
986 |
||
987 |
iconCenterH |
|
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
988 |
<resource: #image> |
1862 | 989 |
"This resource specification was automatically generated |
990 |
by the ImageEditor of ST/X." |
|
991 |
"Do not manually edit this!! If it is corrupted, |
|
992 |
the ImageEditor may not be able to read the specification." |
|
993 |
" |
|
994 |
self iconCenterH inspect |
|
995 |
ImageEditor openOnClass:self andSelector:#iconCenterH |
|
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
996 |
Icon flushCachedIcons" |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
997 |
|
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
998 |
^ Icon constantNamed:'UIPainter class iconCenterH' |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
999 |
ifAbsentPut:[ |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1000 |
(Depth2Image new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1001 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1002 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1003 |
photometric:(#palette); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1004 |
bitsPerSample:(#( 2 )); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1005 |
samplesPerPixel:(1); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1006 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1007 |
fromPackedString:' |
1862 | 1008 |
@@@@@@@@@@@@@@@@@(@J@B @@(@J@B @@(UZUR @@(?:?R @@(@J@B @@(@J@B @@(@J@B @@@@J@@@@@EUZUU@@@O?:?=@@@@@J@@@@@(@J@B @@(@J@B @ |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1009 |
@(@J@B @@(EZUB@@@(O:=B @@(@J@B @@(@J@B @@@@@@@@@@@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1010 |
colorMapFromArray:#[ 0 0 0 255 255 255 0 0 127 170 170 170 ]; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1011 |
mask:((ImageMask new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1012 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1013 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1014 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1015 |
fromPackedString:'@@@@@@@@@C@@A?>@A?>@A?>@A?>@@C@@@C@@G?? G?? G?? G??#@C@@@C@C@?<@@?<A@?<@@?<@@C@@@@@A@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1016 |
yourself); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1017 |
yourself |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1018 |
] |
1862 | 1019 |
! |
1020 |
||
1021 |
iconCenterHInFrame |
|
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1022 |
<resource: #image> |
1862 | 1023 |
"This resource specification was automatically generated |
1024 |
by the ImageEditor of ST/X." |
|
1025 |
"Do not manually edit this!! If it is corrupted, |
|
1026 |
the ImageEditor may not be able to read the specification." |
|
1027 |
" |
|
1028 |
self iconCenterHInFrame inspect |
|
1029 |
ImageEditor openOnClass:self andSelector:#iconCenterHInFrame |
|
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1030 |
Icon flushCachedIcons" |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1031 |
|
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1032 |
^ Icon constantNamed:'UIPainter class iconCenterHInFrame' |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1033 |
ifAbsentPut:[ |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1034 |
(Depth2Image new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1035 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1036 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1037 |
photometric:(#palette); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1038 |
bitsPerSample:(#( 2 )); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1039 |
samplesPerPixel:(1); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1040 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1041 |
fromPackedString:' |
1862 | 1042 |
@@@@@@@@J******@H@@@@@B@HL@@@CB@H8UUUR2@HH???RB@H8@@@B2@HH@@@BB@H8@@@B2@H@@@@@B@HEUUUUB@HO???=B@H@@@@@B@H8@@@@2@HH@@@@B@ |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1043 |
H8@@@@2@HHEUUBB@H8O?=B2@HL@@@CB@H@@@@@B@J******@@@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1044 |
colorMapFromArray:#[ 0 0 0 255 255 255 0 0 127 170 170 170 ]; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1045 |
mask:((ImageMask new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1046 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1047 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1048 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1049 |
fromPackedString:'@@@@_??8P@@HW??(U?>(U?>(U?>(T@@(T@@(W??(W??(W??(W??+T@@(T@@+T?<(T?<)T?<(W??(P@@H_??9@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1050 |
yourself); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1051 |
yourself |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1052 |
] |
1862 | 1053 |
! |
1054 |
||
1055 |
iconCenterV |
|
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1056 |
<resource: #image> |
1862 | 1057 |
"This resource specification was automatically generated |
1058 |
by the ImageEditor of ST/X." |
|
1059 |
"Do not manually edit this!! If it is corrupted, |
|
1060 |
the ImageEditor may not be able to read the specification." |
|
1061 |
" |
|
1062 |
self iconCenterV inspect |
|
1063 |
ImageEditor openOnClass:self andSelector:#iconCenterV |
|
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1064 |
Icon flushCachedIcons" |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1065 |
|
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1066 |
^ Icon constantNamed:'UIPainter class iconCenterV' |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1067 |
ifAbsentPut:[ |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1068 |
(Depth2Image new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1069 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1070 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1071 |
photometric:(#palette); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1072 |
bitsPerSample:(#( 2 )); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1073 |
samplesPerPixel:(1); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1074 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1075 |
fromPackedString:' |
1862 | 1076 |
@@@@@@@@@@@@@@@@@@@@@@@@B**@J*(@B**MJ*(@@@@M@@@@@@@M@M@@@M@M@M@@@M@M@M@@@M@M@M@@B*****(@B*****(@@M@M@M@@@M@M@M@@@E@M@M@@ |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1077 |
@@@M@E@@@@@M@@@@B**EJ*(@B(*@J*(@@@@@@@@@@@@@@@@@@@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1078 |
colorMapFromArray:#[ 0 0 0 255 255 255 0 0 127 170 170 170 ]; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1079 |
mask:((ImageMask new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1080 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1081 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1082 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1083 |
fromPackedString:'@@@@@@@@@@@@@G @@G @@G'' G''''!!G'''' G'''' G'''' O??0O??0G'''' G'''' G'''' G'''' @G''#@G @@G C@@@@@@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1084 |
yourself); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1085 |
yourself |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1086 |
] |
1862 | 1087 |
! |
1088 |
||
1089 |
iconCenterVInFrame |
|
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1090 |
<resource: #image> |
1862 | 1091 |
"This resource specification was automatically generated |
1092 |
by the ImageEditor of ST/X." |
|
1093 |
"Do not manually edit this!! If it is corrupted, |
|
1094 |
the ImageEditor may not be able to read the specification." |
|
1095 |
" |
|
1096 |
self iconCenterVInFrame inspect |
|
1097 |
ImageEditor openOnClass:self andSelector:#iconCenterVInFrame |
|
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1098 |
Icon flushCachedIcons" |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1099 |
|
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1100 |
^ Icon constantNamed:'UIPainter class iconCenterVInFrame' |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1101 |
ifAbsentPut:[ |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1102 |
(Depth2Image new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1103 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1104 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1105 |
photometric:(#palette); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1106 |
bitsPerSample:(#( 2 )); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1107 |
samplesPerPixel:(1); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1108 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1109 |
fromPackedString:' |
1862 | 1110 |
@@@@@@@@J******@H@@@@@B@HL3@L3B@H:*GJ*2@H@@G@@B@HG@G@@B@HG@G@GB@HG@G@GB@HG@G@GB@HG@G@GB@HG@G@GB@HG@G@GB@HG@G@GB@HG@G@EB@ |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1111 |
HE@G@@B@H@@G@@B@H:*E@J2@HL3@L3B@H@@@@@B@J******@@@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1112 |
colorMapFromArray:#[ 0 0 0 255 255 255 0 0 127 170 170 170 ]; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1113 |
mask:((ImageMask new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1114 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1115 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1116 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1117 |
fromPackedString:'@@@B_??9P@@HW??(TG (W'' (W''''*W''''(W''''*W'''')W''''(W'''')W''''+W''''*W''''*W''''(W'' )TG (W??(P@@H_??8@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1118 |
yourself); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1119 |
yourself |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1120 |
] |
1862 | 1121 |
! |
1122 |
||
1123 |
iconDistributeH |
|
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1124 |
<resource: #image> |
1862 | 1125 |
"This resource specification was automatically generated |
1126 |
by the ImageEditor of ST/X." |
|
1127 |
"Do not manually edit this!! If it is corrupted, |
|
1128 |
the ImageEditor may not be able to read the specification." |
|
1129 |
" |
|
1130 |
self iconDistributeH inspect |
|
1131 |
ImageEditor openOnClass:self andSelector:#iconDistributeH |
|
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1132 |
Icon flushCachedIcons" |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1133 |
|
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1134 |
^ Icon constantNamed:'UIPainter class iconDistributeH' |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1135 |
ifAbsentPut:[ |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1136 |
(Depth2Image new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1137 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1138 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1139 |
photometric:(#palette); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1140 |
bitsPerSample:(#( 2 )); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1141 |
samplesPerPixel:(1); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1142 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1143 |
fromPackedString:' |
1863 | 1144 |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@E@@E@@E@G@@G@@G@G@@G@@G@GHBGHBG@GHBGHBG@GJ*GJ*G@GHBGHBG@GHBGHBG@GB*GJ G@GB*GJ G@ |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1145 |
G@@G@@G@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1146 |
colorMapFromArray:#[ 0 0 0 255 255 255 0 0 127 170 170 170 ]; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1147 |
mask:((ImageMask new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1148 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1149 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1150 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1151 |
fromPackedString:'@@@@@@@@@@@@@@@@<G <<G <<G ?<G =>O1?>O1????<>O1<>O1><G <<G ><G <<G ?@@@A@@@@@@@@@@@@@@@A'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1152 |
yourself); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1153 |
yourself |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1154 |
] |
1862 | 1155 |
! |
1156 |
||
1157 |
iconDistributeV |
|
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1158 |
<resource: #image> |
1862 | 1159 |
"This resource specification was automatically generated |
1160 |
by the ImageEditor of ST/X." |
|
1161 |
"Do not manually edit this!! If it is corrupted, |
|
1162 |
the ImageEditor may not be able to read the specification." |
|
1163 |
" |
|
1164 |
self iconDistributeV inspect |
|
1165 |
ImageEditor openOnClass:self andSelector:#iconDistributeV |
|
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1166 |
Icon flushCachedIcons" |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1167 |
|
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1168 |
^ Icon constantNamed:'UIPainter class iconDistributeV' |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1169 |
ifAbsentPut:[ |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1170 |
(Depth2Image new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1171 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1172 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1173 |
photometric:(#palette); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1174 |
bitsPerSample:(#( 2 )); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1175 |
samplesPerPixel:(1); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1176 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1177 |
fromPackedString:' |
1863 | 1178 |
@@@@@@@@@@UUUT@@@@???4@@@@@@@@@@@@@*(@@@@@JB@@@@@@JB@@@@@@JB@@@@@@J*(@@@@@@@@@@@@@UUUT@@@@???4@@@@@@@@@@@@J*(@@@@@JB@@@@ |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1179 |
@@JB@@@@@@@B@@@@@@@*(@@@@@@@@@@@@@UUUT@@@@???4@@@@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1180 |
colorMapFromArray:#[ 0 0 0 255 255 255 0 0 127 170 170 170 ]; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1181 |
mask:((ImageMask new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1182 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1183 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1184 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1185 |
fromPackedString:'A??@A??@A??CA??@@G0@@A@@@A@@@A@@@G0CA??@A??@A??@A??@@G0C@A@@@A@@@A@@@G0AA??AA??@A??@A??B'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1186 |
yourself); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1187 |
yourself |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1188 |
] |
2361
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1189 |
! |
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1190 |
|
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1191 |
iconResizeB |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1192 |
<resource: #image> |
2361
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1193 |
"This resource specification was automatically generated |
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1194 |
by the ImageEditor of ST/X." |
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1195 |
"Do not manually edit this!! If it is corrupted, |
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1196 |
the ImageEditor may not be able to read the specification." |
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1197 |
" |
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1198 |
self iconResizeB inspect |
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1199 |
ImageEditor openOnClass:self andSelector:#iconResizeB |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1200 |
Icon flushCachedIcons" |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1201 |
|
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1202 |
^ Icon constantNamed:'UIPainter class iconResizeB' |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1203 |
ifAbsentPut:[ |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1204 |
(Depth2Image new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1205 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1206 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1207 |
photometric:(#palette); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1208 |
bitsPerSample:(#( 2 )); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1209 |
samplesPerPixel:(1); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1210 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1211 |
fromPackedString:' |
2361
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1212 |
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@M@@@@@@@M@@@@@@@M@M@@@@@M@M@@@@@M@M@@@@@M@M@@@M@M@M@@@M@M@M@@@M@M@M@@@M@M@M@@@@@@@M@@ |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1213 |
@@@@@E@@@@@@@@@@B*****(@B*****(@@@@@@@@@@@@@@@@@@@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1214 |
colorMapFromArray:#[ 0 0 0 255 255 255 0 0 127 170 170 170 ]; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1215 |
mask:((ImageMask new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1216 |
width:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1217 |
height:22; |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1218 |
bits:(ByteArray |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1219 |
fromPackedString:'@@@@@@@@@@@@@G A@G @@G'' @G'' @G''#@G'' G''''"G'''' G''''!!G'''' G'''' O?7 G'''' CCG O??0O??0@@@A@@@@@@@@'); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1220 |
yourself); |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1221 |
yourself |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1222 |
] |
2361
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1223 |
! |
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1224 |
|
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1225 |
iconResizeL |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1226 |
<resource: #image> |
2361
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1227 |
"This resource specification was automatically generated |
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1228 |
by the ImageEditor of ST/X." |
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1229 |
"Do not manually edit this!! If it is corrupted, |
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1230 |
the ImageEditor may not be able to read the specification." |
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1231 |
" |
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1232 |
self iconResizeL inspect |
ae171f5bc002
can resize - allow resizing all;
Claus Gittinger <cg@exept.de>
parents:
2357
diff
changeset
|
1233 |
ImageEditor openOnClass:self andSelector:#iconResizeL |
3119
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1234 |
Icon flushCachedIcons" |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1235 |
|
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1236 |
^ Icon constantNamed:'UIPainter class iconResizeL' |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1237 |
ifAbsentPut:[ |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1238 |
(Depth2Image new) |
0a80c1bf3dde
Use ImageMask instead of Depth1Image for masks
Stefan Vogel <sv@exept.de>
parents:
3113
diff
changeset
|
1239 |
width:22; |