6811f21dbe72ffe26006ad6448e20b186e07ddcb
[org.ibex.core.git] / src / org / ibex / Box.java
1 // FIXME
2 // Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
3 package org.ibex;
4
5 // FEATURE: reflow before allowing js to read from width/height 
6 // FEATURE: fastpath for rows=1/cols=1
7 // FEATURE: mark to reflow starting with a certain child
8 // FEATURE: separate mark_for_reflow and mark_for_resize
9 // FEATURE: make all methods final
10 // FEATURE: use a linked list for the "frontier" when packing
11 // FEATURE:    or else have a way to mark a column "same as last one"?
12 // FEATURE: reintroduce surface.abort
13
14 import java.util.*;
15 import org.ibex.js.*;
16 import org.ibex.util.*;
17 import org.ibex.translators.*;
18
19 /**
20  *  <p>
21  *  Encapsulates the data for a single Ibex box as well as all layout
22  *  rendering logic.
23  *  </p>
24  *
25  *  <p>The rendering process consists of four phases; each requires
26  *     one DFS pass over the tree</p>
27  *  <ol><li> <b>repacking</b>: children of a box are packed into columns
28  *           and rows according to their colspan/rowspan attributes and
29  *           ordering.
30  *  <ol><li> <b>reconstraining</b>: Minimum and maximum sizes of columns are computed.
31  *      <li> <b>resizing</b>: width/height and x/y positions of children
32  *           are assigned, and PosChange/SizeChanges are triggered.
33  *      <li> <b>repainting</b>: children draw their content onto the PixelBuffer.
34  *  </ol>
35  *
36  *  The first three passes together are called the <i>reflow</i> phase.
37  *  Reflowing is done in a seperate pass since PosChanges and
38  *  SizeChanges trigger an Surface.abort; if rendering were done in the same
39  *  pass, rendering work done prior to the Surface.abort would be wasted.
40  */
41 public final class Box extends JSScope implements Scheduler.Task {
42
43     // Macros //////////////////////////////////////////////////////////////////////
44
45     //#define LENGTH int
46
47     final void REPLACE() { for(Box b2 = this; b2 != null && !b2.test(REPLACE); b2 = b2.parent) b2.set(REPLACE); }
48     final void RECONSTRAIN() { for(Box b2 = this; b2 != null && !b2.test(RECONSTRAIN); b2 = b2.parent) b2.set(RECONSTRAIN); }
49     final void REPACK() { for(Box b2 = this; b2 != null && !b2.test(REPACK); b2 = b2.parent) b2.set(REPACK); }
50
51     //#define CHECKSET_SHORT(prop) short nu = (short)toInt(value); if (nu == prop) break; prop = nu;
52     //#define CHECKSET_INT(prop) int nu = toInt(value); if (nu == prop) break; prop = nu;
53     //#define CHECKSET_FLAG(flag) boolean nu = toBoolean(value); if (nu == test(flag)) break; if (nu) set(flag); else clear(flag);
54     //#define CHECKSET_BOOLEAN(prop) boolean nu = toBoolean(value); if (nu == prop) break; prop = nu;
55     //#define CHECKSET_STRING(prop) if ((value==null&&prop==null)||(value!=null&&JS.toString(value).equals(prop))) break; prop=JS.toString(value);
56
57     protected Box() { super(null); }
58
59     static Hash boxToCursor = new Hash(500, 3);               // FIXME memory leak
60     public static final int MAX_LENGTH = Integer.MAX_VALUE;
61     static final Font DEFAULT_FONT;
62    
63     static {
64         Font f = null;
65         try { f = Font.getFont((Stream)Main.builtin.get("fonts/vera/Vera.ttf"), 10); }
66         catch(JSExn e) { Log.info(Box.class, "should never happen: "+e); }
67         DEFAULT_FONT = f;
68     }
69
70     // FIXME update these
71     // box properties can not be trapped
72     static final String[] props = new String[] {
73         "shrink", "hshrink", "vshrink", "x", "y", "width", "height", "cols", "rows",
74         "colspan", "rowspan", "align", "visible", "packed", "globalx", "globaly",
75         "minwidth", "maxwidth", "minheight", "maxheight", "indexof", "thisbox", "clip",
76         "numchildren", "redirect", "cursor", "mouse"
77     };
78
79     // FIXME update these
80     // events can have write traps, but not read traps
81     static final String[] events = new String[] {
82         "Press1", "Press2", "Press3",
83         "Release1", "Release2", "Release3",
84         "Click1", "Click2", "Click3",
85         "DoubleClick1", "DoubleClick2", "DoubleClick3",
86         "Enter", "Leave", "Move", "ChildChange",
87         "KeyPressed", "KeyReleased", "SizeChange",
88         "Focused", "Maximized", "Minimized", "Close"
89     };
90
91     // Flags //////////////////////////////////////////////////////////////////////
92
93     static final int MOUSEINSIDE  = 0x00000001;
94     static final int VISIBLE      = 0x00000002;
95     static final int PACKED       = 0x00000004;
96     static final int HSHRINK      = 0x00000008;
97     static final int VSHRINK      = 0x00000010;
98     static final int BLACK        = 0x00000020;  // for red-black code
99
100     static final int FIXED        = 0x00000040;
101     static final boolean ROWS     = true;
102     static final boolean COLS     = false;
103
104     static final int ISROOT       = 0x00000080;
105     static final int REPACK       = 0x00000100;
106     static final int RECONSTRAIN  = 0x00000200;
107     static final int REPLACE      = 0x00000400;
108
109     static final int ALIGN_TOP    = 0x00001000;
110     static final int ALIGN_BOTTOM = 0x00002000;
111     static final int ALIGN_LEFT   = 0x00004000;
112     static final int ALIGN_RIGHT  = 0x00008000;
113     static final int ALIGNS       = 0x0000f000;
114     static final int CURSOR       = 0x00010000;  // if true, this box has a cursor in the cursor hash; FEATURE: GC issues?
115     static final int CLIP         = 0x00020000;
116     static final int STOP_UPWARD_PROPAGATION    = 0x00040000;
117     static final int MOVED         = 0x00080000;
118
119
120     // Instance Data //////////////////////////////////////////////////////////////////////
121
122     Box parent = null;
123     Box redirect = this;
124     int flags = VISIBLE | PACKED | REPACK | RECONSTRAIN | REPLACE | FIXED | STOP_UPWARD_PROPAGATION | CLIP | MOVED;
125
126     private String text = null;
127     private Font font = DEFAULT_FONT; 
128     private Picture texture = null;
129     private short strokewidth = 1;
130     public int fillcolor = 0x00000000;
131     private int strokecolor = 0xFF000000;
132
133     private int aspect = 0;
134
135     // specified directly by user
136     public LENGTH minwidth = 0;
137     public LENGTH maxwidth = MAX_LENGTH;
138     public LENGTH minheight = 0;
139     public LENGTH maxheight = MAX_LENGTH;
140     private short rows = 1;
141     private short cols = 0;
142     private short rowspan = 1;
143     private short colspan = 1;
144
145     // computed during reflow
146     private short row = 0;
147     private short col = 0;
148     public LENGTH x = 0;
149     public LENGTH y = 0;
150     public LENGTH ax = 0;   // FEATURE: roll these into x/y; requires lots of changes
151     public LENGTH ay = 0;   // FEATURE: roll these into x/y; requires lots of changes; perhaps y()?
152     public LENGTH width = 0;
153     public LENGTH height = 0;
154     private LENGTH contentwidth = 0;      // == max(minwidth, textwidth, sum(child.contentwidth))
155     private LENGTH contentheight = 0;
156
157     /*
158     private VectorGraphics.VectorPath path = null;
159     private VectorGraphics.Affine transform = null;
160     private VectorGraphics.RasterPath rpath = null;
161     private VectorGraphics.Affine rtransform = null;
162     */
163
164     //#define DIRTY dirty()
165
166     // Instance Methods /////////////////////////////////////////////////////////////////////
167
168     public final int fontSize() { return font == null ? DEFAULT_FONT.pointsize : font.pointsize; }
169
170     /** invoked when a resource needed to render ourselves finishes loading */
171     public void perform() throws JSExn {
172         if (texture == null) { Log.warn(Box.class, "perform() called with null texture"); return; }
173         if (texture.isLoaded) {
174             setMinWidth(max(texture.width, maxwidth));
175             setMinHeight(max(texture.height, maxheight));
176             DIRTY; }
177         else { JS res = texture.stream; texture = null; throw new JSExn("image not found: "+res.unclone()); }
178     }
179
180     // FEATURE: use cx2/cy2 format
181     /** Adds the intersection of (x,y,w,h) and the node's current actual geometry to the Surface's dirty list */
182     public void dirty() { dirty(0, 0, width, height); }
183     public void dirty(int x, int y, int w, int h) {
184         for(Box cur = this; cur != null; cur = cur.parent) {
185             // x and y have a different meaning on the root box
186             if (cur.parent != null && cur.test(CLIP)) {
187                 w = min(x + w, cur.width) - max(x, 0);
188                 h = min(y + h, cur.height) - max(y, 0);
189                 x = max(x, 0);
190                 y = max(y, 0);
191             }
192             if (w <= 0 || h <= 0) return;
193             if (cur.parent == null && cur.getSurface() != null) cur.getSurface().dirty(x, y, w, h);
194             x += cur.x;
195             y += cur.y;
196         }
197     }
198
199
200     // Reflow ////////////////////////////////////////////////////////////////////////////////////////
201
202     private static Box[] frontier = new Box[65535];
203     /** pack the boxes into rows and columns, compute contentwidth */
204     void pack() {
205         if (!test(REPACK)) { constrain(); return; }
206         boolean haskid = false;
207         for(Box child = getChild(0); child != null; child = child.nextSibling()) { haskid = true; child.pack(); }
208         if (!haskid) { clear(REPACK); constrain(); return; }
209         int frontier_size = 0;
210         //#repeat COLS/ROWS rows/cols cols/rows col/row row/col colspan/rowspan rowspan/colspan \
211         //        contentheight/contentwidth contentwidth/contentheight
212         if (test(FIXED) == COLS) {
213             rows = 0;
214             for(Box child = getChild(0); child != null; child = child.nextSibling()) {
215                 if (!child.test(PACKED) || !child.test(VISIBLE)) continue;
216                 if (cols == 1) { child.row = rows; rows += child.rowspan; child.col = 0; continue; }
217                 child.col = (short)(frontier_size <= 0 ? 0 : (frontier[frontier_size-1].col + frontier[frontier_size-1].colspan));
218                 child.row = (short)(frontier_size <= 0 ? 0 : frontier[frontier_size-1].row);
219                 if (child.col + min(cols,child.colspan) > cols) { child.col = 0; child.row++; }
220                 for(int i=0; i<frontier_size; i++)
221                     if (frontier[i].row + frontier[i].rowspan <= child.row) {
222                         frontier[i--] = frontier[--frontier_size]; frontier[frontier_size] = null;
223                     } else if (frontier[i].col<child.col+min(cols,child.colspan)&&frontier[i].col+frontier[i].colspan>child.col) {
224                         child.col = (short)(frontier[i].col + frontier[i].colspan);
225                         if (child.col + min(cols,child.colspan) > cols) {
226                             child.row = (short)(frontier[i].row + frontier[i].rowspan);
227                             for(i--; i>0; i--) child.row = (short)min(row, frontier[i].row + frontier[i].rowspan);
228                             child.col = (short)0;
229                         }
230                         i = -1;
231                     } else break;
232                 frontier[frontier_size++] = child;
233             }
234             for(int i=0; i<frontier_size; i++){ rows=(short)max(rows, frontier[i].row + frontier[i].rowspan); frontier[i] = null; }
235         }
236         //#end
237         clear(REPACK);
238         set(RECONSTRAIN);   // FIXME: be smarter / more incremental
239         constrain();
240     }
241
242     public void constrain() {
243         if (!test(RECONSTRAIN)) return;
244         solve(true);
245         //#repeat contentwidth/contentheight contentheight/contentwidth minwidth/minheight row/col col/row \
246         //        textwidth/textheight maxwidth/maxheight cols/rows rows/cols colspan/rowspan rowspan/colspan
247         contentwidth = bound(minwidth,
248                              max(contentwidth, font == null || text == null ? 0 : font.textwidth(text)),
249                              maxwidth);
250         //#end
251         set(REPLACE); // FIXME: be smarter / more incremental
252     }
253     
254     void resize(LENGTH x, LENGTH y, LENGTH width, LENGTH height) {
255         if (x == this.x && y == this.y && width == this.width && height == this.height) return;
256         boolean sizechange = (this.width != width || this.height != height) && getTrap("SizeChange") != null;
257         int thisx = parent == null ? 0 : this.x;
258         int thisy = parent == null ? 0 : this.y;
259         Box who = (parent == null ? this : parent);
260         if (this.x != x || this.y != y) set(MOVED);
261         if (texture == null && (text == null || text.equals("")) && !test(MOVED)) {
262             if ((fillcolor & 0xff000000) != 0 || parent == null) {
263                 who.dirty(thisx+min(this.width,width), thisy, Math.abs(width-this.width), max(this.height, height));
264                 who.dirty(thisx, thisy+min(this.height,height), max(this.width, width), Math.abs(height-this.height));
265             }
266             this.width = width; this.height = height; this.x = x; this.y = y;
267         } else {
268             who.dirty(thisx, thisy, this.width, this.height);
269             this.width = width; this.height = height; this.x = x; this.y = y;
270             DIRTY;
271         }
272         if (sizechange) putAndTriggerTrapsAndCatchExceptions("SizeChange", T);
273     }
274
275     private float targetColumnSize = (float)0.0;
276     private float targetRowSize = (float)0.0;
277     private static float[] sizes = new float[65535];
278     private static float[] sizes_v = new float[65535];
279     private static int[] regions = new int[65535];
280     private static int[] regions_v = new int[65535];
281     private static int numregions = 0;
282     private static int numregions_v = 0;
283
284     void solve(boolean findMinimum) {
285         int numkids = 0; for(Box c = firstPackedChild(); c != null; c = c.nextPackedSibling()) numkids++;
286         //#repeat col/row colspan/rowspan contentwidth/contentheight width/height HSHRINK/VSHRINK numregions/numregions_v \
287         //        maxwidth/maxheight cols/rows minwidth/minheight regions/regions_v targetColumnSize/targetRowSize sizes/sizes_v \
288         //        HSHRINK/VSHRINK
289         if (numkids == 0) {
290             if (findMinimum) contentwidth = 0;
291             else targetColumnSize = 0;
292         } else if (cols == 1) {
293             if (findMinimum) {
294                 contentwidth = 0;
295                 for(Box c = firstPackedChild(); c != null; c = c.nextPackedSibling())
296                     contentwidth = max(contentwidth, c.contentwidth);
297             } else {
298                 targetColumnSize = width;
299             }
300         } else if (cols > 1) do {
301
302             // FIXME: cache these?
303             // compute regions
304             numregions = 0;
305             for(Box c = firstPackedChild(); c != null; c = c.nextPackedSibling()) {
306                 regions[numregions++] = c.col;
307                 regions[numregions++] = min(cols, c.col+c.colspan);
308             }
309             Vec.sortInts(regions, 0, numregions);
310             int j = 0;
311             int newnumregions = numregions;
312             for(int i=1; i<numregions; i++) {
313                 if (regions[j] != regions[i]) j++;
314                 else newnumregions--;
315                 regions[j] = regions[i];
316             }
317             numregions = newnumregions;
318             if (regions[numregions-1] == cols) numregions--;
319             else regions[numregions] = cols;
320
321             int target = findMinimum ? 0 : Math.max(width, contentwidth);
322             // priority 0: (inviolable) honor minwidths
323             // priority 1: sum of columns no greater than parent
324             // priority 2: honor maxwidths
325             // priority 3: equalize columns
326             float targetColumnSize = target == 0 ? 0 : this.targetColumnSize;
327             float last_columnsize = 0;
328             float last_total = 0;
329             float total;
330             boolean first = true;
331             while(true) {
332                 total = (float)0.0;
333                 for(int r=0; r<numregions; r++) total += (sizes[r] = (float)(targetColumnSize * (regions[r+1]-regions[r])));
334                 int minregion = 0;
335                 for(Box child = firstPackedChild(); child != null; child = child.nextPackedSibling())
336                     for(int r=(child.col==0?0:minregion); r<numregions; r++) {
337                         if (regions[r+1] < child.col) continue;
338                         if (regions[r] >= min(child.col+child.colspan,cols)) { minregion = r; break; }
339                         total -= sizes[r];
340                         int child_maxwidth = child.test(HSHRINK)?child.contentwidth:child.maxwidth;
341                         if (sizes[r] <= (float)(targetColumnSize*(regions[r+1]-regions[r])))
342                             if ((child.colspan * targetColumnSize) > (child_maxwidth + (float)0.5))
343                                 sizes[r] = (float)Math.min(sizes[r], (regions[r+1]-regions[r])*(child_maxwidth/child.colspan));
344                         if ((child.colspan * targetColumnSize) < (child.contentwidth - (float)0.5))
345                             sizes[r] = (float)Math.max(sizes[r], (regions[r+1]-regions[r])*(child.contentwidth/child.colspan));
346                         total += sizes[r];
347                     }
348                 float save = targetColumnSize;
349                 if (Math.abs(total - target) <= (float)1.0) break;
350                 if (!first) {
351                     if (Math.abs(total - last_total) <= (float)1.0) break;
352                 } else {
353                     last_columnsize = ((total - target) / (float)cols) + targetColumnSize;
354                 }
355                 if (total < target)      targetColumnSize += Math.abs((last_columnsize - targetColumnSize) / (float)1.1);
356                 else if (total > target) targetColumnSize -= Math.abs((last_columnsize - targetColumnSize) / (float)1.1);
357                 last_columnsize = save;
358                 last_total = total;
359                 first = false;
360             }
361             if (findMinimum) contentwidth = Math.round(total);
362             else this.targetColumnSize = targetColumnSize;
363         } while(false);
364         //#end
365     }
366
367     void place() {
368         solve(false);
369         for(Box child = getChild(0); child != null; child = child.nextSibling()) {
370             if (!child.test(VISIBLE)) continue;
371             if (!child.test(REPLACE)) continue;
372             int child_width, child_height, child_x, child_y;
373             if (!child.test(PACKED)) {
374                 child_width = child.test(HSHRINK) ? child.contentwidth : min(child.maxwidth, width - Math.abs(child.ax));
375                 child_height = child.test(VSHRINK) ? child.contentheight : min(child.maxheight, height - Math.abs(child.ay));
376                 child_width = max(child.minwidth, child_width);
377                 child_height = max(child.minheight, child_height);
378                 int gap_x = width - child_width;
379                 int gap_y = height - child_height;
380                 child_x = child.ax + (child.test(ALIGN_RIGHT) ? gap_x : !child.test(ALIGN_LEFT) ? gap_x / 2 : 0);
381                 child_y = child.ay + (child.test(ALIGN_BOTTOM) ? gap_y : !child.test(ALIGN_TOP) ? gap_y / 2 : 0);
382             } else {
383                 int diff;
384                 //#repeat col/row colspan/rowspan contentwidth/contentheight width/height colMaxWidth/rowMaxHeight \
385                 //        child_x/child_y x/y HSHRINK/VSHRINK maxwidth/maxheight cols/rows minwidth/minheight x_slack/y_slack \
386                 //        child_width/child_height ALIGN_RIGHT/ALIGN_BOTTOM ALIGN_LEFT/ALIGN_TOP lp_h/lp \
387                 //        numregions/numregions_v regions/regions_v targetColumnSize/targetRowSize sizes/sizes_v
388                 child_x = 0;
389                 if (cols == 1) {
390                     child_width = width;
391                 } else {
392                     child_width = 0;
393                     for(int r=0; r<numregions; r++) {
394                         if (regions[r] < child.col) child_x += Math.round(sizes[r]);
395                         else if (regions[r] < child.col+child.colspan) child_width += Math.round(sizes[r]);
396                     }
397                 }
398                 diff = (child_width - (child.test(HSHRINK) ? child.contentwidth : min(child_width, child.maxwidth)));
399                 child_x += (child.test(ALIGN_RIGHT) ? diff : child.test(ALIGN_LEFT) ? 0 : diff / 2);
400                 child_width -= diff;
401                 //#end
402             }
403             if (test(MOVED)) child.set(MOVED);
404             child.resize(child_x, child_y, child_width, child_height);
405         }
406         clear(MOVED);
407
408         for(Box child = getChild(0); child != null; child = child.nextSibling())
409             if (child.test(VISIBLE) && child.treeSize() > 0)
410                 child.place();
411     }
412
413
414
415     // Rendering Pipeline /////////////////////////////////////////////////////////////////////
416
417     /** Renders self and children within the specified region. All rendering operations are clipped to xIn,yIn,wIn,hIn */
418     void render(int parentx, int parenty, int cx1, int cy1, int cx2, int cy2, PixelBuffer buf, VectorGraphics.Affine a) {
419         if (!test(VISIBLE)) return;
420         int globalx = parentx + (parent == null ? 0 : x);
421         int globaly = parenty + (parent == null ? 0 : y);
422
423         // intersect the x,y,w,h rendering window with ourselves; quit if it's empty
424         if (test(CLIP)) {
425             cx1 = max(cx1, globalx);
426             cy1 = max(cy1, globaly);
427             cx2 = min(cx2, globalx + width);
428             cy2 = min(cy2, globaly + height);
429             if (cx2 <= cx1 || cy2 <= cy1) return;
430         }
431
432         if ((fillcolor & 0xFF000000) != 0x00000000 || parent == null)
433             buf.fillTrapezoid(cx1, cx2, cy1, cx1, cx2, cy2, (fillcolor & 0xFF000000) == 0 ? 0xffffffff : fillcolor);
434
435         if (texture != null && texture.isLoaded)
436             for(int x = globalx; x < cx2; x += texture.width)
437                 for(int y = globaly; y < cy2; y += texture.height)
438                     buf.drawPicture(texture, x, y, cx1, cy1, cx2, cy2);
439  
440         if (text != null && !text.equals("") && font != null) {
441             int gap_x = width - font.textwidth(text);
442             int gap_y = height - font.textheight(text);
443             int text_x = globalx + (test(ALIGN_RIGHT) ? gap_x : !test(ALIGN_LEFT) ? gap_x/2 : 0);
444             int text_y = globaly + (test(ALIGN_BOTTOM) ? gap_y : !test(ALIGN_TOP) ? gap_y/2 : 0);
445             font.rasterizeGlyphs(text, buf, strokecolor, text_x, text_y, cx1, cy1, cx2, cy2);
446         }
447
448         for(Box b = getChild(0); b != null; b = b.nextSibling())
449             b.render(globalx, globaly, cx1, cy1, cx2, cy2, buf, null);
450     }
451     
452     
453     // Methods to implement org.ibex.js.JS //////////////////////////////////////
454
455   
456     public Object callMethod(Object method, Object a0, Object a1, Object a2, Object[] rest, int nargs) throws JSExn {
457         switch (nargs) {
458             case 1: {
459                 //#switch(method)
460                 case "indexof":
461                     Box b = (Box)a0;
462                     if (b.parent != this)
463                         return (redirect == null || redirect == this) ?
464                             N(-1) :
465                             redirect.callMethod(method, a0, a1, a2, rest, nargs);
466                     return N(b.getIndexInParent());
467
468                 case "distanceto":
469                     Box b = (Box)a0;
470                     JS ret = new JS();
471                     ret.put("x", N(b.localToGlobalX(0) - localToGlobalX(0)));
472                     ret.put("y", N(b.localToGlobalY(0) - localToGlobalY(0)));
473                     return ret;
474
475                 //#end
476             }
477         }
478         return super.callMethod(method, a0, a1, a2, rest, nargs);
479     }
480
481     protected boolean isTrappable(Object key, boolean isRead) {
482         if (key == null) return false;
483         else if (key instanceof String) {
484             // not allowed to trap box properties, and no read traps on events
485             String name = (String)key;
486             for (int i=0; i < props.length; i++) if (name.equals(props[i])) return false; 
487             if (isRead) for (int i=0; i < events.length; i++) if (name.equals(events[i])) return false; 
488         }
489
490         return true;
491     }
492
493     public Object get(Object name) throws JSExn {
494         if (name instanceof Number)
495             return redirect == null ? null : redirect == this ? getChild(toInt(name)) : redirect.get(name);
496
497         //#switch(name)
498         case "surface": return parent == null ? null : parent.getAndTriggerTraps("surface");
499         case "indexof": return METHOD;
500         case "distanceto": return METHOD;
501         case "text": return text;
502         case "path": throw new JSExn("cannot read from the path property");
503         case "fill": return colorToString(fillcolor);
504         case "strokecolor": return colorToString(strokecolor);
505         case "textcolor": return colorToString(strokecolor);
506         case "font": return font == null ? null : font.stream;
507         case "fontsize": return font == null ? N(10) : N(font.pointsize);
508         case "strokewidth": return N(strokewidth);
509         case "align": return alignToString();
510         case "thisbox": return this;
511         case "shrink": return B(test(HSHRINK) || test(VSHRINK));
512         case "hshrink": return B(test(HSHRINK));
513         case "vshrink": return B(test(VSHRINK));
514         case "aspect": return N(aspect);
515         case "x": return (parent == null || !test(VISIBLE)) ? N(0) : test(PACKED) ? N(x) : N(ax);
516         case "y": return (parent == null || !test(VISIBLE)) ? N(0) : test(PACKED) ? N(y) : N(ay);
517         case "cols": return test(FIXED) == COLS ? N(cols) : N(0);
518         case "rows": return test(FIXED) == ROWS ? N(rows) : N(0);
519         case "colspan": return N(colspan);
520         case "rowspan": return N(rowspan);
521         case "width": return N(width);
522         case "height": return N(height);
523         case "minwidth": return N(minwidth);
524         case "maxwidth": return N(maxwidth);
525         case "minheight": return N(minheight);
526         case "maxheight": return N(maxheight);
527         case "clip": return B(test(CLIP));
528         case "visible": return B(test(VISIBLE) && (parent == null || (parent.get("visible") == T)));
529         case "packed": return B(test(PACKED));
530         case "globalx": return N(localToGlobalX(0));
531         case "globaly": return N(localToGlobalY(0));
532         case "cursor": return test(CURSOR) ? boxToCursor.get(this) : null;
533         case "mouse":
534             if (getSurface() == null) return null;
535             if (getSurface()._mousex == Integer.MAX_VALUE)
536                 throw new JSExn("you cannot read from the box.mouse property in background thread context");
537             return new Mouse();
538         case "numchildren": return redirect == null ? N(0) : redirect == this ? N(treeSize()) : redirect.get("numchildren");
539         case "redirect": return redirect == null ? null : redirect == this ? T : redirect.get("redirect");
540         case "Minimized": if (parent == null && getSurface() != null) return B(getSurface().minimized);
541         default: return super.get(name);
542         //#end
543         throw new Error("unreachable"); // unreachable
544     }
545
546     private class Mouse extends JS.Cloneable {
547         public Object get(Object key) {
548             //#switch(key)
549             case "x": return N(globalToLocalX(getSurface()._mousex));
550             case "y": return N(globalToLocalY(getSurface()._mousey));
551
552             // this might not get recomputed if we change mousex/mousey...
553             case "inside": return B(test(MOUSEINSIDE));
554             //#end
555             return null;
556         }
557     }
558
559     public void setMaxWidth(Object value) {
560         do { CHECKSET_INT(maxwidth); RECONSTRAIN(); } while(false);
561         if (parent == null && getSurface() != null) getSurface().pendingWidth = maxwidth; 
562     }
563     public void setMaxHeight(Object value) {
564         do { CHECKSET_INT(maxheight); RECONSTRAIN(); } while(false);
565         if (parent == null && getSurface() != null) getSurface().pendingHeight = maxheight;
566     }
567
568     private void setMinWidth(int m) { if (this.minwidth != m) { RECONSTRAIN(); this.minwidth = m; } }
569     private void setMinHeight(int m) { if (this.minheight != m) { RECONSTRAIN(); this.minheight = m; } }
570
571     public void put(Object name, Object value) throws JSExn {
572         if (name instanceof Number) { put(toInt(name), value); return; }
573         //#switch(name)
574         case "text": CHECKSET_STRING(text); RECONSTRAIN(); DIRTY;
575         case "strokecolor": value = N(stringToColor((String)value)); CHECKSET_INT(strokecolor); DIRTY;
576         case "textcolor": value = N(stringToColor((String)value)); CHECKSET_INT(strokecolor); DIRTY;
577         case "strokewidth": CHECKSET_SHORT(strokewidth); DIRTY;
578         case "shrink": put("hshrink", value); put("vshrink", value);
579         case "hshrink": CHECKSET_FLAG(HSHRINK); RECONSTRAIN();
580         case "vshrink": CHECKSET_FLAG(VSHRINK); RECONSTRAIN();
581         case "width": put("maxwidth", value); put("minwidth", value);
582         case "height": put("maxheight", value); put("minheight", value);
583         case "maxwidth": setMaxWidth(value);
584         case "minwidth": CHECKSET_INT(minwidth); RECONSTRAIN();
585                          if (parent == null && getSurface() != null)
586                              getSurface().setMinimumSize(minwidth, minheight, minwidth != maxwidth || minheight != maxheight);
587         case "maxheight": setMaxHeight(value);
588         case "minheight": CHECKSET_INT(minheight); RECONSTRAIN();
589                          if (parent == null && getSurface() != null)
590                              getSurface().setMinimumSize(minwidth, minheight, minwidth != maxwidth || minheight != maxheight);
591         case "colspan": if (toInt(value) > 0) { CHECKSET_SHORT(colspan); if (parent != null) parent.REPACK(); }
592         case "rowspan": if (toInt(value) > 0) { CHECKSET_SHORT(rowspan); if (parent != null) parent.REPACK(); }
593         case "rows": CHECKSET_SHORT(rows); if (rows==0){set(FIXED, COLS);if(cols==0)cols=1;} else set(FIXED, ROWS); REPACK();
594         case "cols": CHECKSET_SHORT(cols); if (cols==0){set(FIXED, ROWS);if(rows==0)rows=1;} else set(FIXED, COLS); REPACK();
595         case "clip": CHECKSET_FLAG(CLIP); if (parent == null) DIRTY; else parent.DIRTY;
596         case "visible": CHECKSET_FLAG(VISIBLE); RECONSTRAIN(); DIRTY;
597         case "packed": CHECKSET_FLAG(PACKED); if (parent != null) parent.REPACK();
598         case "align": clear(ALIGNS); setAlign(value == null ? "center" : value); REPLACE();
599         case "cursor": setCursor(value);
600         case "fill": setFill(value);
601         case "mouse":
602             int mousex = toInt(((JS)value).get("x"));
603             int mousey = toInt(((JS)value).get("y"));
604             getSurface()._mousex = localToGlobalX(mousex);
605             getSurface()._mousey = localToGlobalY(mousey);
606         case "Minimized": if (parent == null && getSurface() != null) getSurface().minimized = toBoolean(value);  // FEATURE
607         case "Maximized": if (parent == null && getSurface() != null) getSurface().maximized = toBoolean(value);  // FEATURE
608         case "Close": if (parent == null && getSurface() != null) getSurface().dispose(true);
609         case "redirect":
610             if (value == null) { redirect = null; return; }
611             for(Box cur = (Box)value; cur != null; cur = cur.parent)
612                 if (cur == redirect) {
613                     redirect = (Box)value;
614                     return;
615                 }
616             JS.error("redirect can only be set to a descendant of its current value");
617         case "font":
618             if(!(value instanceof Stream)) throw new JSExn("You can only put streams to the font property");
619             font = value == null ? null : Font.getFont((Stream)value, font == null ? 10 : font.pointsize);
620             RECONSTRAIN();
621             DIRTY;
622         case "fontsize": font = Font.getFont(font == null ? null : font.stream, toInt(value)); RECONSTRAIN(); DIRTY;
623         case "x": if (parent==null && Surface.fromBox(this)!=null) {
624             CHECKSET_INT(x);
625         } else {
626             if (test(PACKED) && parent != null) return;
627             CHECKSET_INT(ax);
628             REPLACE();
629         }
630         case "y": if (parent==null && Surface.fromBox(this)!=null) {
631             CHECKSET_INT(y);
632         } else {
633             if (test(PACKED) && parent != null) return;
634             CHECKSET_INT(ay);
635             REPLACE();
636         }
637         case "titlebar":
638             if (getSurface() != null && value != null) getSurface().setTitleBarText(JS.toString(value));
639             super.put(name,value);
640
641         case "Press1":        if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
642         case "Press2":        if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
643         case "Press3":        if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
644         case "Release1":      if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
645         case "Release2":      if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
646         case "Release3":      if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
647         case "Click1":        if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
648         case "Click2":        if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
649         case "Click3":        if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
650         case "DoubleClick1":  if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
651         case "DoubleClick2":  if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
652         case "DoubleClick3":  if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
653         case "KeyPressed":    if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
654         case "KeyReleased":   if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
655         case "Move":          if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
656
657         case "HScroll":       if (!test(STOP_UPWARD_PROPAGATION) && parent != null)
658             parent.putAndTriggerTraps(name, N(((Number)value).floatValue() * ((float)parent.fontSize()) / ((float)fontSize())));
659         case "VScroll":       if (!test(STOP_UPWARD_PROPAGATION) && parent != null)
660             parent.putAndTriggerTraps(name, N(((Number)value).floatValue() * ((float)parent.fontSize()) / ((float)fontSize())));
661
662         case "_Move":         propagateDownward(name, value, false);
663         case "_Press1":       propagateDownward(name, value, false);
664         case "_Press2":       propagateDownward(name, value, false);
665         case "_Press3":       propagateDownward(name, value, false);
666         case "_Release1":     propagateDownward(name, value, false);
667         case "_Release2":     propagateDownward(name, value, false);
668         case "_Release3":     propagateDownward(name, value, false);
669         case "_Click1":       propagateDownward(name, value, false);
670         case "_Click2":       propagateDownward(name, value, false);
671         case "_Click3":       propagateDownward(name, value, false);
672         case "_DoubleClick1": propagateDownward(name, value, false);
673         case "_DoubleClick2": propagateDownward(name, value, false);
674         case "_DoubleClick3": propagateDownward(name, value, false);
675         case "_KeyPressed":   propagateDownward(name, value, false);
676         case "_KeyReleased":  propagateDownward(name, value, false);
677         case "_HScroll":      propagateDownward(name, value, false);
678         case "_VScroll":      propagateDownward(name, value, false);
679
680         case "SizeChange":    return;
681         case "ChildChange":   return;
682         case "Enter":         return;
683         case "Leave":         return;
684
685         case "thisbox":       if (value == null) removeSelf();
686
687         default:              super.put(name, value);
688         //#end
689     }
690
691     private String alignToString() {
692         switch(flags & ALIGNS) {
693             case (ALIGN_TOP | ALIGN_LEFT): return "topleft";
694             case (ALIGN_BOTTOM | ALIGN_LEFT): return "bottomleft";
695             case (ALIGN_TOP | ALIGN_RIGHT): return "topright";
696             case (ALIGN_BOTTOM | ALIGN_RIGHT): return "bottomright";
697             case ALIGN_TOP: return "top";
698             case ALIGN_BOTTOM: return "bottom";
699             case ALIGN_LEFT: return "left";
700             case ALIGN_RIGHT: return "right";
701             case 0: return "center";
702             default: throw new Error("invalid alignment flags: " + (flags & ALIGNS));
703         }
704     }
705
706     private void setAlign(Object value) {
707         //#switch(value)
708         case "center": clear(ALIGNS);
709         case "topleft": set(ALIGN_TOP | ALIGN_LEFT);
710         case "bottomleft": set(ALIGN_BOTTOM | ALIGN_LEFT);
711         case "topright": set(ALIGN_TOP | ALIGN_RIGHT);
712         case "bottomright": set(ALIGN_BOTTOM | ALIGN_RIGHT);
713         case "top": set(ALIGN_TOP);
714         case "bottom": set(ALIGN_BOTTOM);
715         case "left": set(ALIGN_LEFT);
716         case "right": set(ALIGN_RIGHT);
717         default: JS.log("invalid alignment \"" + value + "\"");
718         //#end
719     }
720     
721     private void setCursor(Object value) {
722         if (value == null) { clear(CURSOR); boxToCursor.remove(this); return; }
723         if (value.equals(boxToCursor.get(this))) return;
724         set(CURSOR);
725         boxToCursor.put(this, value);
726         Surface surface = getSurface();
727         if (surface != null) {
728             String tempcursor = surface.cursor;
729             propagateDownward(null, null, false);
730             if (surface.cursor != tempcursor) surface.syncCursor();
731         }
732     }
733
734     private void setFill(Object value) throws JSExn {
735         if (value == null) {
736             // FIXME: Check this... does this make it transparent? 
737             texture = null;
738             fillcolor = 0;
739         } else if (value instanceof String) {
740             // FIXME check double set
741             int newfillcolor = stringToColor((String)value);
742             if (newfillcolor == fillcolor) return;
743             fillcolor = newfillcolor;
744         } else if(value instanceof JS) {
745             texture = Picture.load((JS)value, this);
746             if (texture != null && texture.isLoaded) perform();
747         } else {
748             throw new JSExn("fill must be null, a String, or a stream, not a " + value.getClass());
749         }
750         DIRTY;
751     }
752
753     // FIXME: mouse move/release still needs to propagate to boxen in which the mouse was pressed and is still held down
754     /**
755      *  Handles events which propagate down the box tree.  If obscured
756      *  is set, then we merely check for Enter/Leave.
757      */
758     private void propagateDownward(Object name_, Object value, boolean obscured) {
759
760         String name = (String)name_;
761         if (getSurface() == null) return;
762         int x = globalToLocalX(getSurface()._mousex);
763         int y = globalToLocalY(getSurface()._mousey);
764         boolean wasinside = test(MOUSEINSIDE);
765         boolean isinside = test(VISIBLE) && inside(x, y) && !obscured;
766         if (!wasinside && isinside) {
767             set(MOUSEINSIDE);
768             putAndTriggerTrapsAndCatchExceptions("Enter", T);
769         }
770         if (isinside && test(CURSOR)) getSurface().cursor = (String)boxToCursor.get(this);
771         if (wasinside && !isinside) {
772             clear(MOUSEINSIDE);
773             putAndTriggerTrapsAndCatchExceptions("Leave", T);
774         }
775
776         boolean found = false;
777         if (wasinside || isinside)
778             for(Box child = getChild(treeSize() - 1); child != null; child = child.prevSibling()) {
779                 boolean save_stop = child.test(STOP_UPWARD_PROPAGATION);
780                 Object value2 = value;
781                 if (name.equals("_HScroll") || name.equals("_VScroll"))
782                     value2 = N(((Number)value).floatValue() * ((float)child.fontSize()) / (float)fontSize());
783                 if (obscured || !child.inside(x - child.x, y - child.y)) {
784                     child.propagateDownward(name, value2, true);
785                 } else try {
786                     found = true;
787                     child.clear(STOP_UPWARD_PROPAGATION);
788                     if (name != null) child.putAndTriggerTrapsAndCatchExceptions(name, value2);
789                     else child.propagateDownward(name, value2, obscured);
790                 } finally {
791                     if (save_stop) child.set(STOP_UPWARD_PROPAGATION); else child.clear(STOP_UPWARD_PROPAGATION);
792                 }
793                 if (child.inside(x - child.x, y - child.y))
794                     if (name != null && name.equals("_Move")) obscured = true;
795                     else break;
796             }
797
798         if (!obscured && !found)
799             if ("_Move".equals(name) || name.startsWith("_Release") || wasinside)
800                 if (name != null)
801                     putAndTriggerTrapsAndCatchExceptions(name.substring(1), value);
802     }
803
804     private static int stringToColor(String s) {
805         // FIXME support three-char strings by doubling digits
806         if (s == null) return 0x00000000;
807         else if (SVG.colors.get(s) != null) return 0xFF000000 | toInt(SVG.colors.get(s));
808         else if (s.length() == 7 && s.charAt(0) == '#') try {
809             // FEATURE  alpha
810             return 0xFF000000 |
811                 (Integer.parseInt(s.substring(1, 3), 16) << 16) |
812                 (Integer.parseInt(s.substring(3, 5), 16) << 8) |
813                 Integer.parseInt(s.substring(5, 7), 16);
814         } catch (NumberFormatException e) {
815             Log.info(Box.class, "invalid color " + s);
816             return 0;
817         }
818         else return 0; // FEATURE: error?
819     }
820
821     private static String colorToString(int argb) {
822         if ((argb & 0xFF000000) == 0) return null;
823         String red = Integer.toHexString((argb & 0x00FF0000) >> 16);
824         String green = Integer.toHexString((argb & 0x0000FF00) >> 8);
825         String blue = Integer.toHexString(argb & 0x000000FF);
826         if (red.length() < 2) red = "0" + red;
827         if (blue.length() < 2) blue = "0" + blue;
828         if (green.length() < 2) green = "0" + green;
829         return "#" + red + green + blue;
830     }
831
832     /** figures out what box in this subtree of the Box owns the pixel at x,y relitave to the Surface */
833     public static Box whoIs(Box cur, int x, int y) {
834
835         if (cur.parent != null) throw new Error("whoIs may only be invoked on the root box of a surface");
836         int globalx = 0;
837         int globaly = 0;
838
839         // WARNING: this method is called from the event-queueing thread -- it may run concurrently with
840         // ANY part of Ibex, and is UNSYNCHRONIZED for performance reasons.  BE CAREFUL HERE.
841
842         if (!cur.test(VISIBLE)) return null;
843         if (!cur.inside(x - globalx, y - globaly)) return cur.parent == null ? cur : null;
844         OUTER: while(true) {
845             for(int i=cur.treeSize() - 1; i>=0; i--) {
846                 Box child = cur.getChild(i);
847                 if (child == null) continue;        // since this method is unsynchronized, we have to double-check
848                 globalx += child.x;
849                 globaly += child.y;
850                 if (child.test(VISIBLE) && child.inside(x - globalx, y - globaly)) { cur = child; continue OUTER; }
851                 globalx -= child.x;
852                 globaly -= child.y;
853             }
854             break;
855         }
856         return cur;
857     }
858
859
860     // Trivial Helper Methods (should be inlined) /////////////////////////////////////////
861
862     void mark_for_repack() { REPACK(); }
863     public Enumeration keys() { throw new Error("you cannot apply for..in to a " + this.getClass().getName()); }
864     public Box getRoot() { return parent == null ? this : parent.getRoot(); }
865     public Surface getSurface() { return Surface.fromBox(getRoot()); }
866     Box nextPackedSibling() { Box b = nextSibling(); return b == null || (b.test(PACKED | VISIBLE)) ? b : b.nextPackedSibling(); }
867     Box firstPackedChild() { Box b = getChild(0); return b == null || (b.test(PACKED | VISIBLE)) ? b : b.nextPackedSibling(); }
868     public int globalToLocalX(int x) { return parent == null ? x : parent.globalToLocalX(x - this.x); }
869     public int globalToLocalY(int y) { return parent == null ? y : parent.globalToLocalY(y - this.y); }
870     public int localToGlobalX(int x) { return parent == null ? x : parent.globalToLocalX(x + this.x); }
871     public int localToGlobalY(int y) { return parent == null ? y : parent.globalToLocalY(y + this.y); }
872
873     static short min(short a, short b) { if (a<b) return a; else return b; }
874     static int min(int a, int b) { if (a<b) return a; else return b; }
875     static float min(float a, float b) { if (a<b) return a; else return b; }
876
877     static short max(short a, short b) { if (a>b) return a; else return b; }
878     static int max(int a, int b) { if (a>b) return a; else return b; }
879     static float max(float a, float b) { if (a>b) return a; else return b; }
880
881     static int min(int a, int b, int c) { if (a<=b && a<=c) return a; else if (b<=c && b<=a) return b; else return c; }
882     static int max(int a, int b, int c) { if (a>=b && a>=c) return a; else if (b>=c && b>=a) return b; else return c; }
883     static int bound(int a, int b, int c) { if (c < b) return c; if (a > b) return a; return b; }
884     final boolean inside(int x, int y) { return test(VISIBLE) && x >= 0 && y >= 0 && x < width && y < height; }
885
886     void set(int mask) { flags |= mask; }
887     void set(int mask, boolean setclear) { if (setclear) set(mask); else clear(mask); }
888     void clear(int mask) { flags &= ~mask; }
889     boolean test(int mask) { return ((flags & mask) == mask); }
890     
891
892     // Tree Handling //////////////////////////////////////////////////////////////////////
893
894     public final int getIndexInParent() { return parent == null ? 0 : parent.indexNode(this); }
895     public final Box nextSibling() { return parent == null ? null : parent.getChild(parent.indexNode(this) + 1); }
896     public final Box prevSibling() { return parent == null ? null : parent.getChild(parent.indexNode(this) - 1); }
897     public final Box getChild(int i) {
898         if (i < 0) return null;
899         if (i >= treeSize()) return null;
900         return (Box)getNode(i);
901     }
902
903     // Tree Manipulation /////////////////////////////////////////////////////////////////////
904
905     void removeSelf() {
906         if (parent != null) { parent.removeChild(parent.indexNode(this)); return; }
907         Surface surface = Surface.fromBox(this); 
908         if (surface != null) surface.dispose(true);
909     }
910
911     /** remove the i^th child */
912     public void removeChild(int i) {
913         Box b = getChild(i);
914         b.RECONSTRAIN();
915         b.DIRTY;
916         b.clear(MOUSEINSIDE);
917         deleteNode(i);
918         b.parent = null;
919         RECONSTRAIN();
920         putAndTriggerTrapsAndCatchExceptions("ChildChange", b);
921     }
922     
923     public void put(int i, Object value) throws JSExn {
924         if (i < 0) return;
925             
926         if (value != null && !(value instanceof Box)) {
927             if (Log.on) JS.warn("attempt to set a numerical property on a box to a non-box");
928             return;
929         }
930
931         if (redirect == null) {
932             if (value == null) putAndTriggerTrapsAndCatchExceptions("ChildChange", getChild(i));
933             else JS.warn("attempt to add/remove children to/from a node with a null redirect");
934
935         } else if (redirect != this) {
936             if (value != null) putAndTriggerTrapsAndCatchExceptions("ChildChange", value);
937             redirect.put(i, value);
938             if (value == null) {
939                 Box b = (Box)redirect.get(new Integer(i));
940                 if (b != null) putAndTriggerTrapsAndCatchExceptions("ChildChange", b);
941             }
942
943         } else if (value == null) {
944             if (i < 0 || i > treeSize()) return;
945             Box b = getChild(i);
946             removeChild(i);
947             putAndTriggerTrapsAndCatchExceptions("ChildChange", b);
948
949         } else {
950             Box b = (Box)value;
951
952             // check if box being moved is currently target of a redirect
953             for(Box cur = b.parent; cur != null; cur = cur.parent)
954                 if (cur.redirect == b) {
955                     if (Log.on) JS.warn("attempt to move a box that is the target of a redirect");
956                     return;
957                 }
958
959             // check for recursive ancestor violation
960             for(Box cur = this; cur != null; cur = cur.parent)
961                 if (cur == b) {
962                     if (Log.on) JS.warn("attempt to make a node a parent of its own ancestor");
963                     if (Log.on) Log.info(this, "box == " + this + "  ancestor == " + b);
964                     return;
965                 }
966
967             if (b.parent != null) b.parent.removeChild(b.parent.indexNode(b));
968             insertNode(i, b);
969             b.parent = this;
970             
971             // need both of these in case child was already uncalc'ed
972             b.RECONSTRAIN();
973             RECONSTRAIN();
974             
975             b.DIRTY; 
976             putAndTriggerTrapsAndCatchExceptions("ChildChange", b);
977         }
978     }
979
980     void putAndTriggerTrapsAndCatchExceptions(Object name, Object val) {
981         try {
982             putAndTriggerTraps(name, val);
983         } catch (JSExn e) {
984             JS.log("caught js exception while putting to trap \""+name+"\"");
985             JS.log(e);
986         } catch (Exception e) {
987             JS.log("caught exception while putting to trap \""+name+"\"");
988             JS.log(e);
989         }
990     }
991
992 }
993
994
995
996
997
998
999         /*
1000         offset_x = 0;
1001         if (path != null) {
1002             if (rpath == null) rpath = path.realize(transform == null ? VectorGraphics.Affine.identity() : transform);
1003             if ((flags & HSHRINK) != 0) contentwidth = max(contentwidth, rpath.boundingBoxWidth());
1004             if ((flags & VSHRINK) != 0) contentheight = max(contentheight, rpath.boundingBoxHeight());
1005             // FIXME: separate offset_x needed for the path
1006         }
1007         // #repeat x1/y1 x2/y2 x3/y3 x4/y4 contentwidth/contentheight left/top right/bottom
1008         int x1 = transform == null ? 0 : (int)transform.multiply_px(0, 0);
1009         int x2 = transform == null ? 0 : (int)transform.multiply_px(contentwidth, 0);
1010         int x3 = transform == null ? contentwidth : (int)transform.multiply_px(contentwidth, contentheight);
1011         int x4 = transform == null ? contentwidth : (int)transform.multiply_px(0, contentheight);
1012         int left = min(min(x1, x2), min(x3, x4));
1013         int right = max(max(x1, x2), max(x3, x4));
1014         contentwidth = max(contentwidth, right - left);
1015         offset_x = -1 * left;
1016         // #end
1017         */
1018
1019
1020                     /*
1021         if (path != null) {
1022             if (rtransform == null) rpath = null;
1023             else if (!rtransform.equalsIgnoringTranslation(a)) rpath = null;
1024             else {
1025                 rpath.translate((int)(a.e - rtransform.e), (int)(a.f - rtransform.f));
1026                 rtransform = a.copy();
1027             }
1028             if (rpath == null) rpath = path.realize((rtransform = a) == null ? VectorGraphics.Affine.identity() : a);
1029             if ((strokecolor & 0xff000000) != 0) rpath.stroke(buf, 1, strokecolor);
1030             if ((fillcolor & 0xff000000) != 0) rpath.fill(buf, new VectorGraphics.SingleColorPaint(fillcolor));
1031         }
1032 */
1033
1034
1035 /*
1036             VectorGraphics.Affine a2 = VectorGraphics.Affine.translate(b.x, b.y);
1037             if (transform != null) a2.multiply(transform);
1038             a2.multiply(VectorGraphics.Affine.translate(offset_x, offset_y));
1039             a2.multiply(a);
1040 */