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