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