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