a98e052bd6bcda43c56dbdf8561bb601d174e6d3
[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 final class Box extends JSScope implements Scheduler.Task {
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     static final Font DEFAULT_FONT;
65    
66     static {
67         Font f = null;
68         try { f = Font.getFont((Res)Main.builtin.get("fonts/vera/Vera.ttf"), 10); }
69         catch(JSExn e) { Log.log(Box.class, "should never happen: "+e); }
70         DEFAULT_FONT = f;
71     }
72
73     // box properties can not be trapped
74     static final String[] props = new String[] {
75         "fill", "stroke", "image", "tile", "fixedaspect", "text", "path", "font",
76         "shrink", "hshrink", "vshrink", "x", "y", "width", "height", "cols", "rows",
77         "colspan", "rowspan", "align", "invisible", "absolute", "globalx", "globaly",
78         "minwidth", "maxwidth", "minheight", "maxheight",
79         "numchildren", "redirect", "cursor", "mousex", "mousey", "xwt", "static",
80         "mouseinside", "root", "thisbox", "indexof"
81     };
82
83     // events can have write traps, but not read traps
84     static final String[] events = new String[] {
85         "Press1", "Press2", "Press3",
86         "Release1", "Release2", "Release3",
87         "Click1", "Click2", "Click3",
88         "DoubleClick1", "DoubleClick2", "DoubleClick3",
89         "Enter", "Leave", "Move", 
90         "KeyPressed", "KeyReleased", "PosChange", "SizeChange",
91
92         "childadded", "childremoved",
93
94         "Focused", "Maximized", "Minimized", "Close",
95         "icon", "titlebar", "toback", "tofront"
96     };
97
98     // Flags //////////////////////////////////////////////////////////////////////
99
100     static final int MOUSEINSIDE  = 0x00000001;
101     static final int VISIBLE      = 0x00000002;
102     static final int PACKED       = 0x00000004;
103     static final int HSHRINK      = 0x00000008;
104     static final int VSHRINK      = 0x00000010;
105     static final int BLACK        = 0x00000020;  // for red-black code
106
107     static final int FIXED        = 0x00000040;
108     static final boolean ROWS     = true;
109     static final boolean COLS     = false;
110
111     static final int ISROOT       = 0x00000080;
112     static final int REPACK       = 0x00000100;
113     static final int REFLOW       = 0x00000200;
114     static final int RESIZE       = 0x00000400;
115     static final int RECONSTRAIN  = 0x00000800;
116     static final int ALIGN_TOP    = 0x00001000;
117     static final int ALIGN_BOTTOM = 0x00002000;
118     static final int ALIGN_LEFT   = 0x00004000;
119     static final int ALIGN_RIGHT  = 0x00008000;
120     static final int ALIGNS       = 0x0000f000;
121     static final int CURSOR       = 0x00010000;  // if true, this box has a cursor in the cursor hash; FEATURE: GC issues?
122     static final int NOCLIP       = 0x00020000;
123
124
125     // Instance Data //////////////////////////////////////////////////////////////////////
126
127     Box parent = null;
128     Box redirect = this;
129     int flags = VISIBLE | PACKED | REPACK | REFLOW | RESIZE | FIXED /* ROWS */;
130
131     private String text = null;
132     private Font font = DEFAULT_FONT; 
133     private Picture texture;
134     private short strokewidth = 1;
135     private int fillcolor = 0x00000000;
136     private int strokecolor = 0xFF000000;
137
138     // specified directly by user
139     public LENGTH minwidth = 0;
140     public LENGTH maxwidth = MAX_LENGTH;
141     public LENGTH minheight = 0;
142     public LENGTH maxheight = MAX_LENGTH;
143     private short rows = 1;
144     private short cols = 0;
145     private short rowspan = 1;
146     private short colspan = 1;
147
148     // computed during reflow
149     private short row = 0;
150     private short col = 0;
151     public LENGTH x = 0;
152     public LENGTH y = 0;
153     public LENGTH width = 0;
154     public LENGTH height = 0;
155     private LENGTH contentwidth = 0;      // == max(minwidth, textwidth, sum(child.contentwidth))
156     private LENGTH contentheight = 0;
157
158     /*
159     private VectorGraphics.VectorPath path = null;
160     private VectorGraphics.Affine transform = null;
161     private VectorGraphics.RasterPath rpath = null;
162     private VectorGraphics.Affine rtransform = null;
163     */
164
165     // Instance Methods /////////////////////////////////////////////////////////////////////
166
167
168     /** invoked when a resource needed to render ourselves finishes loading */
169     public void perform() {
170         MARK_REPACK;
171         MARK_REFLOW;
172         MARK_RESIZE;
173         dirty();
174     }
175
176     public Box getRoot() { return parent == null ? this : parent.getRoot(); }
177     public Surface getSurface() { return Surface.fromBox(getRoot()); }
178
179     // FEATURE: use cx2/cy2 format
180     /** Adds the intersection of (x,y,w,h) and the node's current actual geometry to the Surface's dirty list */
181     public void dirty() { dirty(0, 0, width, height); }
182     public void dirty(int x, int y, int w, int h) {
183         for(Box cur = this; cur != null; cur = cur.parent) {
184             if (!cur.test(NOCLIP)) {
185                 w = min(x + w, cur.width) - max(x, 0);
186                 h = min(y + h, cur.height) - max(y, 0);
187                 x = max(x, 0);
188                 y = max(y, 0);
189             }
190             if (w <= 0 || h <= 0) return;
191             if (cur.parent == null && cur.getSurface() != null) cur.getSurface().dirty(x, y, w, h);
192             x += cur.x;
193             y += cur.y;
194         }
195     }
196
197     /** update MOUSEINSIDE, check for Enter/Leave/Move */
198     void Move(int oldmousex, int oldmousey, int mousex, int mousey) { Move(oldmousex, oldmousey, mousex, mousey, false); }
199     void Move(int oldmousex, int oldmousey, int mousex, int mousey, boolean forceleave) {
200         boolean wasinside = test(MOUSEINSIDE);
201         boolean isinside = test(VISIBLE) && inside(mousex, mousey) && !forceleave;
202         if (isinside) set(MOUSEINSIDE); else clear(MOUSEINSIDE);
203         if (!wasinside && !isinside) return;
204         
205         if (isinside && test(CURSOR)) Surface.fromBox(getRoot()).cursor = (String)boxToCursor.get(this);
206         if (!wasinside && isinside && getTrap("Enter") != null) putAndTriggerTraps("Enter", T);
207         else if (wasinside && !isinside && getTrap("Leave") != null) putAndTriggerTraps("Leave", T);
208         else if (wasinside && isinside && (mousex != oldmousex || mousey != oldmousey) && getTrap("Move")!= null)
209             putAndTriggerTraps("Move", T);
210         for(Box b = getChild(treeSize() - 1); b != null; b = b.prevSibling()) {
211             b.Move(oldmousex - b.x, oldmousey - b.y, mousex - b.x, mousey - b.y, forceleave);
212             if (b.inside(mousex - b.x, mousey - b.y)) forceleave = true;
213         }
214     }
215
216
217     // Reflow ////////////////////////////////////////////////////////////////////////////////////////
218
219     // static stuff so we don't have to keep reallocating
220     private static int[] numRowsInCol = new int[65535];
221     private static LENGTH[] colWidth = new LENGTH[65535];
222     private static LENGTH[] colMaxWidth = new LENGTH[65535];
223     private static LENGTH[] rowHeight = new LENGTH[65535];
224     private static LENGTH[] rowMaxHeight = new LENGTH[65535];
225     static { for(int i=0; i<rowMaxHeight.length; i++) { rowMaxHeight[i] = MAX_LENGTH; colMaxWidth[i] = MAX_LENGTH; } }
226
227     Box nextPackedSibling() { Box b = nextSibling(); return b == null || (b.test(PACKED | VISIBLE)) ? b : b.nextPackedSibling(); }
228     Box firstPackedChild() { Box b = getChild(0); return b == null || (b.test(PACKED | VISIBLE)) ? b : b.nextPackedSibling(); }
229
230     /** only for use on the root box */
231     void reflow(int new_width, int new_height) {
232         repack();
233         /*
234         new_width = bound(max(contentwidth, minwidth), new_width, test(HSHRINK) ? max(contentwidth, minwidth) : maxwidth);
235         new_height = bound(max(contentheight, minheight), new_height, test(VSHRINK) ? max(contentheight, minheight) : maxheight);
236         */
237         resize(x, y, new_width, new_height);
238         resize_children();
239     }
240
241     /** pack the boxes into rows and columns; also computes contentwidth */
242     void repack() {
243         for(Box child = getChild(0); child != null; child = child.nextSibling()) child.repack();
244
245         //#repeat COLS/ROWS rows/cols cols/rows col/row row/col colspan/rowspan rowspan/colspan 
246         if (test(FIXED) == COLS) {
247             short r = 0;
248             for(Box child = firstPackedChild(); child != null; r++) {
249                 for(short c=0, numclear=0; child != null && c < cols; c++) {
250                     if (numRowsInCol[c] > r) { numclear = 0; continue; }
251                     if (c != 0 && c + min(cols, child.colspan) - numclear > cols) break;
252                     if (++numclear < min(cols, child.colspan)) continue;
253                     for(int i=c - numclear + 1; i <= c; i++) numRowsInCol[i] += child.rowspan;
254                     child.col = (short)(c - numclear + 1); child.row = r;
255                     rows = (short)max(rows, child.row + child.rowspan);
256                     child = child.nextPackedSibling();
257                     numclear = 0;
258                 }
259             }
260             for(int i=0; i<cols; i++) numRowsInCol[i] = 0;
261         }
262         //#end
263
264         //#repeat contentwidth/contentheight colWidth/rowHeight colspan/rowspan col/row cols/rows minwidth/minheight \
265         //        textwidth/textheight maxwidth/maxheight
266         contentwidth = 0;
267         for(Box child = firstPackedChild(); child != null; child = child.nextPackedSibling())
268             colWidth[child.col] = max(colWidth[child.col], child.contentwidth / child.colspan);
269         for(int i=0; i<cols; i++) { contentwidth += colWidth[i]; colWidth[i] = 0; }
270         contentwidth = bound(minwidth, max(font == null || text == null ? 0 : font.textwidth(text), contentwidth), maxwidth);
271         //#end               
272     }
273     
274     private void resize(LENGTH x, LENGTH y, LENGTH width, LENGTH height) {
275         // FEATURE reimplement, but we're destroying this
276         // FIXME: uncommenting this breaks; see http://bugs.xwt.org/show_bug.cgi?id=345
277         //if (x != this.x || y != this.y || width != this.width || height != this.height) {
278             (parent == null ? this : parent).dirty(this.x, this.y, this.width, this.height);
279             boolean sizechange = (this.width != width || this.height != height) && getTrap("SizeChange") != null;
280             boolean poschange = (this.x != x || this.y != y) && getTrap("PosChange") != null;
281             this.width = width; this.height = height; this.x = x; this.y = y;
282             dirty();
283             if (sizechange) try { putAndTriggerTraps("SizeChange", T); /*Surface.abort = true;*/ }
284                 catch (Exception e) { Log.log(this, e); }
285             if (poschange) try { putAndTriggerTraps("PosChange", T); /*Surface.abort = true;*/ }
286                 catch (Exception e) { Log.log(this, e); }
287             //}
288     }
289
290     private void resize_children() {
291
292         //#repeat col/row colspan/rowspan contentwidth/contentheight x/y width/height colMaxWidth/rowMaxHeight colWidth/rowHeight \
293         //        HSHRINK/VSHRINK maxwidth/maxheight cols/rows minwidth/minheight colWidth/rowHeight x_slack/y_slack
294         // PHASE 1: compute column min/max sizes
295         int x_slack = width;
296         for(int i=0; i<cols; i++) x_slack -= colWidth[i];
297         for(Box child = firstPackedChild(); child != null; child = child.nextPackedSibling())
298             for(int i=child.col; i < child.col + child.colspan; i++) {
299                 x_slack += colWidth[i];
300                 colWidth[i] = max(colWidth[i], child.contentwidth / child.colspan);
301                 x_slack -= colWidth[i];
302                 colMaxWidth[i] = min(colMaxWidth[i], child.test(HSHRINK) ? child.contentwidth : child.maxwidth) / child.colspan;
303             }
304         
305         // PHASE 2: hand out slack
306         for(int startslack = 0; x_slack > 0 && cols > 0 && startslack != x_slack;) {
307             int increment = max(1, x_slack / cols);
308             startslack = x_slack;
309             for(short col=0; col < cols; col++) {
310                 int diff = min(colMaxWidth[col], colWidth[col] + increment) - colWidth[col];
311                 x_slack -= diff;
312                 colWidth[col] += diff;
313             }
314         }   
315         //#end
316
317         // Phase 3: assign childrens' actual sizes
318         for(Box child = getChild(0); child != null; child = child.nextSibling()) {
319             if (!child.test(VISIBLE)) continue;
320             int child_width, child_height, child_x, child_y;
321             if (!child.test(PACKED)) {
322                 child_x = child.x;
323                 child_y = child.y;
324                 child_width = child.test(HSHRINK) ? child.contentwidth : min(child.maxwidth, width - child.x);
325                 child_height = child.test(VSHRINK) ? child.contentheight : min(child.maxheight, height - child.y);
326                 child_width = max(child.minwidth, child_width);
327                 child_height = max(child.minheight, child_height);
328             } else {
329                 int unbounded;
330                 //#repeat col/row colspan/rowspan contentwidth/contentheight width/height colMaxWidth/rowMaxHeight \
331                 //        child_x/child_y x/y HSHRINK/VSHRINK maxwidth/maxheight cols/rows minwidth/minheight x_slack/y_slack \
332                 //        colWidth/rowHeight child_width/child_height ALIGN_RIGHT/ALIGN_BOTTOM ALIGN_LEFT/ALIGN_TOP
333                 unbounded = 0;
334                 for(int i = child.col; i < child.col + child.colspan; i++) unbounded += colWidth[i];
335                 child_width = min(unbounded, child.test(HSHRINK) ? child.contentwidth : child.maxwidth);
336                 child_x = test(ALIGN_RIGHT) ? x_slack : test(ALIGN_LEFT) ? 0 : x_slack / 2;
337                 for(int i=0; i < child.col; i++) child_x += colWidth[i];
338                 if (child_width > unbounded) child_x -= (child_width - unbounded) / 2;
339                 //#end
340             }
341             child.resize(child_x, child_y, child_width, child_height);
342         }
343
344         // cleanup
345         for(int i=0; i<cols; i++) { colWidth[i] = 0; colMaxWidth[i] = MAX_LENGTH; }
346         for(int i=0; i<rows; i++) { rowHeight[i] = 0; rowMaxHeight[i] = MAX_LENGTH; }
347
348         for(Box child = getChild(0); child != null; child = child.nextSibling())
349             if (test(VISIBLE))
350                 child.resize_children();
351     }
352
353
354
355     // Rendering Pipeline /////////////////////////////////////////////////////////////////////
356
357     /** Renders self and children within the specified region. All rendering operations are clipped to xIn,yIn,wIn,hIn */
358     void render(int parentx, int parenty, int cx1, int cy1, int cx2, int cy2, PixelBuffer buf, VectorGraphics.Affine a) {
359         if (!test(VISIBLE)) return;
360         int globalx = parentx + (parent == null ? 0 : x);
361         int globaly = parenty + (parent == null ? 0 : y);
362
363         // intersect the x,y,w,h rendering window with ourselves; quit if it's empty
364         if (!test(NOCLIP)) {
365             cx1 = max(cx1, parent == null ? 0 : globalx);
366             cy1 = max(cy1, parent == null ? 0 : globaly);
367             cx2 = min(cx2, globalx + width);
368             cy2 = min(cy2, globaly + height);
369             if (cx2 <= cx1 || cy2 <= cy1) return;
370         }
371
372         if ((fillcolor & 0xFF000000) != 0x00000000)
373             buf.fillTrapezoid(globalx, globalx + width, globaly, globalx, globalx + width, globaly + height, fillcolor);
374
375         if (texture != null && texture.isLoaded)
376             for(int x = globalx; x < cx2; x += texture.width)
377                 for(int y = globaly; y < cy2; y += texture.height)
378                     buf.drawPicture(texture, x, y, cx1, cy1, cx2, cy2);
379
380         if (text != null && !text.equals("") && font != null)
381             if (font.rasterizeGlyphs(text, buf, strokecolor, globalx, globaly, cx1, cy1, cx2, cy2, null) == -1)
382                 font.rasterizeGlyphs(text, buf, strokecolor, globalx, globaly, cx1, cy1, cx2, cy2, this);
383
384         for(Box b = getChild(0); b != null; b = b.nextSibling())
385             b.render(globalx, globaly, cx1, cy1, cx2, cy2, buf, null);
386     }
387     
388     
389     // Methods to implement org.xwt.js.JS //////////////////////////////////////
390
391     public int globalToLocalX(int x) { return parent == null ? x : parent.globalToLocalX(x - this.x); }
392     public int globalToLocalY(int y) { return parent == null ? y : parent.globalToLocalY(y - this.y); }
393     public int localToGlobalX(int x) { return parent == null ? x : parent.globalToLocalX(x + this.x); }
394     public int localToGlobalY(int y) { return parent == null ? y : parent.globalToLocalY(y + this.y); }
395     
396     public Object callMethod(Object method, Object a0, Object a1, Object a2, Object[] rest, int nargs) throws JSExn {
397         if (nargs != 1 || !"indexof".equals(method)) return super.callMethod(method, a0, a1, a2, rest, nargs);
398         Box b = (Box)a0;
399         if (b.parent != this)
400             return (redirect == null || redirect == this) ?
401                 N(-1) :
402                 redirect.callMethod(method, a0, a1, a2, rest, nargs);
403         return N(b.getIndexInParent());
404     }
405
406     public Enumeration keys() { throw new Error("you cannot apply for..in to a " + this.getClass().getName()); }
407
408     protected boolean isTrappable(Object key, boolean isRead) {
409         if (key == null) return false;
410         else if (key instanceof String) {
411             // not allowed to trap box properties, and no read traps on events
412             String name = (String)key;
413             for (int i=0; i < props.length; i++) if (name.equals(props[i])) return false; 
414             if (isRead) for (int i=0; i < events.length; i++) if (name.equals(events[i])) return false; 
415         }
416
417         return true;
418     }
419
420     public Object get(Object name) throws JSExn {
421         if (name instanceof Number)
422             return redirect == null ? null : redirect == this ? getChild(toInt(name)) : redirect.get(name);
423
424         //#switch(name)
425         case "indexof": return METHOD;
426         case "text": return text;
427         case "path": throw new JSExn("cannot read from the path property");
428         case "fill": return colorToString(fillcolor);
429         case "strokecolor": return colorToString(strokecolor);
430         case "textcolor": return colorToString(strokecolor);
431         case "font": return font == null ? null : font.res;
432         case "fontsize": return font == null ? N(10) : N(font.pointsize);
433         case "strokewidth": return N(strokewidth);
434         case "align": return alignToString();
435         case "thisbox": return this;
436         case "shrink": return B(test(HSHRINK) || test(VSHRINK));
437         case "hshrink": return B(test(HSHRINK));
438         case "vshrink": return B(test(VSHRINK));
439         case "x": return (parent == null || !test(VISIBLE)) ? N(0) : N(x);
440         case "y": return (parent == null || !test(VISIBLE)) ? N(0) : N(y);
441         case "width": return N(width);
442         case "height": return N(height);
443         case "cols": return test(FIXED) == COLS ? N(cols) : N(0);
444         case "rows": return test(FIXED) == ROWS ? N(rows) : N(0);
445         case "colspan": return N(colspan);
446         case "rowspan": return N(rowspan);
447         case "noclip": return B(test(NOCLIP));
448         case "visible": return B(test(VISIBLE) && (parent == null || (parent.get("visible") == T)));
449         case "packed": return B(test(PACKED));
450         case "globalx": return N(localToGlobalX(0));
451         case "globaly": return N(localToGlobalY(0));
452         case "cursor": return test(CURSOR) ? boxToCursor.get(this) : null;
453         case "mousex": { Surface s = getSurface(); return N(s == null ? 0 : globalToLocalX(s.mousex)); }
454         case "mousey": { Surface s = getSurface(); return N(s == null ? 0 : globalToLocalY(s.mousey)); }
455         case "mouseinside": return B(test(MOUSEINSIDE));
456         case "numchildren": return redirect == null ? N(0) : redirect == this ? N(treeSize()) : redirect.get("numchildren");
457         case "minwidth": return N(minwidth);
458         case "maxwidth": return N(maxwidth);
459         case "minheight": return N(minheight);
460         case "maxheight": return N(maxheight);
461         case "redirect": return redirect == null ? null : redirect == this ? T : redirect.get("redirect");
462         case "Minimized": if (parent == null && getSurface() != null) return B(getSurface().minimized);
463         default: return super.get(name);
464         //#end
465         throw new Error("unreachable"); // unreachable
466     }
467
468     public void put(Object name, Object value) throws JSExn {
469         if (name instanceof Number) { put(toInt(name), value); return; }
470         //#switch(name)
471         case "text": CHECKSET_STRING(text); MARK_RESIZE; dirty();
472         case "strokecolor": value = N(stringToColor((String)value)); CHECKSET_INT(strokecolor); MARK_RESIZE; dirty();
473         case "textcolor": value = N(stringToColor((String)value)); CHECKSET_INT(strokecolor); MARK_RESIZE; dirty();
474         case "text": CHECKSET_STRING(text); MARK_RESIZE; dirty();
475         case "strokewidth": CHECKSET_SHORT(strokewidth); dirty();
476         case "shrink": put("hshrink", value); put("vshrink", value);
477         case "hshrink": CHECKSET_FLAG(HSHRINK); MARK_RESIZE;
478         case "vshrink": CHECKSET_FLAG(VSHRINK); MARK_RESIZE;
479         case "width": if (parent==null&&Surface.fromBox(this)!=null) { Surface.fromBox(this).setWidth(toInt(value)); } else { put("maxwidth", value); put("minwidth", value); MARK_RESIZE; }
480         case "height": if (parent == null&&Surface.fromBox(this)!=null) { Surface.fromBox(this).setHeight(toInt(value)); } else { put("maxheight", value); put("minheight", value); MARK_RESIZE; }
481         case "maxwidth": CHECKSET_INT(maxwidth); MARK_RESIZE;
482         case "minwidth": CHECKSET_INT(minwidth); MARK_RESIZE;
483         case "maxheight": CHECKSET_INT(maxheight); MARK_RESIZE;
484         case "minheight": CHECKSET_INT(minheight); MARK_RESIZE;
485         case "colspan": CHECKSET_SHORT(colspan); MARK_REPACK_parent;
486         case "rowspan": CHECKSET_SHORT(rowspan); MARK_REPACK_parent;
487         case "rows": CHECKSET_SHORT(rows); if (rows==0){set(FIXED, COLS);if(cols==0)cols=1;} else set(FIXED, ROWS); MARK_REPACK;
488         case "cols": CHECKSET_SHORT(cols); if (cols==0){set(FIXED, ROWS);if(rows==0)rows=1;} else set(FIXED, COLS); MARK_REPACK;
489         case "noclip": CHECKSET_FLAG(NOCLIP); if (parent == null) dirty(); else parent.dirty();
490         case "visible": CHECKSET_FLAG(VISIBLE); dirty(); MARK_RESIZE; dirty();
491         case "packed": CHECKSET_FLAG(PACKED); MARK_REPACK_parent;
492         case "globalx": put("x", N(globalToLocalX(toInt(value))));
493         case "globaly": put("y", N(globalToLocalY(toInt(value))));
494         case "align": clear(ALIGNS); setAlign(value == null ? "center" : value); MARK_RESIZE;
495         case "cursor": setCursor(value);
496         case "fill": setFill(value);
497         case "Press1": mouseEvent("Press1", value);
498         case "Press2": mouseEvent("Press2", value);
499         case "Press3": mouseEvent("Press3", value);
500         case "Release1": mouseEvent("Release1", value);
501         case "Release2": mouseEvent("Release2", value);
502         case "Release3": mouseEvent("Release3", value);
503         case "Click1": mouseEvent("Click1", value);
504         case "Click2": mouseEvent("Click2", value);
505         case "Click3": mouseEvent("Click3", value);
506         case "DoubleClick1": mouseEvent("DoubleClick1", value);
507         case "DoubleClick2": mouseEvent("DoubleClick2", value);
508         case "DoubleClick3": mouseEvent("DoubleClick3", value);
509         case "Minimized": if (parent == null && getSurface() != null) getSurface().minimized = toBoolean(value);  // FEATURE
510         case "Maximized": if (parent == null && getSurface() != null) getSurface().maximized = toBoolean(value);  // FEATURE
511         case "Close": if (parent == null && getSurface() != null) getSurface().dispose(true);
512         case "toback": if (parent == null && getSurface() != null && toBoolean(value)) { getSurface().toBack(); }
513         case "tofront": if (parent == null && getSurface() != null && toBoolean(value)) { getSurface().toFront(); }
514         case "redirect": if (redirect == this) redirect = (Box)value; else Log.log(this, "redirect can only be set once");
515         case "font": font = value == null ? null : Font.getFont((Res)value, font == null ? 10 : font.pointsize); MARK_RESIZE; dirty();
516         case "fontsize": font = Font.getFont(font == null ? null : font.res, toInt(value)); MARK_RESIZE; dirty();
517         case "x": if (parent==null && Surface.fromBox(this)!=null) { CHECKSET_INT(x); } else { if (test(PACKED) && parent != null) return; CHECKSET_INT(x); dirty(); MARK_RESIZE; dirty(); }
518         case "y": if (parent==null && Surface.fromBox(this)!=null) { CHECKSET_INT(y); } else { if (test(PACKED) && parent != null) return; CHECKSET_INT(y); dirty(); MARK_RESIZE; dirty(); }
519         case "KeyPressed":   return;  // prevent stuff from hitting the Hash
520         case "KeyReleased":   return; // prevent stuff from hitting the Hash
521         case "PosChange":   return;   // prevent stuff from hitting the Hash
522         case "SizeChange":   return;  // prevent stuff from hitting the Hash
523         case "childadded":   return;  // prevent stuff from hitting the Hash
524         case "childremoved": return;  // prevent stuff from hitting the Hash
525         case "thisbox": if (value == null) removeSelf();
526         default: super.put(name, value);
527         //#end
528     }
529
530     private String alignToString() {
531         switch(flags & ALIGNS) {
532             case (ALIGN_TOP | ALIGN_LEFT): return "topleft";
533             case (ALIGN_BOTTOM | ALIGN_LEFT): return "bottomleft";
534             case (ALIGN_TOP | ALIGN_RIGHT): return "topright";
535             case (ALIGN_BOTTOM | ALIGN_RIGHT): return "bottomright";
536             case ALIGN_TOP: return "top";
537             case ALIGN_BOTTOM: return "bottom";
538             case ALIGN_LEFT: return "left";
539             case ALIGN_RIGHT: return "right";
540             case 0: return "center";
541             default: throw new Error("invalid alignment flags: " + (flags & ALIGNS));
542         }
543     }
544
545     private void setAlign(Object value) {
546         //#switch(value)
547         case "center": clear(ALIGNS);
548         case "topleft": set(ALIGN_TOP | ALIGN_LEFT);
549         case "bottomleft": set(ALIGN_BOTTOM | ALIGN_LEFT);
550         case "topright": set(ALIGN_TOP | ALIGN_RIGHT);
551         case "bottomright": set(ALIGN_BOTTOM | ALIGN_RIGHT);
552         case "top": set(ALIGN_TOP);
553         case "bottom": set(ALIGN_BOTTOM);
554         case "left": set(ALIGN_LEFT);
555         case "right": set(ALIGN_RIGHT);
556         default: Log.logJS("invalid alignment \"" + value + "\"");
557         //#end
558     }
559     
560     private void setCursor(Object value) {
561         if (value == null) { clear(CURSOR); boxToCursor.remove(this); return; }
562         if (value.equals(boxToCursor.get(this))) return;
563         set(CURSOR);
564         boxToCursor.put(this, value);
565         Surface surface = getSurface();
566         String tempcursor = surface.cursor;
567         Move(surface.mousex, surface.mousey, surface.mousex, surface.mousey);
568         if (surface.cursor != tempcursor) surface.syncCursor();
569     }
570
571     private void setFill(Object value) {
572         if (value == null) return;
573         if (value instanceof String) {
574             // FIXME check double set
575             int newfillcolor = stringToColor((String)value);
576             if (newfillcolor == fillcolor) return;
577             fillcolor = newfillcolor;
578             dirty();
579             return;
580         }
581         if (!(value instanceof Res)) return;
582
583
584         // FIXME
585         texture = Picture.load((Res)value, this);
586         if (texture.isLoaded) {
587             minwidth = texture.width;
588             minheight = texture.height;
589             MARK_REFLOW;
590             dirty();
591             return;
592         }
593         texture = Picture.load((Res)value, new Scheduler.Task() { public void perform() {
594             // FIXME pass this instead of a new Task?
595             minwidth = texture.width;
596             minheight = texture.height;
597             Box b = Box.this; MARK_REFLOW_b;
598             dirty();
599         } });
600     }
601         
602     private void mouseEvent(String name, Object value) {
603         Surface surface = getSurface();
604         if (surface == null) return;
605         int mousex = globalToLocalX(surface.mousex);
606         int mousey = globalToLocalY(surface.mousey);
607         for(Box c = prevSibling(); c != null; c = c.prevSibling())
608             if (c.inside(mousex - c.x, mousey - c.y)) { c.putAndTriggerTraps(name, value); return; }
609         if (parent != null) parent.putAndTriggerTraps(name, value);
610     }
611
612     private static int stringToColor(String s) {
613         if (s == null) return 0x00000000;
614         else if (SVG.colors.get(s) != null) return 0xFF000000 | toInt(SVG.colors.get(s));
615         else if (s.length() > 0 && s.charAt(0) == '#') try {
616             // FEATURE  alpha
617             return 0xFF000000 |
618                 (Integer.parseInt(s.substring(1, 3), 16) << 16) |
619                 (Integer.parseInt(s.substring(3, 5), 16) << 8) |
620                 Integer.parseInt(s.substring(5, 7), 16);
621         } catch (NumberFormatException e) {
622             Log.log(Box.class, "invalid color " + s);
623             return 0;
624         }
625         else return 0; // FEATURE: error?
626     }
627
628     private static String colorToString(int argb) {
629         if ((argb & 0xFF000000) == 0) return null;
630         String red = Integer.toHexString((argb & 0x00FF0000) >> 16);
631         String green = Integer.toHexString((argb & 0x0000FF00) >> 8);
632         String blue = Integer.toHexString(argb & 0x000000FF);
633         if (red.length() < 2) red = "0" + red;
634         if (blue.length() < 2) blue = "0" + blue;
635         if (green.length() < 2) green = "0" + green;
636         return "#" + red + green + blue;
637     }
638
639     /** figures out what box in this subtree of the Box owns the pixel at x,y relitave to the Surface */
640     public static Box whoIs(Box cur, int x, int y) {
641
642         if (cur.parent != null) throw new Error("whoIs may only be invoked on the root box of a surface");
643         int globalx = 0;
644         int globaly = 0;
645
646         // WARNING: this method is called from the event-queueing thread -- it may run concurrently with
647         // ANY part of XWT, and is UNSYNCHRONIZED for performance reasons.  BE CAREFUL HERE.
648
649         if (!cur.test(VISIBLE)) return null;
650         if (!cur.inside(x - globalx, y - globaly)) return cur.parent == null ? cur : null;
651         OUTER: while(true) {
652             for(int i=cur.treeSize() - 1; i>=0; i--) {
653                 Box child = cur.getChild(i);
654                 if (child == null) continue;        // since this method is unsynchronized, we have to double-check
655                 globalx += child.x;
656                 globaly += child.y;
657                 if (child.test(VISIBLE) && child.inside(x - globalx, y - globaly)) { cur = child; continue OUTER; }
658                 globalx -= child.x;
659                 globaly -= child.y;
660             }
661             break;
662         }
663         return cur;
664     }
665
666
667     // Trivial Helper Methods (should be inlined) /////////////////////////////////////////
668
669     static short min(short a, short b) { if (a<b) return a; else return b; }
670     static int min(int a, int b) { if (a<b) return a; else return b; }
671     static float min(float a, float b) { if (a<b) return a; else return b; }
672
673     static short max(short a, short b) { if (a>b) return a; else return b; }
674     static int max(int a, int b) { if (a>b) return a; else return b; }
675     static float max(float a, float b) { if (a>b) return a; else return b; }
676
677     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; }
678     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; }
679     static int bound(int a, int b, int c) { if (c < b) return c; if (a > b) return a; return b; }
680     final boolean inside(int x, int y) { return test(VISIBLE) && x >= 0 && y >= 0 && x < width && y < height; }
681
682     void set(int mask) { flags |= mask; }
683     void set(int mask, boolean setclear) { if (setclear) set(mask); else clear(mask); }
684     void clear(int mask) { flags &= ~mask; }
685     boolean test(int mask) { return ((flags & mask) == mask); }
686     
687
688     // Tree Handling //////////////////////////////////////////////////////////////////////
689
690     public final int getIndexInParent() { return parent == null ? 0 : parent.indexNode(this); }
691     public final Box nextSibling() { return parent == null ? null : parent.getChild(parent.indexNode(this) + 1); }
692     public final Box prevSibling() { return parent == null ? null : parent.getChild(parent.indexNode(this) - 1); }
693     public final Box getChild(int i) {
694         if (i < 0) return null;
695         if (i >= treeSize()) return null;
696         return (Box)getNode(i);
697     }
698
699     // Tree Manipulation /////////////////////////////////////////////////////////////////////
700
701     void removeSelf() {
702         if (parent != null) { parent.removeChild(parent.indexNode(this)); return; }
703         Surface surface = Surface.fromBox(this); 
704         if (surface != null) surface.dispose(true);
705     }
706
707     /** remove the i^th child */
708     public void removeChild(int i) {
709         Box b = getChild(i);
710         MARK_REFLOW_b;
711         b.dirty();
712         b.clear(MOUSEINSIDE);
713         deleteNode(i);
714         b.parent = null;
715         MARK_REFLOW;
716         putAndTriggerTraps("childremoved", b);
717     }
718     
719     public void put(int i, Object value) throws JSExn {
720         if (i < 0) return;
721             
722         if (value != null && !(value instanceof Box)) {
723             if (Log.on) Log.logJS(this, "attempt to set a numerical property on a box to a non-box");
724             return;
725         }
726
727         if (redirect == null) {
728             if (value == null) putAndTriggerTraps("childremoved", getChild(i));
729             else Log.logJS(this, "attempt to add/remove children to/from a node with a null redirect");
730
731         } else if (redirect != this) {
732             if (value != null) putAndTriggerTraps("childadded", value);
733             redirect.put(i, value);
734             if (value == null) {
735                 Box b = (Box)redirect.get(new Integer(i));
736                 if (b != null) putAndTriggerTraps("childremoved", b);
737             }
738
739         } else if (value == null) {
740             if (i < 0 || i > treeSize()) return;
741             Box b = getChild(i);
742             removeChild(i);
743             putAndTriggerTraps("childremoved", b);
744
745         } else {
746             Box b = (Box)value;
747
748             // check if box being moved is currently target of a redirect
749             for(Box cur = b.parent; cur != null; cur = cur.parent)
750                 if (cur.redirect == b) {
751                     if (Log.on) Log.logJS(this, "attempt to move a box that is the target of a redirect");
752                     return;
753                 }
754
755             // check for recursive ancestor violation
756             for(Box cur = this; cur != null; cur = cur.parent)
757                 if (cur == b) {
758                     if (Log.on) Log.logJS(this, "attempt to make a node a parent of its own ancestor");
759                     if (Log.on) Log.log(this, "box == " + this + "  ancestor == " + b);
760                     return;
761                 }
762
763             if (b.parent != null) b.parent.removeChild(b.parent.indexNode(b));
764             insertNode(i, b);
765             b.parent = this;
766             
767             // need both of these in case child was already uncalc'ed
768             MARK_REFLOW_b;
769             MARK_REFLOW;
770             
771             b.dirty(); 
772             putAndTriggerTraps("childadded", b);
773         }
774     }
775
776
777     public final void putAndTriggerTraps(Object key, Object value) {
778         try {
779             super.putAndTriggerTraps(key, value);
780         } catch (JSExn jse) {
781             Log.logJS("attempt to put value " + value + " to key " + key + " on a box triggered a trap which threw:");
782             Log.logJS(jse);
783         }
784     }
785
786     public final Object getAndTriggerTraps(Object key) {
787         try {
788             return super.getAndTriggerTraps(key);
789         } catch (JSExn jse) {
790             Log.logJS("attempt to get key " + key + " on a box triggered a trap which threw:");
791             Log.logJS(jse);
792             return null;
793         }
794     }
795 }
796
797
798
799
800
801
802         /*
803         offset_x = 0;
804         if (path != null) {
805             if (rpath == null) rpath = path.realize(transform == null ? VectorGraphics.Affine.identity() : transform);
806             if ((flags & HSHRINK) != 0) contentwidth = max(contentwidth, rpath.boundingBoxWidth());
807             if ((flags & VSHRINK) != 0) contentheight = max(contentheight, rpath.boundingBoxHeight());
808             // FIXME: separate offset_x needed for the path
809         }
810         // #repeat x1/y1 x2/y2 x3/y3 x4/y4 contentwidth/contentheight left/top right/bottom
811         int x1 = transform == null ? 0 : (int)transform.multiply_px(0, 0);
812         int x2 = transform == null ? 0 : (int)transform.multiply_px(contentwidth, 0);
813         int x3 = transform == null ? contentwidth : (int)transform.multiply_px(contentwidth, contentheight);
814         int x4 = transform == null ? contentwidth : (int)transform.multiply_px(0, contentheight);
815         int left = min(min(x1, x2), min(x3, x4));
816         int right = max(max(x1, x2), max(x3, x4));
817         contentwidth = max(contentwidth, right - left);
818         offset_x = -1 * left;
819         // #end
820         */
821
822
823                     /*
824         if (path != null) {
825             if (rtransform == null) rpath = null;
826             else if (!rtransform.equalsIgnoringTranslation(a)) rpath = null;
827             else {
828                 rpath.translate((int)(a.e - rtransform.e), (int)(a.f - rtransform.f));
829                 rtransform = a.copy();
830             }
831             if (rpath == null) rpath = path.realize((rtransform = a) == null ? VectorGraphics.Affine.identity() : a);
832             if ((strokecolor & 0xff000000) != 0) rpath.stroke(buf, 1, strokecolor);
833             if ((fillcolor & 0xff000000) != 0) rpath.fill(buf, new VectorGraphics.SingleColorPaint(fillcolor));
834         }
835 */
836
837
838 /*
839             VectorGraphics.Affine a2 = VectorGraphics.Affine.translate(b.x, b.y);
840             if (transform != null) a2.multiply(transform);
841             a2.multiply(VectorGraphics.Affine.translate(offset_x, offset_y));
842             a2.multiply(a);
843 */