Mesh replaces Polygon
[org.ibex.core.git] / src / org / ibex / core / Box.java
1 // Copyright 2000-2005 the Contributors, as shown in the revision logs.
2 // Licensed under the GNU General Public License version 2 ("the License").
3 // You may not use this file except in compliance with the License.
4
5 package org.ibex.core;
6
7 // FIXME: are traps on x/y meaningful?
8 // FIXME: trap on visible, trigger when parent visibility changes
9 // FIXME: mouse move/release still needs to propagate to boxen in which the mouse was pressed and is still held down
10 // FEATURE: reintroduce surface.abort
11
12 // Broken:
13 // - textures
14 // - align/origin
15 // - clipping (all forms)
16
17 import java.util.*;
18 import org.ibex.js.*;
19 import org.ibex.util.*;
20 import org.ibex.plat.*;
21 import org.ibex.graphics.*;
22
23 /**
24  *  <p>
25  *  Encapsulates the data for a single Ibex box as well as all layout
26  *  rendering logic.
27  *  </p>
28  *
29  *  <p>The rendering process consists of four phases; each requires
30  *     one DFS pass over the tree</p>
31  *  <ol><li> <b>pack()</b>: each box sets its childrens' row/col
32  *  <ol><li> <b>constrain()</b>: contentwidth is computed
33  *      <li> <b>resize()</b>: width/height and x/y positions are set
34  *      <li> <b>render()</b>: children draw their content onto the PixelBuffer.
35  *  </ol>
36  *
37  *  The first three passes together are called the <i>reflow</i>
38  *  phase.  Reflowing is done in a seperate pass since SizeChanges
39  *  trigger a Surface.abort; if rendering were done in the same pass,
40  *  rendering work done prior to the Surface.abort would be wasted.
41  */
42 public final class Box extends JS.Obj implements Callable, Mesh.Chain {
43
44     public Mesh.Chain getMeshChainParent() { return parent; }
45     public Mesh       getMesh()            { return mesh; }
46     public Affine     getAffine()          { return transform; }
47
48     // Macros //////////////////////////////////////////////////////////////////////
49
50     final void REPLACE() { for(Box b2 = this; b2 != null && !b2.test(REPLACE); b2 = b2.parent) b2.set(REPLACE); }
51     final void RECONSTRAIN() { for(Box b2 = this; b2 != null && !b2.test(RECONSTRAIN); b2 = b2.parent) b2.set(RECONSTRAIN); }
52
53     //#define CHECKSET_SHORT(prop) short nu = (short)JSU.toInt(value); if (nu == prop) break; prop = nu;
54     //#define CHECKSET_INT(prop) int nu = JSU.toInt(value); if (nu == prop) break; prop = nu;
55     //#define CHECKSET_FLAG(flag) boolean nu=JSU.toBoolean(value);if(nu == test(flag)) break; if (nu) set(flag); else clear(flag);
56     //#define CHECKSET_BOOLEAN.N(prop) boolean nu = JSU.toBoolean(value); if (nu == prop) break; prop = nu;
57     //#define CHECKSET_STRING(prop) if((value==null&&prop==null)||(value!=null&&JSU.toString(value).equals(prop)))break;prop=JSU.toString(value);
58
59     // Instance Data //////////////////////////////////////////////////////////////////////
60
61     private Box          parent       = null;
62     private Box          redirect     = this;
63     private int          flags        = VISIBLE | RECONSTRAIN | REPLACE | STOP_UPWARD_PROPAGATION | CLIP | MOVED;
64     private BalancedTree bt           = null;
65     private String       text         = null;
66     private Font         font         = DEFAULT_FONT; 
67     private Picture      texture      = null;
68     public  int          fillcolor    = 0x00000000;
69     private int          strokecolor  = 0xFF000000;
70     public  float        flex         = 1;
71     private Path         path         = null;
72     private Path         clippath     = null;
73     private Affine       transform    = Affine.identity();
74
75     // FEATURE: polygon caching
76     private Mesh      polygon      = null;
77     private Mesh         mesh         = null;
78
79     // specified directly by user
80     public int minwidth = 0;
81     public int maxwidth = Integer.MAX_VALUE;
82     public int minheight = 0;
83     public int maxheight = Integer.MAX_VALUE;
84
85     // computed during reflow
86     public int width = 0;
87     public int height = 0;
88     public int contentwidth = 0;      // == max(minwidth, textwidth, sum(child.contentwidth))
89     public int contentheight = 0;
90
91
92     // Instance Methods /////////////////////////////////////////////////////////////////////
93
94     /** invoked when a resource needed to render ourselves finishes loading */
95     public Object run(Object o) throws JSExn {
96         if (texture == null) { Log.warn(Box.class, "perform() called with null texture"); return null; }
97         if (texture.isLoaded) {
98             setWidth(max(texture.width, minwidth), maxwidth); 
99             setHeight(max(texture.height, minheight), maxheight); 
100             dirty(); }
101         else { JS res = texture.stream; texture = null; throw new JSExn("image not found: "+res.unclone()); }
102         return null;
103     }
104
105     /** Adds the intersection of (x,y,w,h) and the node's current actual geometry to the Surface's dirty list */
106     public void dirty() { if (path==null) dirty(0, 0, contentwidth, contentheight); else dirty(path); }
107     public void dirty(int x, int y, int w, int h) { }
108     public void dirty(Path p) {
109         Affine a = transform;
110         for(Box cur = this; cur != null; cur = cur.parent) a.premultiply(cur.transform);
111         long hbounds = p.horizontalBounds(a);
112         long vbounds = p.verticalBounds(a);
113         int x1 = (int)Encode.longToFloat2(hbounds);
114         int x2 = (int)Encode.longToFloat1(hbounds);
115         int y1 = (int)Encode.longToFloat2(vbounds);
116         int y2 = (int)Encode.longToFloat1(vbounds);
117         if (getSurface() != null) getSurface().dirty(x1, y1, x2-x1, y2-y1);
118     }
119
120
121     // Reflow ////////////////////////////////////////////////////////////////////////////////////////
122
123     /** should only be invoked on the root box */
124     public void reflow() {
125         constrain(this, Affine.identity());
126         width = maxwidth;
127         height = maxheight;
128         transform.e = 0;
129         transform.f = 0;
130         place();
131     }
132
133     void place() {
134         if (!packed()) {
135             for(Box child = getChild(0); child != null; child = child.nextSibling()) {
136                 child.width = max(child.minwidth, min(child.test(HSHRINK) ? child.contentwidth : width, child.maxwidth));
137                 child.height = max(child.minheight, min(child.test(VSHRINK) ? child.contentheight : height, child.maxheight));
138                 child.place();
139             }
140             return;
141         }
142         float slack = width, oldslack = 0, flex = 0, newflex = 0;
143         for(Box child = getChild(0); child != null; child = child.nextSibling()) {
144             if (!child.test(VISIBLE)) continue;
145             slack -= (child.width = child.contentwidth);
146             if (child.width < (child.test(HSHRINK)?child.contentwidth:child.maxwidth)) flex += child.flex;
147             child.height = child.test(HSHRINK) ? child.contentheight : bound(child.contentheight, height, child.maxheight);
148         }
149         while(slack > 0 && flex > 0 && oldslack!=slack) {
150             oldslack = slack;
151             slack = width;
152             for(Box child = getChild(0); child != null; child = child.nextSibling()) {
153                 if (!child.test(VISIBLE)) continue;
154                 if (child.width < child.maxwidth && !child.test(HSHRINK))
155                     child.width = bound(child.contentwidth, (int)(child.width + (slack/flex)), child.maxwidth);
156                 newflex += child.width < child.maxwidth && !child.test(HSHRINK) ? child.flex : 0;
157                 slack -= child.width;
158             }
159             flex = newflex;
160         }
161         float pos = slack / 2;
162         for(Box child = getChild(0); child != null; child = child.nextSibling()) {
163             if (!child.test(VISIBLE)) continue;
164             child.transform.e += pos;
165             child.transform.f += (height-child.height)/2;
166             pos += child.width;
167             child.place();
168         }
169     }
170     
171     /** used (single-threadedly) in constrain() */
172     private static int xmin = 0, ymin = 0, xmax = 0, ymax = 0;
173     public void constrain(Box b, Affine a) {
174         contentwidth = 0;
175         contentheight = 0;
176         transform.e = 0;
177         transform.f = 0;
178         a = a.copy().premultiply(transform);
179
180         //boolean relevant = packed() || ((fillcolor&0xff000000)!=0x0) || path!=null;
181         boolean relevant = true;
182         int save_xmin = xmin, save_ymin = ymin, save_xmax = xmax, save_ymax = ymax;
183         if (!relevant) {
184             for(Box child = getChild(0); child != null; child = child.nextSibling()) {
185                 child.constrain(b, a);
186                 contentwidth = max(contentwidth, child.contentwidth);
187                 contentheight = max(contentheight, child.contentheight);
188             }
189             return;
190         }
191
192         for(Box child = getChild(0); child != null; child = child.nextSibling()) {
193             xmin = Integer.MAX_VALUE; ymin = Integer.MAX_VALUE;
194             xmax = Integer.MIN_VALUE; ymax = Integer.MIN_VALUE;
195             child.constrain(this, Affine.identity());
196             if (xmin==Integer.MAX_VALUE||xmax==Integer.MIN_VALUE||ymin==Integer.MAX_VALUE||ymax== Integer.MIN_VALUE) continue;
197             child.transform.e = -1 * xmin;
198             child.transform.f = -1 * ymin;
199             contentwidth += (xmax-xmin);
200             contentheight = max(ymax-ymin, contentheight);
201         }
202         xmin = save_xmin;
203         ymin = save_ymin;
204         xmax = save_xmax;
205         ymax = save_ymax;
206
207         int cw = contentwidth = bound(minwidth, contentwidth, maxwidth);
208         int ch = contentheight = bound(minheight, contentheight, maxheight);
209         //#repeat contentwidth/contentheight contentheight/contentwidth minwidth/minheight row/col col/row \
210         //        textwidth/textheight maxwidth/maxheight bounds/boundsy x1/y1 x2/y2 z1/q1 z2/q2 z3/q3 z4/q4 \
211         //        horizontalBounds/verticalBounds e/f multiply_px/multiply_py xmin/ymin xmax/ymax
212         long bounds = path==null ? 0                     : path.horizontalBounds(a);
213         float z1    = path==null ? a.multiply_px(0, 0)   : Encode.longToFloat2(bounds);
214         float z2    = path==null ? a.multiply_px(cw, ch) : Encode.longToFloat1(bounds);
215         float z3    = path==null ? a.multiply_px(cw, 0)  : Encode.longToFloat2(bounds);
216         float z4    = path==null ? a.multiply_px(0, ch)  : Encode.longToFloat1(bounds);
217         xmin = min(xmin, (int)min(min(z1, z2), min(z3, z4)));
218         xmax = max(xmax, (int)max(max(z1, z2), max(z3, z4)));
219         //#end
220     }
221     
222
223     // Rendering Pipeline /////////////////////////////////////////////////////////////////////
224
225     private static final boolean OPTIMIZE = false;
226
227     /** Renders self and children within the specified region. All rendering operations are clipped to xIn,yIn,wIn,hIn */
228     public void render(PixelBuffer buf, Affine a, Mesh clipFrom) { render(buf, a, clipFrom, Affine.identity()); }
229     public void render(PixelBuffer buf, Affine a, Mesh clipFrom, Affine clipa) {
230         if (!test(VISIBLE)) return;
231         a = a.copy().multiply(transform);
232         clipa = clipa.copy().multiply(transform);
233
234         if (mesh == null)
235             if (path != null) mesh = new Mesh(path, true);
236             else {
237                 if (((fillcolor & 0xFF000000) != 0x00000000 || parent == null) && (text==null||"".equals(text)))
238                     mesh = new Mesh().addRect(0, 0, contentwidth, contentheight);
239                 // long ret = font.rasterizeGlyphs(text, buf, a, null, 0x777777, 0);
240                 // minwidth = maxwidth = font.textwidth(text);
241                 // minheight = maxheight = font.textwidth(text);
242                 // if (ret == 0) Platform.Scheduler.add(this);
243                 // FIXME: texture
244             }
245         if (mesh==null) {
246             for(Box b = getChild(0); b != null; b = b.nextSibling()) b.render(buf, a, clipFrom, clipa);
247             return;
248         }
249
250         if (clipFrom != null) clipFrom.subtract(mesh, clipa);
251         Mesh mesh = treeSize() > 0 ? this.mesh.copy() : this.mesh;
252         for(Box b = getChild(0); b != null; b = b.nextSibling()) b.render(buf, a, mesh, Affine.identity());
253         mesh.fill(buf, a, null, fillcolor, true);
254     }
255     
256     // Methods to implement org.ibex.js.JS //////////////////////////////////////
257   
258     public JS call(JS method, JS[] args) throws JSExn {
259         switch (args.length) {
260             case 1: {
261                 //#switch(JSU.toString(method))
262                 case "indexof":
263                     Box b = (Box)args[0];
264                     if (b.parent != this)
265                         return (redirect == null || redirect == this) ? JSU.N(-1) : redirect.call(method, args);
266                     return JSU.N(b.getIndexInParent());
267
268                 case "distanceto":
269                     Box b = (Box)args[0];
270                     JS ret = new JS.Obj();
271                     ret.put(JSU.S("x"), JSU.N(b.localToGlobalX(0) - localToGlobalX(0)));
272                     ret.put(JSU.S("y"), JSU.N(b.localToGlobalY(0) - localToGlobalY(0)));
273                     return ret;
274
275                 //#end
276             }
277         }
278         return super.call(method, args);
279     }
280
281     public JS get(JS name) throws JSExn {
282         if (JSU.isInt(name))
283             return redirect == null ? null : redirect == this ? getChild(JSU.toInt(name)) : redirect.get(name);
284
285         //#switch(JSU.toString(name))
286         case "surface": return parent == null ? null : parent.getAndTriggerTraps(name);
287         case "indexof": return METHOD;
288         case "distanceto": return METHOD;
289         case "text": return JSU.S(text);
290         case "path": {
291             if (path != null) return JSU.S(path.toString());
292             if (text == null) return null;
293             if (font == null) return null;
294             String ret = "";
295             for(int i=0; i<text.length(); i++) ret += font.glyphs[text.charAt(i)].path;
296             return JSU.S(ret);
297         }
298         case "fill": return JSU.S(Color.colorToString(fillcolor));
299         case "strokecolor": return JSU.S(Color.colorToString(strokecolor));
300         case "textcolor": return JSU.S(Color.colorToString(strokecolor));
301         case "font": return font == null ? null : font.stream;
302         case "fontsize": return font == null ? JSU.N(10) : JSU.N(font.pointsize);
303         case "thisbox": return this;
304         case "shrink": return JSU.B(test(HSHRINK) || test(VSHRINK));
305         case "hshrink": return JSU.B(test(HSHRINK));
306         case "vshrink": return JSU.B(test(VSHRINK));
307         case "flex": return JSU.N(flex);
308         case "width": getRoot().reflow(); return JSU.N(width);
309         case "height": getRoot().reflow(); return JSU.N(height);
310         case "minwidth": return JSU.N(minwidth);
311         case "maxwidth": return JSU.N(maxwidth);
312         case "minheight": return JSU.N(minheight);
313         case "maxheight": return JSU.N(maxheight);
314         case "clip": return JSU.B(test(CLIP));
315         case "visible": return JSU.B(test(VISIBLE) && (parent == null || (parent.get(JSU.S("visible")) == JSU.T)));
316         case "axis": return test(XAXIS) ? JSU.S("x") : test(YAXIS) ? JSU.S("y") : JSU.S("z");
317         case "globalx": return JSU.N(localToGlobalX(0));
318         case "globaly": return JSU.N(localToGlobalY(0));
319         case "cursor": return test(CURSOR) ? JSU.S((String)boxToCursor.get(this)) : null;
320         case "mouse":
321             if (getSurface() == null) return null;
322             if (getSurface()._mousex == Integer.MAX_VALUE)
323                 throw new JSExn("you cannot read from the box.mouse property in background thread context");
324             return new Mouse();
325         case "numchildren": return redirect == null ? JSU.N(0) : redirect == this ? JSU.N(treeSize()) : redirect.get(JSU.S("numchildren"));
326         case "redirect": return redirect == null ? null : redirect == this ? JSU.T : redirect.get(JSU.S("redirect"));
327         case "Minimized": if (parent == null && getSurface() != null) return JSU.B(getSurface().minimized);
328         default: return super.get(name);
329         //#end
330         throw new Error("unreachable"); // unreachable
331     }
332
333     private class Mouse extends JS.Immutable implements JS.Cloneable {
334         public JS get(JS key) throws JSExn {
335             //#switch(JSU.toString(key))
336             case "x": return JSU.N(globalToLocalX(getSurface()._mousex));
337             case "y": return JSU.N(globalToLocalY(getSurface()._mousey));
338
339             // this might not get recomputed if we change mousex/mousey...
340             case "inside": return JSU.B(test(MOUSEINSIDE));
341             //#end
342             return super.get(key);
343         }
344     }
345
346     //#repeat setWidth/setHeight minwidth/minheight maxwidth/maxheight pendingWidth/pendingHeight
347     public void setWidth(int min, int max) {
348         // FIXME: deal with conflicting min/max
349         if (this.minwidth == min && this.maxwidth == max) return;
350         this.minwidth = min;
351         this.maxwidth = max;
352         RECONSTRAIN();
353         if (parent != null || getSurface() == null) return;
354         getSurface().pendingWidth = maxwidth;
355
356         // FIXME: the repeat doesn't work right here
357         getSurface().setMinimumSize(minwidth, minheight, minwidth != maxwidth || minheight != maxheight);
358     }
359     //#end
360
361     public void put(JS name, JS value) throws JSExn {
362         if (JSU.isInt(name)) { put(JSU.toInt(name), value); return; }
363         //#switch(JSU.toString(name))
364         case "thisbox":     if (value == null) removeSelf();
365         case "text":        {
366             String s = value==null ?  "" : JSU.toString(value);
367             text = s;
368             minwidth = maxwidth = font.textwidth(text);
369             System.out.println("width=" + width);
370             minheight = maxheight = font.textheight(text);
371             System.out.println("height=" + height);
372             RECONSTRAIN();
373             dirty();
374         }
375         case "strokecolor": value = JSU.N(Color.stringToColor(JSU.toString(value))); CHECKSET_INT(strokecolor); dirty();
376         case "textcolor":   value = JSU.N(Color.stringToColor(JSU.toString(value))); CHECKSET_INT(strokecolor); dirty();
377         case "shrink":      CHECKSET_FLAG(HSHRINK | VSHRINK); RECONSTRAIN();
378         case "hshrink":     CHECKSET_FLAG(HSHRINK); RECONSTRAIN();
379         case "vshrink":     CHECKSET_FLAG(VSHRINK); RECONSTRAIN();
380         case "path":        {
381             mesh = null;
382             path = new Path(JSU.toString(value));
383             float tx = -1 * Encode.longToFloat2(path.horizontalBounds(Affine.identity()));
384             float ty = -1 * Encode.longToFloat2(path.verticalBounds(Affine.identity()));
385             path.transform(Affine.translate(tx, ty), true);
386             REPLACE();
387             RECONSTRAIN();
388             dirty();
389             polygon = null;
390         }
391         case "clippath":        {
392             clippath = new Path(JSU.toString(value));
393             //float tx = -1 * Encode.longToFloat2(clippath.horizontalBounds(Affine.identity()));
394             //float ty = -1 * Encode.longToFloat2(clippath.verticalBounds(Affine.identity()));
395             //clippath.transform(Affine.translate(tx, ty), true);
396             REPLACE();
397             RECONSTRAIN();
398             dirty();
399             polygon = null;
400         }
401         case "transform":   {
402             transform = Affine.parse(JSU.toString(value));
403             transform.e = 0;
404             transform.f = 0;
405             if (getSurface() != null)  // FIXME
406                 getSurface().dirty(0, 0, getSurface().root.contentwidth, getSurface().root.contentheight);
407             REPLACE();
408             RECONSTRAIN(); dirty(); polygon = null;
409         }
410         case "width":       setWidth(JSU.toInt(value), JSU.toInt(value));
411         case "height":      setHeight(JSU.toInt(value), JSU.toInt(value));
412         case "flex":        flex = JSU.toFloat(value);
413         case "maxwidth":    setWidth(minwidth, JSU.toInt(value));
414         case "minwidth":    setWidth(JSU.toInt(value), maxwidth);
415         case "maxheight":   setHeight(minheight, JSU.toInt(value));
416         case "minheight":   setHeight(JSU.toInt(value), maxheight);
417         case "visible":     CHECKSET_FLAG(VISIBLE); RECONSTRAIN(); dirty();
418         case "cursor":      setCursor(JSU.toString(value));
419         case "fill":        setFill(value);
420         case "clip":        CHECKSET_FLAG(CLIP); if (parent == null) dirty(); else parent.dirty();
421         case "mouse":
422             int mousex = JSU.toInt(((JS)value).get(JSU.S("x")));
423             int mousey = JSU.toInt(((JS)value).get(JSU.S("y")));
424             getSurface()._mousex = (int)localToGlobalX(mousex);
425             getSurface()._mousey = (int)localToGlobalY(mousey);
426         case "axis":        {
427             String s = JSU.toString(value); 
428             if (s.equals("x")) { clear(YAXIS); set(XAXIS); }
429             else if (s.equals("y")) { clear(XAXIS); set(YAXIS); }
430             else if (s.equals("z")) { clear(XAXIS); clear(YAXIS); }
431             else JSU.warn("attempted to set axis property to invalid value: " + s);
432         }
433         case "Minimized": if (parent == null && getSurface() != null) getSurface().minimized = JSU.toBoolean(value);  // FEATURE
434         case "Maximized": if (parent == null && getSurface() != null) getSurface().maximized = JSU.toBoolean(value);  // FEATURE
435         case "Close":     if (parent == null && getSurface() != null) getSurface().dispose(true);
436         case "redirect":
437             for(Box cur = (Box)value; cur != null || cur == redirect; cur = cur.parent)
438                 if (cur == redirect) { redirect = (Box)value; return; }
439             JSU.error("redirect can only be set to a descendant of its current value");
440         case "fontsize": font = Font.getFont(font == null ? null : font.stream, JSU.toInt(value)); RECONSTRAIN(); dirty();
441         case "font":
442             if(!(value instanceof Fountain)) throw new JSExn("You can only put streams to the font property");
443             //FIXME: if (font == value) return;  // FIXME: unclone()
444             font = value == null ? null : Font.getFont((Fountain)value, font == null ? 10 : font.pointsize);
445             RECONSTRAIN();
446             dirty();
447         case "titlebar": if (getSurface()!=null) getSurface().setTitleBarText(JSU.toString(value)); super.put(name,value);
448         // FIXME: icon
449
450         case "Press1":        if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
451         case "Press2":        if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
452         case "Press3":        if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
453         case "Release1":      if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
454         case "Release2":      if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
455         case "Release3":      if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
456         case "Click1":        if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
457         case "Click2":        if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
458         case "Click3":        if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
459         case "DoubleClick1":  if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
460         case "DoubleClick2":  if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
461         case "DoubleClick3":  if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
462         case "KeyPressed":    if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
463         case "KeyReleased":   if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
464         case "Move":          if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
465         case "HScroll":       if (!test(STOP_UPWARD_PROPAGATION) && parent != null)
466             parent.putAndTriggerTraps(name, JSU.N(JSU.toFloat(value) * ((float)parent.fontSize()) / ((float)fontSize())));
467         case "VScroll":       if (!test(STOP_UPWARD_PROPAGATION) && parent != null)
468             parent.putAndTriggerTraps(name, JSU.N(JSU.toFloat(value) * ((float)parent.fontSize()) / ((float)fontSize())));
469
470         case "_Move":         propagateDownward(name, value, false);
471         case "_Press1":       propagateDownward(name, value, false);
472         case "_Press2":       propagateDownward(name, value, false);
473         case "_Press3":       propagateDownward(name, value, false);
474         case "_Release1":     propagateDownward(name, value, false);
475         case "_Release2":     propagateDownward(name, value, false);
476         case "_Release3":     propagateDownward(name, value, false);
477         case "_Click1":       propagateDownward(name, value, false);
478         case "_Click2":       propagateDownward(name, value, false);
479         case "_Click3":       propagateDownward(name, value, false);
480         case "_DoubleClick1": propagateDownward(name, value, false);
481         case "_DoubleClick2": propagateDownward(name, value, false);
482         case "_DoubleClick3": propagateDownward(name, value, false);
483         case "_KeyPressed":   propagateDownward(name, value, false);
484         case "_KeyReleased":  propagateDownward(name, value, false);
485         case "_HScroll":      propagateDownward(name, value, false);
486         case "_VScroll":      propagateDownward(name, value, false);
487
488         case "SizeChange":    return;
489         case "ChildChange":   return;
490         case "Enter":         return;
491         case "Leave":         return;
492
493         default:              super.put(name, value);
494         //#end
495     }
496
497     private void setCursor(String value) throws JSExn {
498         if (value == null) { clear(CURSOR); boxToCursor.remove(this); return; }
499         if (value.equals(boxToCursor.get(this))) return;
500         set(CURSOR);
501         boxToCursor.put(this, value);
502         Surface surface = getSurface();
503         if (surface == null) return;
504         String tempcursor = surface.cursor;
505         propagateDownward(null, null, false);
506         if (surface.cursor != tempcursor) surface.syncCursor();
507     }
508
509     private void setFill(JS value) throws JSExn {
510         if (value == null) {
511             if (texture == null && fillcolor == 0) return;
512             texture = null;
513             fillcolor = 0;
514         } else if (JSU.isString(value)) {
515             int newfillcolor = Color.stringToColor(JSU.toString(value));
516             if (newfillcolor == fillcolor) return;
517             fillcolor = newfillcolor;
518             texture = null;
519         } else {
520             Picture newtex = Picture.load((JS)value, this);
521             if (texture == newtex) return;
522             texture = newtex;
523             fillcolor = 0;
524             if (texture != null && texture.isLoaded) run(null);
525         }
526         dirty();
527     }
528
529     /**
530      *  Handles events which propagate down the box tree.  If obscured
531      *  is set, then we merely check for Enter/Leave.
532      */
533     private void propagateDownward(JS name_, JS value, boolean obscured) throws JSExn {
534
535         String name = JSU.toString(name_);
536         if (getSurface() == null) return;
537         int x = (int)globalToLocalX(getSurface()._mousex);
538         int y = (int)globalToLocalY(getSurface()._mousey);
539         boolean wasinside = test(MOUSEINSIDE);
540         boolean isinside = test(VISIBLE) && inside(x, y) && !obscured;
541         if (!wasinside && isinside) {
542             set(MOUSEINSIDE);
543             putAndTriggerTrapsAndCatchExceptions(JSU.S("Enter"), JSU.T);
544         }
545         if (isinside && test(CURSOR)) getSurface().cursor = (String)boxToCursor.get(this);
546         if (wasinside && !isinside) {
547             clear(MOUSEINSIDE);
548             putAndTriggerTrapsAndCatchExceptions(JSU.S("Leave"), JSU.T);
549         }
550
551         boolean found = false;
552         if (wasinside || isinside)
553             for(Box child = getChild(treeSize() - 1); child != null; child = child.prevSibling()) {
554                 boolean save_stop = child.test(STOP_UPWARD_PROPAGATION);
555                 JS value2 = value;
556                 if (name.equals("_HScroll") || name.equals("_VScroll"))
557                     value2 = JSU.N(JSU.toFloat(value) * ((float)child.fontSize()) / (float)fontSize());
558                 if (obscured /*|| !child.inside(x - child.x, y - child.y) FIXME FIXME */) {
559                     child.propagateDownward(name_, value2, true);
560                 } else try {
561                     found = true;
562                     child.clear(STOP_UPWARD_PROPAGATION);
563                     if (name != null) child.putAndTriggerTrapsAndCatchExceptions(name_, value2);
564                     else child.propagateDownward(name_, value2, obscured);
565                 } finally {
566                     if (save_stop) child.set(STOP_UPWARD_PROPAGATION); else child.clear(STOP_UPWARD_PROPAGATION);
567                 }
568                 /* FIXME FIXME
569                 if (child.inside(x - child.x, y - child.y))
570                     if (name != null && name.equals("_Move")) obscured = true;
571                     else break;
572  */
573             }
574
575         if (!obscured && !found)
576             if ("_Move".equals(name) || name.startsWith("_Release") || wasinside)
577                 if (name != null)
578                     putAndTriggerTrapsAndCatchExceptions(JSU.S(name.substring(1)), value);
579     }
580
581     /** figures out what box in this subtree of the Box owns the pixel at x,y relitave to the Surface */
582     public static Box whoIs(Box cur, int x, int y) {
583
584         if (cur.parent != null) throw new Error("whoIs may only be invoked on the root box of a surface");
585         int globalx = 0;
586         int globaly = 0;
587
588         // WARNING: this method is called from the event-queueing thread -- it may run concurrently with
589         // ANY part of Ibex, and is UNSYNCHRONIZED for performance reasons.  BE CAREFUL HERE.
590
591         if (!cur.test(VISIBLE)) return null;
592         if (!cur.inside(x - globalx, y - globaly)) return cur.parent == null ? cur : null;
593         OUTER: while(true) {
594             for(int i=cur.treeSize() - 1; i>=0; i--) {
595                 Box child = cur.getChild(i);
596                 if (child == null) continue;        // since this method is unsynchronized, we have to double-check
597                 globalx += child.transform.e;
598                 globaly += child.transform.f;
599                 if (child.test(VISIBLE) && child.inside(x - globalx, y - globaly)) { cur = child; continue OUTER; }
600                 globalx -= child.transform.e;
601                 globaly -= child.transform.f;
602             }
603             break;
604         }
605         return cur;
606     }
607
608
609     // Trivial Helper Methods (should be inlined) /////////////////////////////////////////
610
611     public final int fontSize() { return font == null ? DEFAULT_FONT.pointsize : font.pointsize; }
612     public Enumeration keys() { throw new Error("you cannot apply for..in to a " + this.getClass().getName()); }
613     public Box getRoot() { return parent == null ? this : parent.getRoot(); }
614     public Surface getSurface() { return Surface.fromBox(getRoot()); }
615     private final boolean packed() { return test(YAXIS) || test(XAXIS); }
616     Box nextPackedSibling() { Box b = nextSibling(); return b == null || (b.packed() && b.test(VISIBLE))?b:b.nextPackedSibling(); }
617     Box firstPackedChild() { Box b = getChild(0); return b == null || (b.packed() && b.test(VISIBLE))?b:b.nextPackedSibling(); }
618     public float globalToLocalX(float x) { return parent == null ? x : parent.globalToLocalX(x - transform.e); }
619     public float globalToLocalY(float y) { return parent == null ? y : parent.globalToLocalY(y - transform.f); }
620     public float localToGlobalX(float x) { return parent == null ? x : parent.globalToLocalX(x + transform.e); }
621     public float localToGlobalY(float y) { return parent == null ? y : parent.globalToLocalY(y + transform.f); }
622
623     static short min(short a, short b) { if (a<b) return a; else return b; }
624     static int min(int a, int b) { if (a<b) return a; else return b; }
625     static float min(float a, float b) { if (a<b) return a; else return b; }
626
627     static short max(short a, short b) { if (a>b) return a; else return b; }
628     static int max(int a, int b) { if (a>b) return a; else return b; }
629     static float max(float a, float b) { if (a>b) return a; else return b; }
630
631     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; }
632     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; }
633     static int bound(int a, int b, int c) { if (c < b) return c; if (a > b) return a; return b; }
634     final boolean inside(int x, int y) { return test(VISIBLE) && x >= 0 && y >= 0 && x < width && y < height; }
635
636     void set(int mask) { flags |= mask; }
637     void set(int mask, boolean setclear) { if (setclear) set(mask); else clear(mask); }
638     void clear(int mask) { flags &= ~mask; }
639     public boolean test(int mask) { return ((flags & mask) == mask); }
640     
641
642     // Tree Handling //////////////////////////////////////////////////////////////////////
643
644     public final int getIndexInParent() { return parent == null ? 0 : parent.indexNode(this); }
645     public final Box nextSibling() { return parent == null ? null : parent.getChild(parent.indexNode(this) + 1); }
646     public final Box prevSibling() { return parent == null ? null : parent.getChild(parent.indexNode(this) - 1); }
647     public final Box getChild(int i) {
648         if (i < 0) return null;
649         if (i >= treeSize()) return null;
650         return (Box)getNode(i);
651     }
652
653     // Tree Manipulation /////////////////////////////////////////////////////////////////////
654
655     public void removeSelf() {
656         if (parent != null) { parent.removeChild(parent.indexNode(this)); return; }
657         Surface surface = Surface.fromBox(this); 
658         if (surface != null) surface.dispose(true);
659     }
660
661     /** remove the i^th child */
662     public void removeChild(int i) {
663         Box b = getChild(i);
664         b.RECONSTRAIN();
665         b.dirty();
666         b.clear(MOUSEINSIDE);
667         deleteNode(i);
668         b.parent = null;
669         RECONSTRAIN();
670         putAndTriggerTrapsAndCatchExceptions(JSU.S("ChildChange"), b);
671     }
672     
673     public void put(int i, JS value) throws JSExn {
674         if (i < 0) return;
675             
676         if (value != null && !(value instanceof Box)) {
677             if (Log.on) JSU.warn("attempt to set a numerical property on a box to a non-box");
678             return;
679         }
680
681         if (redirect == null) {
682             if (value == null) putAndTriggerTrapsAndCatchExceptions(JSU.S("ChildChange"), getChild(i));
683             else JSU.warn("attempt to add/remove children to/from a node with a null redirect");
684
685         } else if (redirect != this) {
686             if (value != null) putAndTriggerTrapsAndCatchExceptions(JSU.S("ChildChange"), value);
687             redirect.put(i, value);
688             if (value == null) {
689                 Box b = (Box)redirect.get(JSU.N(i));
690                 if (b != null) putAndTriggerTrapsAndCatchExceptions(JSU.S("ChildChange"), b);
691             }
692
693         } else if (value == null) {
694             if (i < 0 || i > treeSize()) return;
695             Box b = getChild(i);
696             removeChild(i);
697             putAndTriggerTrapsAndCatchExceptions(JSU.S("ChildChange"), b);
698
699         } else {
700             Box b = (Box)value;
701
702             // check if box being moved is currently target of a redirect
703             for(Box cur = b.parent; cur != null; cur = cur.parent)
704                 if (cur.redirect == b) {
705                     if (Log.on) JSU.warn("attempt to move a box that is the target of a redirect");
706                     return;
707                 }
708
709             // check for recursive ancestor violation
710             for(Box cur = this; cur != null; cur = cur.parent)
711                 if (cur == b) {
712                     if (Log.on) JSU.warn("attempt to make a node a parent of its own ancestor");
713                     if (Log.on) Log.info(this, "box == " + this + "  ancestor == " + b);
714                     return;
715                 }
716
717             if (b.parent != null) b.parent.removeChild(b.parent.indexNode(b));
718             insertNode(i, b);
719             b.parent = this;
720             
721             // need both of these in case child was already uncalc'ed
722             b.RECONSTRAIN();
723             RECONSTRAIN();
724             
725             b.dirty(); 
726             putAndTriggerTrapsAndCatchExceptions(JSU.S("ChildChange"), b);
727         }
728     }
729     
730     public void putAndTriggerTrapsAndCatchExceptions(JS name, JS val) {
731         try {
732             putAndTriggerTraps(name, val);
733         } catch (JSExn e) {
734             JSU.log("caught js exception while putting to trap \""+ JSU.str(name)+"\"");
735             JSU.log(e);
736         } catch (Exception e) {
737             JSU.log("caught exception while putting to trap \""+ JSU.str(name)+"\"");
738             JSU.log(e);
739         }
740     }
741     
742     // BalancedTree functions
743     private void insertNode(int p, Box b) { if(bt == null) bt = new BalancedTree(); bt.insertNode(p,b); }
744     private int treeSize() { return bt == null ? 0 : bt.treeSize(); }
745     private int indexNode(Box b) { return bt == null ? -1 : bt.indexNode(b); }
746     private void deleteNode(int p) { bt.deleteNode(p); }
747     private Box getNode(int p) { return (Box)bt.getNode(p); }
748
749     // FIXME memory leak
750     final static JS.Method METHOD = new JS.Method();
751     final static Basket.Map boxToCursor = new Basket.Hash(500, 3);
752     final static JS SIZECHANGE = JSU.S("SizeChange");
753     final static Font DEFAULT_FONT = Font.getFont(Main.vera, 10);
754
755
756     // Flags //////////////////////////////////////////////////////////////////////
757
758     public static final int MOUSEINSIDE             = 0x00000001;
759     public static final int XAXIS                   = 0x00000002;
760     public static final int YAXIS                   = 0x00000004;
761     public static final int VISIBLE                 = 0x00000008;
762     public static final int VSHRINK                 = 0x00000010;
763     public static final int HSHRINK                 = 0x00000020;
764     public static final int RECONSTRAIN             = 0x00000040;
765     public static final int REPLACE                 = 0x00000080;
766
767     // if true, this box has cursor in the cursor hash; FEATURE: GC issues?
768     public static final int CURSOR                  = 0x00010000;
769     public static final int CLIP                    = 0x00020000;
770     public static final int STOP_UPWARD_PROPAGATION = 0x00040000;
771     public static final int MOVED                   = 0x00080000;
772
773
774 }