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