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