2003/11/13 09:57:56
[org.ibex.core.git] / src / org / xwt / Box.java
1 // Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.xwt;
3
4 // FEATURE: reflow before allowing js to read from width/height 
5 // FEATURE: fastpath for rows=1/cols=1
6 // FEATURE: mark to reflow starting with a certain child
7 // FEATURE: separate mark_for_reflow and mark_for_resize
8 // FEATURE: make all methods final
9 // FEATURE: use a linked list for the "frontier" when packing
10 // FEATURE:    or else have a way to mark a column "same as last one"?
11 // FEATURE: reintroduce surface.abort
12
13 import java.io.*;
14 import java.net.*;
15 import java.util.*;
16 import org.xwt.js.*;
17 import org.xwt.util.*;
18 import org.xwt.translators.*;
19
20 /**
21  *  <p>
22  *  Encapsulates the data for a single XWT box as well as all layout
23  *  rendering logic.
24  *  </p>
25  *
26  *  <p>The rendering process consists of four phases; each requires
27  *     one DFS pass over the tree</p>
28  *  <ol><li> <b>repacking</b>: children of a box are packed into columns
29  *           and rows according to their colspan/rowspan attributes and
30  *           ordering.
31  *  <ol><li> <b>reconstraining</b>: Minimum and maximum sizes of columns are computed.
32  *      <li> <b>resizing</b>: width/height and x/y positions of children
33  *           are assigned, and PosChange/SizeChanges are triggered.
34  *      <li> <b>repainting</b>: children draw their content onto the PixelBuffer.
35  *  </ol>
36  *
37  *  The first three passes together are called the <i>reflow</i> phase.
38  *  Reflowing is done in a seperate pass since PosChanges and
39  *  SizeChanges trigger an Surface.abort; if rendering were done in the same
40  *  pass, rendering work done prior to the Surface.abort would be wasted.
41  */
42 public abstract class Box extends JSScope implements JSTrap.JSTrappable {
43
44     // Macros //////////////////////////////////////////////////////////////////////
45
46     //#define LENGTH int
47     //#define MARK_REPACK for(Box b2 = this; b2 != null && !b2.test(REPACK); b2 = b2.parent) b2.set(REPACK);
48     //#define MARK_REPACK_b for(Box b2 = b; b2 != null && !b2.test(REPACK); b2 = b2.parent) b2.set(REPACK);
49     //#define MARK_REPACK_parent for(Box b2 = parent; b2 != null && !b2.test(REPACK); b2 = b2.parent) b2.set(REPACK);
50     //#define MARK_REFLOW for(Box b2 = this; b2 != null && !b2.test(REFLOW); b2 = b2.parent) b2.set(REFLOW);
51     //#define MARK_REFLOW_b for(Box b2 = b; b2 != null && !b2.test(REFLOW); b2 = b2.parent) b2.set(REFLOW);
52     //#define MARK_RESIZE for(Box b2 = this; b2 != null && !b2.test(RESIZE); b2 = b2.parent) b2.set(RESIZE);
53     //#define MARK_RESIZE_b for(Box b2 = b; b2 != null && !b2.test(RESIZE); b2 = b2.parent) b2.set(RESIZE);
54     //#define CHECKSET_SHORT(prop) short nu = (short)toInt(value); if (nu == prop) break; prop = nu;
55     //#define CHECKSET_INT(prop) int nu = toInt(value); if (nu == prop) break; prop = nu;
56     //#define CHECKSET_FLAG(flag) boolean nu = toBoolean(value); if (nu == test(flag)) break; if (nu) set(flag); else clear(flag);
57     //#define CHECKSET_BOOLEAN(prop) boolean nu = toBoolean(value); if (nu == prop) break; prop = nu;
58     //#define CHECKSET_STRING(prop) if ((value==null&&prop==null)||(value!=null&&value.equals(prop))) break; prop=(String)value;
59
60     protected Box() { super(null); }
61
62     static Hash boxToCursor = new Hash(500, 3);
63     public static final int MAX_LENGTH = Integer.MAX_VALUE;
64
65     // Flags //////////////////////////////////////////////////////////////////////
66
67     static final int MOUSEINSIDE  = 0x00000001;
68     static final int VISIBLE      = 0x00000002;
69     static final int PACKED       = 0x00000004;
70     static final int HSHRINK      = 0x00000008;
71     static final int VSHRINK      = 0x00000010;
72     static final int BLACK        = 0x00000020;  // for red-black code
73
74     static final int FIXED        = 0x00000040;
75     static final boolean ROWS     = true;
76     static final boolean COLS     = false;
77
78     static final int ISROOT       = 0x00000080;
79     static final int REPACK       = 0x00000100;
80     static final int REFLOW       = 0x00000200;
81     static final int RESIZE       = 0x00000400;
82     static final int RECONSTRAIN  = 0x00000800;
83     static final int ALIGN_TOP    = 0x00001000;
84     static final int ALIGN_BOTTOM = 0x00002000;
85     static final int ALIGN_LEFT   = 0x00004000;
86     static final int ALIGN_RIGHT  = 0x00008000;
87     static final int ALIGNS       = 0x0000f000;
88     static final int CURSOR       = 0x00010000;  // if true, this box has a cursor in the cursor hash; FEATURE: GC issues?
89     static final int NOCLIP       = 0x00020000;
90
91
92     // Instance Data //////////////////////////////////////////////////////////////////////
93
94     Box parent = null;
95     Box redirect = this;
96     int flags = VISIBLE | PACKED;
97
98     private String text = null;
99     private Font font = null;
100     private Picture texture;
101     private short strokewidth = 1;
102     private int fillcolor = 0x00000000;
103     private int strokecolor = 0xFF000000;
104
105     // specified directly by user
106     public LENGTH minwidth = 0;
107     public LENGTH maxwidth = 0;
108     public LENGTH minheight = 0;
109     public LENGTH maxheight = 0;
110     private short rows = 1;
111     private short cols = 0;
112     private short rowspan = 1;
113     private short colspan = 1;
114
115     // computed during reflow
116     private short row = 0;
117     private short col = 0;
118     public LENGTH x = 0;
119     public LENGTH y = 0;
120     public LENGTH width = 0;
121     public LENGTH height = 0;
122     private LENGTH contentwidth = 0;      // == max(minwidth, textwidth, sum(child.contentwidth))
123     private LENGTH contentheight = 0;
124
125     /*
126     private VectorGraphics.VectorPath path = null;
127     private VectorGraphics.Affine transform = null;
128     private VectorGraphics.RasterPath rpath = null;
129     private VectorGraphics.Affine rtransform = null;
130     */
131
132     // Instance Methods /////////////////////////////////////////////////////////////////////
133
134     public Box getRoot() { return parent == null ? this : parent.getRoot(); }
135     public Surface getSurface() { return Surface.fromBox(getRoot()); }
136
137     // FEATURE: use cx2/cy2 format
138     /** Adds the intersection of (x,y,w,h) and the node's current actual geometry to the Surface's dirty list */
139     public final void dirty() { dirty(0, 0, width, height); }
140     public final void dirty(int x, int y, int w, int h) {
141         for(Box cur = this; cur != null; cur = cur.parent) {
142             if (!cur.test(NOCLIP)) {
143                 w = min(x + w, cur.width) - max(x, 0);
144                 h = min(y + h, cur.height) - max(y, 0);
145                 x = max(x, 0);
146                 y = max(y, 0);
147             }
148             if (w <= 0 || h <= 0) return;
149             if (cur.parent == null && cur.getSurface() != null) cur.getSurface().dirty(x, y, w, h);
150             x += cur.x;
151             y += cur.y;
152         }
153     }
154
155     public void putAndTriggerJSTraps(Object key, Object value) {
156     }
157
158     /** update MOUSEINSIDE, check for Enter/Leave/Move */
159     void Move(int oldmousex, int oldmousey, int mousex, int mousey) { Move(oldmousex, oldmousey, mousex, mousey, false); }
160     void Move(int oldmousex, int oldmousey, int mousex, int mousey, boolean forceleave) {
161         boolean wasinside = test(MOUSEINSIDE);
162         boolean isinside = test(VISIBLE) && inside(mousex, mousey) && !forceleave;
163         if (isinside) set(MOUSEINSIDE); else clear(MOUSEINSIDE);
164         if (!wasinside && !isinside) return;
165         
166         if (isinside && test(CURSOR)) Surface.fromBox(getRoot()).cursor = (String)boxToCursor.get(this);
167         if (!wasinside && isinside && getTrap("Enter") != null) putAndTriggerJSTraps("Enter", T);
168         else if (wasinside && !isinside && getTrap("Leave") != null) putAndTriggerJSTraps("Leave", T);
169         else if (wasinside && isinside && (mousex != oldmousex || mousey != oldmousey) && getTrap("Move")!= null)
170             putAndTriggerJSTraps("Move", T);
171         for(Box b = getChild(numchildren - 1); b != null; b = b.prevSibling()) {
172             b.Move(oldmousex - b.x, oldmousey - b.y, mousex - b.x, mousey - b.y, forceleave);
173             if (b.inside(mousex - b.x, mousey - b.y)) forceleave = true;
174         }
175     }
176
177
178     // Reflow ////////////////////////////////////////////////////////////////////////////////////////
179
180     // static stuff so we don't have to keep reallocating
181     private static int[] numRowsInCol = new int[65535];
182     private LENGTH[] colWidth = new LENGTH[65535];
183     private LENGTH[] colMaxWidth = new LENGTH[65535];
184     private LENGTH[] rowHeight = new LENGTH[65535];
185     private LENGTH[] rowMaxHeight = new LENGTH[65535];
186
187     final Box nextPackedSibling() { Box b = nextSibling(); return b == null || (b.test(PACKED | VISIBLE)) ? b : b.nextPackedSibling(); }
188     final Box firstPackedChild() { Box b = getChild(0); return b == null || (b.test(PACKED | VISIBLE)) ? b : b.nextPackedSibling(); }
189
190     /** only for use on the root box */
191     void reflow(int new_width, int new_height) {
192         repack();
193         new_width = bound(max(contentwidth, minwidth), new_width, test(HSHRINK) ? max(contentwidth, minwidth) : maxwidth);
194         new_height = bound(max(contentheight, minheight), new_height, test(VSHRINK) ? max(contentheight, minheight) : maxheight);
195         resize(x, y, new_width, new_height);
196     }
197
198     /** pack the boxes into rows and columns; also computes contentwidth */
199     void repack() {
200         for(Box child = getChild(0); child != null; child = child.nextSibling()) child.repack();
201
202         //#repeat COLS/ROWS rows/cols cols/rows col/row row/col colspan/rowspan rowspan/colspan 
203         if (test(FIXED) == COLS) {
204             short r = 0; short rows = 0;
205             for(Box child = firstPackedChild(); child != null; r++)
206                 for(short col=0, numclear=0; child != null && col < cols;) {
207                     if (numRowsInCol[col] > r) continue;
208                     if (col != 0 && col + min(cols, child.colspan) > cols) break;
209                     if (++numclear < min(cols, child.colspan)) continue;
210                     for(int i=col - numclear + 1; i <= col; i++) numRowsInCol[i] += child.rowspan;
211                     child.col = col; child.row = r;
212                     child = child.nextPackedSibling();
213                     rows = (short)max(rows, child.row + child.rowspan);
214                 }
215             for(int i=0; i<cols; i++) numRowsInCol[i] = 0;
216         }
217         //#end
218
219         //#repeat contentwidth/contentheight colWidth/rowHeight colspan/rowspan col/row cols/rows minwidth/minheight \
220         //        textwidth/textheight maxwidth/maxheight
221         contentwidth = 0;
222         for(Box child = firstPackedChild(); child != null; child = child.nextPackedSibling())
223             colWidth[child.col] = max(colWidth[child.col], child.contentwidth / child.colspan);
224         for(int i=0; i<cols; i++) { contentwidth += colWidth[i]; colWidth[i] = 0; }
225
226         contentwidth = bound(minwidth, max(font == null ? 0 : font.textwidth(text), contentwidth), maxwidth);
227         //#end               
228     }
229     
230     private void resize(LENGTH x, LENGTH y, LENGTH width, LENGTH height) {
231         // FEATURE reimplement, but we're destroying this
232         /*
233         if (x != this.x || y != this.y || width != this.width || height != this.height) {
234         */
235             (parent == null ? this : parent).dirty(this.x, this.y, this.width, this.height);
236             boolean sizechange = (this.width != width || this.height != height) && getTrap("SizeChange") != null;
237             boolean poschange = (this.x != x || this.y != y) && getTrap("PosChange") != null;
238             this.width = width; this.height = height; this.x = x; this.y = y;
239             dirty();
240             /*
241             try { if (sizechange) putAndTriggerJSTraps("SizeChange", T); Surface.abort = true; }
242             catch (Exception e) { Log.log(this, e); }
243             try { if (poschange) putAndTriggerJSTraps("PosChange", T); Surface.abort = true; }
244             catch (Exception e) { Log.log(this, e); }
245         }
246             */
247         if (numchildren > 0) resize_children();
248     }
249
250     private void resize_children() {
251         int slack;
252         //#repeat col/row colspan/rowspan contentwidth/contentheight x/y width/height \
253         //        HSHRINK/VSHRINK maxwidth/maxheight cols/rows minwidth/minheight
254
255         // PHASE 1: compute column min/max sizes
256         slack = 0;
257         for(Box child = firstPackedChild(); child != null; child = child.nextPackedSibling())
258             for(int i=child.col; i < child.col + child.colspan; i++) {
259                 slack += colWidth[i];
260                 colWidth[i] = max(colWidth[i], child.contentwidth / child.colspan);
261                 slack -= colWidth[i];
262                 colMaxWidth[i] = max(colMaxWidth[i], child.test(HSHRINK) ? child.contentwidth : child.maxwidth) / child.colspan;
263             }
264         
265         // PHASE 2: hand out slack
266         for(int startslack = 0; slack > 0 && startslack != slack;) {
267             int increment = max(1, slack / cols);
268             startslack = slack;
269             for(short col=0; col < cols && slack > 0; col++) {
270                 int diff = min(colMaxWidth[col], colWidth[col] + increment) - colWidth[col];
271                 slack -= diff;
272                 colWidth[col] += diff;
273             }
274         }   
275
276         for(Box child = getChild(0); child != null; child = child.nextPackedSibling()) {
277             int unbounded = 0;
278             for(int i = child.col; i < child.col + child.colspan; i++) unbounded += colWidth[i];
279             child.width = bound(child.contentwidth, unbounded, child.test(HSHRINK) ? child.contentwidth : child.maxwidth);
280             child.x = test(ALIGN_RIGHT) ? slack : test(ALIGN_LEFT) ? slack / 2 : 0;
281             for(int i=0; i < child.col; i++) child.x += colWidth[i];
282             if (child.width < unbounded) child.x += (child.width - unbounded) / 2;
283         }
284
285         // cleanup
286         for(int i=0; i<colWidth.length; i++) colWidth[i] = 0;
287         for(int i=0; i<colMaxWidth.length; i++) colMaxWidth[i] = MAX_LENGTH;
288         //#end
289
290         // Phase 3: assign childrens' actual sizes
291         for(Box child = getChild(0); child != null; child = child.nextSibling())
292             if (!test(VISIBLE)) continue;
293             else if (!child.test(PACKED))
294                 child.resize(child.x, child.y,
295                              child.test(HSHRINK) ? child.contentwidth : min(child.maxwidth, width - child.x),
296                              child.test(VSHRINK) ? child.contentheight : min(child.maxheight, height - child.y));
297             else child.resize(child.x, child.y, child.width, child.height);
298     }
299
300
301
302     // Rendering Pipeline /////////////////////////////////////////////////////////////////////
303
304     /** Renders self and children within the specified region. All rendering operations are clipped to xIn,yIn,wIn,hIn */
305     void render(int parentx, int parenty, int cx1, int cy1, int cx2, int cy2, PixelBuffer buf, VectorGraphics.Affine a) {
306         if (!test(VISIBLE)) return;
307         int globalx = parentx + (parent == null ? 0 : x);
308         int globaly = parenty + (parent == null ? 0 : y);
309
310         // intersect the x,y,w,h rendering window with ourselves; quit if it's empty
311         if (!test(NOCLIP)) {
312             cx1 = max(cx1, parent == null ? 0 : globalx);
313             cy1 = max(cy1, parent == null ? 0 : globaly);
314             cx2 = min(cx2, parent == null ? 0 : globalx + width);
315             cy2 = min(cy2, parent == null ? 0 : globaly + height);
316             if (cx2 <= cx1 || cy2 <= cy1) return;
317         }
318
319         if ((fillcolor & 0xFF000000) != 0x00000000)
320             buf.fillJSTrapezoid(globalx, globalx + width, globaly, globalx, globalx + width, globaly + height, fillcolor);
321
322         if (texture != null)
323             for(int x = globalx; x < cx2; x += texture.getWidth())
324                 for(int y = globaly; y < cy2; y += texture.getHeight())
325                     buf.drawPicture(texture, x, y, cx1, cy1, cx2, cy2);
326         
327         if (text != null && !text.equals("") && font != null)
328             if (font.rasterizeGlyphs(text, buf, strokecolor, globalx, globaly, cx1, cy1, cx2, cy2, null) == -1)
329                 font.rasterizeGlyphs(text, buf, strokecolor, globalx, globaly, cx1, cy1, cx2, cy2,
330                                     new Scheduler.Task() { public void perform() { Box b = Box.this; MARK_REFLOW_b; dirty(); }});
331                     
332         for(Box b = getChild(0); b != null; b = b.nextSibling())
333             b.render(globalx, globaly, cx1, cy1, cx2, cy2, buf, null);
334     }
335     
336     
337     // Methods to implement org.xwt.js.JS //////////////////////////////////////
338
339     public int globalToLocalX(int x) { return parent == null ? x : parent.globalToLocalX(x - this.x); }
340     public int globalToLocalY(int y) { return parent == null ? y : parent.globalToLocalY(y - this.y); }
341     public int localToGlobalX(int x) { return parent == null ? x : parent.globalToLocalX(x + this.x); }
342     public int localToGlobalY(int y) { return parent == null ? y : parent.globalToLocalY(y + this.y); }
343     
344     public Object call(Object method, JSArray args) throws JS.Exn {
345         if (!"indexof".equals(method)) return null;
346         Box b = (Box)args.elementAt(0);
347         if (b.parent != this) return (redirect == null || redirect == this) ? N(-1) : redirect.call(method, args);
348         return N(b.getIndexInParent());
349     }
350
351     /** to be filled in by the Tree implementation */
352     abstract void put(int i, Object value);
353     public int numchildren = 0;
354     abstract public int getIndexInParent();
355     abstract public Box getChild(int i);
356     abstract public Box nextSibling();
357     abstract public Box prevSibling();
358     abstract public void remove();
359     abstract Box swapPosition(Box x, Box y);
360
361     public Object get(Object name) { return get(name, false); }
362     public Object get(Object name, boolean ignoretraps) {
363         if (name instanceof Number)
364             return redirect == null ? null : redirect == this ? getChild(toInt(name)) : redirect.get(name);
365
366         //#switch(name)
367         case "text": return text;
368         case "path": throw new JS.Exn("cannot read from the path property");
369         case "fill": return colorToString(fillcolor);
370         case "strokecolor": return colorToString(strokecolor);
371         case "textcolor": return colorToString(strokecolor);
372         case "font": return font == null ? null : font.res;
373         case "fontsize": return font == null ? N(10) : N(font.pointsize);
374         case "strokewidth": return N(strokewidth);
375         case "align": return alignToString();
376         case "thisbox": return this;
377         case "shrink": return B(test(HSHRINK) || test(VSHRINK));
378         case "hshrink": return B(test(HSHRINK));
379         case "vshrink": return B(test(VSHRINK));
380         case "x": return (parent == null || !test(VISIBLE)) ? N(0) : N(x);
381         case "y": return (parent == null || !test(VISIBLE)) ? N(0) : N(y);
382         case "width": return N(width);
383         case "height": return N(height);
384         case "cols": return test(FIXED) == COLS ? N(cols) : N(0);
385         case "rows": return test(FIXED) == ROWS ? N(rows) : N(0);
386         case "colspan": return N(colspan);
387         case "rowspan": return N(rowspan);
388         case "noclip": return B(test(NOCLIP));
389         case "visible": return B(test(VISIBLE) && (parent == null || (parent.get("visible") == T)));
390         case "packed": return B(test(PACKED));
391         case "globalx": return N(localToGlobalX(0));
392         case "globaly": return N(localToGlobalY(0));
393         case "cursor": return test(CURSOR) ? boxToCursor.get(this) : null;
394         case "mousex": { Surface s = getSurface(); return N(s == null ? 0 : globalToLocalX(s.mousex)); }
395         case "mousey": { Surface s = getSurface(); return N(s == null ? 0 : globalToLocalY(s.mousey)); }
396         case "mouseinside": return B(test(MOUSEINSIDE));
397         case "numchildren": return redirect == null ? N(0) : redirect == this ? N(numchildren) : redirect.get("numchildren");
398         case "minwidth": return N(minwidth);
399         case "maxwidth": return N(maxwidth);
400         case "minheight": return N(minheight);
401         case "maxheight": return N(maxheight);
402         case "redirect": return redirect == null ? null : redirect == this ? T : redirect.get("redirect");
403         case "Minimized": if (parent == null && getSurface() != null) return B(getSurface().minimized);
404         default: return super.get(name);
405         //#end
406         return null;
407     }
408
409     public void put(Object name, Object value) { put(name, value, false); }
410     public void put(Object name, Object value, boolean ignoretraps) {
411         if (name instanceof Number) { put(toInt(name), value); return; }
412
413         //#switch(name)
414         case "text": CHECKSET_STRING(text); MARK_RESIZE; dirty();
415         case "strokewidth": CHECKSET_SHORT(strokewidth); dirty();
416         case "thisbox": if (value == null) remove();
417         case "shrink": put("hshrink", value); put("vshrink", value);
418         case "hshrink": CHECKSET_FLAG(HSHRINK); MARK_RESIZE;
419         case "vshrink": CHECKSET_FLAG(VSHRINK); MARK_RESIZE;
420         case "width": CHECKSET_INT(width); MARK_RESIZE;
421         case "maxwidth": CHECKSET_INT(maxwidth); MARK_RESIZE;
422         case "minwidth": CHECKSET_INT(minwidth); MARK_RESIZE;
423         case "height": CHECKSET_INT(height); MARK_RESIZE;
424         case "maxheight": CHECKSET_INT(maxheight); MARK_RESIZE;
425         case "minheight": CHECKSET_INT(minheight); MARK_RESIZE;
426         case "colspan": CHECKSET_SHORT(colspan); MARK_REPACK_parent;
427         case "rowspan": CHECKSET_SHORT(colspan); MARK_REPACK_parent;
428         case "rows": CHECKSET_SHORT(rows); MARK_REPACK;  // FEATURE: error checking
429         case "cols": CHECKSET_SHORT(cols); MARK_REPACK;  // FEATURE: error checking
430         case "noclip": CHECKSET_FLAG(NOCLIP); if (parent == null) dirty(); else parent.dirty();
431         case "visible": CHECKSET_FLAG(VISIBLE); dirty(); MARK_RESIZE; dirty();
432         case "packed": CHECKSET_FLAG(PACKED); MARK_REPACK_parent;
433         case "globalx": put("x", N(globalToLocalX(toInt(value))));
434         case "globaly": put("y", N(globalToLocalY(toInt(value))));
435         case "align": clear(ALIGNS); setAlign(value == null ? "center" : value); MARK_RESIZE;
436         case "cursor": setCursor(value);
437         case "fill": setFill(value);
438         case "Press1": mouseEvent("Press1", value);
439         case "Press2": mouseEvent("Press2", value);
440         case "Press3": mouseEvent("Press3", value);
441         case "Release1": mouseEvent("Release1", value);
442         case "Release2": mouseEvent("Release2", value);
443         case "Release3": mouseEvent("Release3", value);
444         case "Click1": mouseEvent("Click1", value);
445         case "Click2": mouseEvent("Click2", value);
446         case "Click3": mouseEvent("Click3", value);
447         case "DoubleClick1": mouseEvent("DoubleClick1", value);
448         case "DoubleClick2": mouseEvent("DoubleClick2", value);
449         case "DoubleClick3": mouseEvent("DoubleClick3", value);
450         case "Minimized": if (parent == null && getSurface() != null) getSurface().minimized = toBoolean(value);  // FEATURE
451         case "Maximized": if (parent == null && getSurface() != null) getSurface().maximized = toBoolean(value);  // FEATURE
452         case "Close": if (parent == null && getSurface() != null) getSurface().dispose(true);
453         case "toback": if (parent == null && getSurface() != null && toBoolean(value)) { getSurface().toBack(); }
454         case "tofront": if (parent == null && getSurface() != null && toBoolean(value)) { getSurface().toFront(); }
455         case "redirect": if (redirect == this) redirect = (Box)value; else Log.log(this, "redirect can only be set once");
456         case "font": font = value == null ? null : Font.getFont((Res)value, font == null ? 10 : font.pointsize); MARK_RESIZE; dirty();
457         case "fontsize": font = Font.getFont(font == null ? null : font.res, toInt(value)); MARK_RESIZE; dirty();
458         case "x": if (test(PACKED) && parent != null) return; CHECKSET_INT(x); dirty(); MARK_RESIZE; dirty();
459         case "y": if (test(PACKED) && parent != null) return; CHECKSET_INT(y); dirty(); MARK_RESIZE; dirty();
460         case "KeyPressed":     // prevent stuff from hitting the Hash
461         case "KeyReleased":    // prevent stuff from hitting the Hash
462         case "PosChange":      // prevent stuff from hitting the Hash
463         case "SizeChange":     // prevent stuff from hitting the Hash
464         case "childadded":     // prevent stuff from hitting the Hash
465         case "childremoved":   // prevent stuff from hitting the Hash
466         //#end
467     }
468
469     private String alignToString() {
470         switch(flags & ALIGNS) {
471             case (ALIGN_TOP | ALIGN_LEFT): return "topleft";
472             case (ALIGN_BOTTOM | ALIGN_LEFT): return "bottomleft";
473             case (ALIGN_TOP | ALIGN_RIGHT): return "topright";
474             case (ALIGN_BOTTOM | ALIGN_RIGHT): return "bottomright";
475             case ALIGN_TOP: return "top";
476             case ALIGN_BOTTOM: return "bottom";
477             case ALIGN_LEFT: return "left";
478             case ALIGN_RIGHT: return "right";
479             case 0: return "center";
480             default: throw new Error("invalid alignment flags: " + (flags & ALIGNS));
481         }
482     }
483
484     private void setAlign(Object value) {
485         //#switch(value)
486         case "center": clear(ALIGNS);
487         case "topleft": set(ALIGN_TOP | ALIGN_LEFT);
488         case "bottomleft": set(ALIGN_BOTTOM | ALIGN_LEFT);
489         case "topright": set(ALIGN_TOP | ALIGN_RIGHT);
490         case "bottomright": set(ALIGN_BOTTOM | ALIGN_RIGHT);
491         case "top": set(ALIGN_TOP);
492         case "bottom": set(ALIGN_BOTTOM);
493         case "left": set(ALIGN_LEFT);
494         case "right": set(ALIGN_RIGHT);
495         default: Log.logJS("invalid alignment \"" + value + "\"");
496         //#end
497     }
498     
499     private void setCursor(Object value) {
500         if (value == null) { clear(CURSOR); boxToCursor.remove(this); return; }
501         if (value.equals(boxToCursor.get(this))) return;
502         set(CURSOR);
503         boxToCursor.put(this, value);
504         Surface surface = getSurface();
505         String tempcursor = surface.cursor;
506         Move(surface.mousex, surface.mousey, surface.mousex, surface.mousey);
507         if (surface.cursor != tempcursor) surface.syncCursor();
508     }
509
510     private void setFill(Object value) {
511         if (value == null || !(value instanceof Res)) return;
512         Picture pic = Picture.fromRes((Res)value, null);
513         if (pic != null) {
514             texture = pic;
515             minwidth = texture.getWidth();
516             minheight = texture.getHeight();
517             MARK_REFLOW;
518             dirty();
519         } else Picture.fromRes((Res)value, new Callback() { public Object call(Object arg) {
520             texture = (Picture)arg;
521             minwidth = texture.getWidth();
522             minheight = texture.getHeight();
523             Box b = Box.this; MARK_REFLOW_b;
524             dirty();
525             return null;
526         } });
527     }
528         
529     private void mouseEvent(String name, Object value) {
530         Surface surface = getSurface();
531         if (surface == null) return;
532         int mousex = globalToLocalX(surface.mousex);
533         int mousey = globalToLocalY(surface.mousey);
534         for(Box c = prevSibling(); c != null; c = c.prevSibling())
535             if (c.inside(mousex - c.x, mousey - c.y)) { c.putAndTriggerJSTraps(name, value); return; }
536         if (parent != null) parent.putAndTriggerJSTraps(name, value);
537     }
538
539     private static int stringToColor(String s) {
540         if (s == null) return 0x00000000;
541         else if (SVG.colors.get(s) != null) return 0xFF000000 | toInt(SVG.colors.get(s));
542         else if (s.length() > 0 && s.charAt(0) == '#') try {
543             // FEATURE  alpha
544             return 0xFF000000 |
545                 (Integer.parseInt(s.substring(1, 3), 16) << 16) |
546                 (Integer.parseInt(s.substring(3, 5), 16) << 8) |
547                 Integer.parseInt(s.substring(5, 7), 16);
548         } catch (NumberFormatException e) {
549             Log.log(Box.class, "invalid color " + s);
550             return 0;
551         }
552         else return 0; // FEATURE: error?
553     }
554
555     private static String colorToString(int argb) {
556         if ((argb & 0xFF000000) == 0) return null;
557         String red = Integer.toHexString((argb & 0x00FF0000) >> 16);
558         String green = Integer.toHexString((argb & 0x0000FF00) >> 8);
559         String blue = Integer.toHexString(argb & 0x000000FF);
560         if (red.length() < 2) red = "0" + red;
561         if (blue.length() < 2) blue = "0" + blue;
562         if (green.length() < 2) green = "0" + green;
563         return "#" + red + green + blue;
564     }
565
566     /** figures out what box in this subtree of the Box owns the pixel at x,y relitave to the Surface */
567     public static Box whoIs(Box cur, int x, int y) {
568
569         if (cur.parent != null) throw new Error("whoIs may only be invoked on the root box of a surface");
570         int globalx = 0;
571         int globaly = 0;
572
573         // WARNING: this method is called from the event-queueing thread -- it may run concurrently with
574         // ANY part of XWT, and is UNSYNCHRONIZED for performance reasons.  BE CAREFUL HERE.
575
576         if (!cur.test(VISIBLE)) return null;
577         if (!cur.inside(x - globalx, y - globaly)) return cur.parent == null ? cur : null;
578         OUTER: while(true) {
579             for(int i=cur.numchildren - 1; i>=0; i--) {
580                 Box child = cur.getChild(i);
581                 if (child == null) continue;        // since this method is unsynchronized, we have to double-check
582                 globalx += child.x;
583                 globaly += child.y;
584                 if (child.test(VISIBLE) && child.inside(x - globalx, y - globaly)) { cur = child; continue OUTER; }
585                 globalx -= child.x;
586                 globaly -= child.y;
587             }
588             break;
589         }
590         return cur;
591     }
592
593
594     // Trivial Helper Methods (should be inlined) /////////////////////////////////////////
595
596     static final short min(short a, short b) { if (a<b) return a; else return b; }
597     static final int min(int a, int b) { if (a<b) return a; else return b; }
598     static final float min(float a, float b) { if (a<b) return a; else return b; }
599
600     static final short max(short a, short b) { if (a>b) return a; else return b; }
601     static final int max(int a, int b) { if (a>b) return a; else return b; }
602     static final float max(float a, float b) { if (a>b) return a; else return b; }
603
604     static final 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; }
605     static final 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; }
606     static final int bound(int a, int b, int c) { if (c < b) return c; if (a > b) return a; return b; }
607     final boolean inside(int x, int y) { return test(VISIBLE) && x >= 0 && y >= 0 && x < width && y < height; }
608
609     protected final void set(int mask) { flags |= mask; }
610     protected final void clear(int mask) { flags &= ~mask; }
611     protected final boolean test(int mask) { return ((flags & mask) == mask); }
612     
613     protected Box left = null;
614     protected Box right = null;
615     protected Box rootChild = null;
616     protected Box peerTree_parent = null;
617     public abstract Box peerTree_leftmost();
618     public abstract Box peerTree_rightmost();
619     public abstract Box insertBeforeMe(Box cell);
620     public abstract Box insertAfterMe(Box cell);
621     protected abstract Box fixAfterInsertion();
622     protected abstract Box fixAfterDeletion();
623     protected abstract Box rotateLeft();
624     protected abstract Box rotateRight();
625     protected abstract int numPeerChildren();
626 }
627
628
629
630
631
632
633         /*
634         offset_x = 0;
635         if (path != null) {
636             if (rpath == null) rpath = path.realize(transform == null ? VectorGraphics.Affine.identity() : transform);
637             if ((flags & HSHRINK) != 0) contentwidth = max(contentwidth, rpath.boundingBoxWidth());
638             if ((flags & VSHRINK) != 0) contentheight = max(contentheight, rpath.boundingBoxHeight());
639             // FIXME: separate offset_x needed for the path
640         }
641         // #repeat x1/y1 x2/y2 x3/y3 x4/y4 contentwidth/contentheight left/top right/bottom
642         int x1 = transform == null ? 0 : (int)transform.multiply_px(0, 0);
643         int x2 = transform == null ? 0 : (int)transform.multiply_px(contentwidth, 0);
644         int x3 = transform == null ? contentwidth : (int)transform.multiply_px(contentwidth, contentheight);
645         int x4 = transform == null ? contentwidth : (int)transform.multiply_px(0, contentheight);
646         int left = min(min(x1, x2), min(x3, x4));
647         int right = max(max(x1, x2), max(x3, x4));
648         contentwidth = max(contentwidth, right - left);
649         offset_x = -1 * left;
650         // #end
651         */
652
653
654                     /*
655         if (path != null) {
656             if (rtransform == null) rpath = null;
657             else if (!rtransform.equalsIgnoringTranslation(a)) rpath = null;
658             else {
659                 rpath.translate((int)(a.e - rtransform.e), (int)(a.f - rtransform.f));
660                 rtransform = a.copy();
661             }
662             if (rpath == null) rpath = path.realize((rtransform = a) == null ? VectorGraphics.Affine.identity() : a);
663             if ((strokecolor & 0xff000000) != 0) rpath.stroke(buf, 1, strokecolor);
664             if ((fillcolor & 0xff000000) != 0) rpath.fill(buf, new VectorGraphics.SingleColorPaint(fillcolor));
665         }
666 */
667
668
669 /*
670             VectorGraphics.Affine a2 = VectorGraphics.Affine.translate(b.x, b.y);
671             if (transform != null) a2.multiply(transform);
672             a2.multiply(VectorGraphics.Affine.translate(offset_x, offset_y));
673             a2.multiply(a);
674 */