2002/03/21 01:19:33
[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 import java.io.*;
5 import java.net.*;
6 import java.util.*;
7 import org.xwt.util.*;
8 import org.mozilla.javascript.*;
9
10 /**
11  *  <p>
12  *  Encapsulates the data for a single XWT box as well as all layout
13  *  rendering logic.
14  *  </p>
15  *
16  *  <p>
17  *  This is the real meat of XWT. Part of its monolithic design is for
18  *  performance reasons: deep inheritance heirarchies are slow, and
19  *  neither javago nor GCJ can inline across class boundaries.
20  *  </p>
21  *
22  *  <p>The rendering process consists of two phases:</p>
23  *
24  *  <ol><li> <b>Prerendering pipeline</b>: a set of methods that
25  *           traverse the tree (DFS, postorder) immediately before
26  *           rendering. These methods calculate the appropriate size
27  *           and position for all boxes. If no changes requiring a
28  *           re-prerender have been made to a box or any of its
29  *           descendants, <tt>needs_prerender</tt> will be false, and the box
30  *           and its descendants will be skipped.
31  *
32  *      <li> <b>Rendering pipeline</b>: a second set of methods that
33  *           traverses the tree (DFS, preorder) and renders each Box
34  *           onto the associated Surface. The render() method takes a
35  *           region (x,y,w,h) as an argument, and will only render
36  *           onto pixels within that region. Boxes which lie
37  *           completely outside that region will be skipped.
38  *  </ol>
39  *
40  *  <p>
41  *  Either of these two phases may <i>abort</i> at any time by setting
42  *  <tt>surface.abort</tt> to true. Currently, there are two reasons
43  *  for aborting: a <tt>SizeChange</tt> or <tt>PosChange</tt> was
44  *  triggered in the prerender phase (which ran scripts which modified
45  *  the boxtree's composition, requiring another prerender pass), or
46  *  else the user resized the surface. In either case, the
47  *  [pre]rendering process is halted as soon as possible and
48  *  re-started from the beginning.
49  *  </p>
50  *
51  *  <p>Why are these done as seperate passes over the box tree?</p>
52  * 
53  *  <ol><li> Sometimes we need to make several trips through
54  *           <tt>prerender()</tt?, as a result of <tt>SizeChange</tt>
55  *           or <tt>PosChange</tt>. Calling <tt>prerender()</tt> is
56  *           cheap; calling <tt>render()</tt> is expensive.
57  *
58  *      <li> Even if no <tt>SizeChange</tt> or <tt>PosChange</tt> traps are
59  *           triggered, updates to the size and position of boxes in
60  *           the prerender phase can cause additional regions to be
61  *           added to the dirty list. If the prerender and render
62  *           passes were integrated, this might cause some screen
63  *           regions to be painted twice (or more) in a single pass,
64  *           which hurts performance.
65  *  </ol>
66  *
67  *  <p>
68  *  A box's <tt>_cmin_*</tt> variables hold the minimum possible
69  *  dimensions of this box, taking into account the size of its
70  *  children (and their children). The cmin variables must be kept in
71  *  sync with its other geometric properties and the geometric
72  *  properties of its children at all times -- they are not
73  *  periodically recomputed during the [pre]rendering process, as size
74  *  and pos are. If any data changes which might invalidate the cmin,
75  *  the method <tt>sync_cmin_to_children()</tt> must be invoked
76  *  immediately.
77  *  </p>
78  *
79  *  <p>
80  *  A note on coordinates: the Box class represents regions
81  *  internally as x,y,w,h tuples, even though the DoubleBuffer class
82  *  uses x1,y1,x2,y2 tuples.
83  * </p>
84  */
85 public final class Box extends JSObject {
86
87
88     // Static Data //////////////////////////////////////////////////////////////
89
90     /** a pool of one-element Object[]'s */
91     private static Queue singleObjects = new Queue(100);
92
93     /** caches images, keyed on resource name or url */
94     public static Hash pictureCache = new Hash();
95
96     /** cache of border objects */
97     static Hash bordercache = new Hash();
98
99     /** stores image names, keyed on image object */
100     static Hash imageToNameMap = new Hash();
101
102     /** the empty object, used for get-traps */
103     private static Object[] emptyobj = new Object[] { };
104
105
106     // Instance Data: Templates ////////////////////////////////////////////////////////
107
108     /** the unresolved name of the first template applied to this node [ignoring preapply's], or null if this template was specified anonymously */
109     String templatename = null;
110
111     /** the importlist which was used to resolve <tt>templatename</tt>, or null if this template was specified anonymously */
112     String[] importlist = Template.defaultImportList;
113
114     /** the template instance that resulted from resolving <tt>templatename</tt> using <tt>importlist</tt>, or the anonymous template applied */
115     Template template = null;
116
117
118     // Instance Data: Geometry ////////////////////////////////////////////////////////
119
120     /** The number of elements in the geom array */
121     public static final int NUMINTS = 10;
122
123     /** The maximum <i>defined</i> width and height of this box */
124     public static final int dmax = 0;     
125     private short _dmax_0 = 0;
126     private short _dmax_1 = 0;
127     public final short dmax(int axis) { return axis == 0 ? _dmax_0 : _dmax_1; }
128
129     /** The minimum <i>defined</i> width and height of this box */
130     public static final int dmin = 1;     
131     private short _dmin_0 = 0;
132     private short _dmin_1 = 0;
133     public final short dmin(int axis) { return axis == 0 ? _dmin_0 : _dmin_1; }
134     
135     /** The minimum <i>calculated</i> width and height of this box -- unlike dmin, this takes childrens' sizes into account */
136     public static final int cmin = 2;     
137     private short _cmin_0 = 0;
138     private short _cmin_1 = 0;
139     public final short cmin(int axis) { return axis == 0 ? _cmin_0 : _cmin_1; }
140
141     /** The position of this box, relitave to the parent */
142     public static final int abs = 3;      
143     private short _abs_0 = 0;
144     private short _abs_1 = 0;
145     public final short abs(int axis) { return axis == 0 ? _abs_0 : _abs_1; }
146
147     /** The absolute position of this box (ie relitave to the root); set by the parent */
148     public static final int pos = 4;      
149     private short _pos_0 = 0;
150     private short _pos_1 = 0;
151     public final short pos(int axis) { return axis == 0 ? _pos_0 : _pos_1; }
152
153     /** The actual size of this box; set by the parent. */
154     public static final int size = 5;     
155     short _size_0 = 0;
156     short _size_1 = 0;
157     public final short size(int axis) { return axis == 0 ? _size_0 : _size_1; }
158
159     /** The old actual absolute position of this box (ie relitave to the root) */
160     public static final int oldpos = 6;   
161     private short _oldpos_0 = 0;
162     private short _oldpos_1 = 0;
163     public final short oldpos(int axis) { return axis == 0 ? _oldpos_0 : _oldpos_1; }
164
165     /** The old actual size of this box */
166     public static final int oldsize = 7;  
167     private short _oldsize_0 = 0;
168     private short _oldsize_1 = 0;
169     public final short oldsize(int axis) { return axis == 0 ? _oldsize_0 : _oldsize_1; }
170
171     /** The padding along each edge for this box */
172     public static final int pad = 8;      
173     private short _pad_0 = 0;
174     private short _pad_1 = 0;
175     public final short pad(int axis) { return axis == 0 ? _pad_0 : _pad_1; }
176
177     /** The dimensions of the text in this box */
178     public static final int textdim = 9;
179     private short _textdim_0 = 0;
180     private short _textdim_1 = 0;
181     public final short textdim(int axis) { return axis == 0 ? _textdim_0 : _textdim_1; }
182
183
184     // Instance Data /////////////////////////////////////////////////////////////////
185
186     /** This box's mouseinside property, as defined in the reference */
187     boolean mouseinside = false;
188
189     /** If redirect is enabled, this holds the Box redirected to */
190     Box redirect = this;
191
192     /** the Box's font -- you must call textupdate() after changing this */
193     String font = Platform.getDefaultFont();
194
195     /** The surface for us to render on; null if none; INVARIANT: surface == getParent().surface */
196     Surface surface = null;
197
198     /** Our alignment: top/left == -1, center == 0, bottom/right == +1 */
199     byte align = 0;
200
201     /** Our background image; to set this, use setImage() */
202     public Picture image;
203
204     /** The flex for this box */
205     int flex = 1;
206
207     /** The orientation, horizontal == 0, vertical == 1 */
208     byte o = 0;
209
210     /** The opposite of the orientation */
211     byte xo = 1;
212
213     /** The id of this Box */
214     public String id = "";
215
216     /** The text of this Box -- you must call textupdate() after changing this */
217     String text = "";
218
219     /** The color of the text in this Box in 00RRGGBB form -- default is black */
220     int textcolor = 0xFF000000;
221
222     /** The background color of this box in AARRGGBB form -- default is clear; alpha is all-or-nothing */
223     int color = 0x00000000;
224
225     /** Holds four "strip images" -- 0=top, 1=bottom, 2=left, 3=right, 4=all */
226     Picture[] border = null;
227         
228     /**
229      *  The dirty() method walks up the tree, clipping the region being dirtied to each parent -- if this value is less than or
230      *  equal to surface.dirtiedTimeStamp, it means that the entire screen region covered by this box has been dirtied, so dirty()'s on
231      *  children can short-circuit.
232      */
233     int dirtiedTimeStamp = 0;
234
235     /** true iff the box's background image should be tiled */
236     boolean tile = false;
237
238     /** True iff the Box is invisible */
239     public boolean invisible = false;
240
241     /** If true, the Box will force its own size to the natural size of its background image */
242     boolean sizetoimage = false;
243
244     /** If true, the box will shrink to the smallest vertical size possible */
245     boolean vshrink = false;
246
247     /** If true, the box will shrink to the smallest horizontal size possible */
248     boolean hshrink = false;
249
250     /** If true, the box will be positioned absolutely */
251     boolean absolute = false;
252
253     /** True iff the Box must be run through the prerender() pipeline before render()ing;<br>
254      *  INVARIANT: if (needs_prerender) then getParent().needs_prerender. **/
255     boolean needs_prerender = true;
256
257     /** The cursor for this Box -- only meaningful on the root Box */
258     public String cursor = null;
259
260     /** Any traps placed on this Box */
261     public Hash traps = null;
262
263
264     // Instance Data: IndexOf  ////////////////////////////////////////////////////////////
265
266     /** The indexof() Function; created lazily */
267     public Function indexof = null;
268     public Function indexof() {
269         if (indexof == null) indexof = new IndexOf();
270         return indexof;
271     }
272
273     /** a trivial private class to serve as the box.indexof function object */
274     private class IndexOf extends JSObject implements Function {
275         public IndexOf() { this.setSeal(true); }
276         public Scriptable construct(Context cx, Scriptable scope, java.lang.Object[] args) { return null; }
277         public Object call(Context cx, Scriptable scope, Scriptable thisObj, java.lang.Object[] args) throws JavaScriptException {
278             if (args == null || args.length != 1 || args[0] == null || !(args[0] instanceof Box)) return new Integer(-1);
279             Box b = (Box)args[0];
280             if (b.getParent() != Box.this) {
281                 if (redirect == null || redirect == Box.this) return new Integer(-1);
282                 return Box.this.redirect.indexof().call(cx, scope, thisObj, args);
283             }
284             return new Integer(b.getIndexInParent());
285         }
286     }
287
288
289     // Methods which enforce/preserve invariants ////////////////////////////////////////////
290
291     /** This method MUST be used to change geometry values -- it ensures that certain invariants are preserved. */
292     public final void set(int which, int axis, int newvalue) { set(which, axis, (short)newvalue); }
293     public final void set(int which, int axis, short newvalue) {
294
295         // if this Box is the root of the Surface, notify the Surface of size changes
296         if (getParent() == null && surface != null && which == size)
297             surface._setSize(axis == 0 ? newvalue : size(0), axis == 1 ? newvalue : size(1));
298
299         switch(which) {
300         case dmin: if (dmin(axis) == newvalue) return; if (axis == 0) _dmin_0 = newvalue; else _dmin_1 = newvalue; break;
301         case dmax: if (dmax(axis) == newvalue) return; if (axis == 0) _dmax_0 = newvalue; else _dmax_1 = newvalue; break;
302         case cmin: if (cmin(axis) == newvalue) return; if (axis == 0) _cmin_0 = newvalue; else _cmin_1 = newvalue; break;
303         case abs: if (abs(axis) == newvalue) return; if (axis == 0) _abs_0 = newvalue; else _abs_1 = newvalue; break;
304         case pos: if (pos(axis) == newvalue) return; if (axis == 0) _pos_0 = newvalue; else _pos_1 = newvalue; break;
305         case size: if (size(axis) == newvalue) return; if (axis == 0) _size_0 = newvalue; else _size_1 = newvalue; break;
306         case oldpos: if (oldpos(axis) == newvalue) return; if (axis == 0) _oldpos_0 = newvalue; else _oldpos_1 = newvalue; break;
307         case oldsize: if (oldsize(axis) == newvalue) return; if (axis == 0) _oldsize_0 = newvalue; else _oldsize_1 = newvalue; break;
308         case pad: if (pad(axis) == newvalue) return; if (axis == 0) _pad_0 = newvalue; else _pad_1 = newvalue; break;
309         case textdim: if (textdim(axis) == newvalue) return; if (axis == 0) _textdim_0 = newvalue; else _textdim_1 = newvalue; break;
310         default: return;
311         }
312
313         // size must always agree with dmin/dmax
314         if (which == dmin) set(size, axis, max(size(axis), newvalue));
315         if (which == dmax) set(size, axis, min(size(axis), newvalue));
316
317         // keep obedience to shrink directives
318         if (which == cmin || which == textdim || which == pad || which == dmin)
319             if ((hshrink && axis == 0) || (vshrink && axis == 1))
320                 set(dmax, axis, max(cmin(axis), (textdim(axis) + 2 * pad(axis)), dmin(axis)));
321
322         // keep cmin in line with dmin/dmax/textdim
323         if (which == dmax || which == dmin || which == textdim || which == pad || which == cmin)
324             set(cmin, axis,
325                 max(
326                     min(cmin(axis), dmax(axis)),
327                     dmin(axis),
328                     min(dmax(axis), textdim(axis) + 2 * pad(axis))
329                     )
330                 );
331         
332         // if the pad changes, update cmin
333         if (which == pad) sync_cmin_to_children();
334
335         // if the cmin changes, we need to be re-prerendered
336         if (which == cmin) mark_for_prerender(); 
337
338         // if the absolute position of a box changes, its parent needs to be re-prerendered (to update the child's position)
339         if (which == abs && getParent() != null) getParent().mark_for_prerender();
340
341         // if our cmin changes, then our parent's needs to be recalculated
342         if (getParent() != null && which == cmin) {
343             mark_for_prerender();
344             getParent().sync_cmin_to_children();
345         }
346
347     }
348
349     /** Marks this node and all its ancestors so that they will be prerender()ed */
350     public final void mark_for_prerender() {
351         if (needs_prerender) return;
352         needs_prerender = true;
353         if (getParent() != null) getParent().mark_for_prerender();
354     }
355
356     /** Ensures that cmin is in sync with the cmin's of our children. This should be called whenever a child is added or
357      *  removed, as well as when our pad is changed. */
358     final void sync_cmin_to_children() {
359         short co = (short)(2 * pad(o));
360         short cxo = (short)(2 * pad(xo));
361         
362         for(Box bt = getChild(0); bt != null; bt = bt.nextSibling()) {
363             if (bt.invisible || bt.absolute) continue;
364             co += bt.cmin(o);
365             cxo = (short)max(bt.cmin(xo) + 2 * pad(xo), cxo);
366         }
367         
368         set(cmin, o, co);
369         set(cmin, xo, cxo);
370     }
371
372     /** must be called after changes to <tt>image</tt> or <tt>border</tt> if sizetoimage is true */
373     public void syncSizeToImage() {
374         set(dmax, 0, (image == null ? 0 : image.getWidth()) + (border == null ? 0 : border[2].getWidth()) * 2);
375         set(dmax, 1, (image == null ? 0 : image.getHeight()) + (border == null ? 0 : border[0].getHeight()) * 2);
376         set(dmin, 0, (image == null ? 0 : image.getWidth()) + (border == null ? 0 : border[2].getWidth()) * 2);
377         set(dmin, 1, (image == null ? 0 : image.getHeight()) + (border == null ? 0 : border[0].getHeight()) * 2);
378     }
379
380     /** This must be called when font or text is changed */
381     void textupdate() {
382         if (text.equals("")) {
383             set(textdim, 0, 0);
384             set(textdim, 1, 0);
385         } else {
386             XWF xwf = XWF.getXWF(font);
387             if (xwf == null) {
388                 set(textdim, 0, Platform.stringWidth(font, text));
389                 set(textdim, 1, (Platform.getMaxAscent(font) + Platform.getMaxDescent(font)));
390             } else {
391                 set(textdim, 0, xwf.stringWidth(text));
392                 set(textdim, 1, (xwf.getMaxAscent() + xwf.getMaxDescent()));
393             }
394         }
395     }
396
397
398     // Instance Methods /////////////////////////////////////////////////////////////////////
399
400     /** Changes the Surface that this Box draws on. */    
401     protected void setSurface(Surface newSurface) {
402         if (surface == newSurface) return;
403         mouseinside = false;
404         if ((is_trapped("KeyPressed") || is_trapped("KeyReleased")) && surface != null)
405             surface.keywatchers.removeElement(this);
406         surface = newSurface;
407         if ((is_trapped("KeyPressed") || is_trapped("KeyReleased")) && surface != null)
408             surface.keywatchers.addElement(this);
409         for(Box i = getChild(0); i != null; i = i.nextSibling()) i.setSurface(surface);
410         if (numChildren() == 0) mark_for_prerender();
411     }
412
413     /** loads the image described by string str, possibly blocking for a network load */
414     private static ImageDecoder getImage(String str) {
415         ImageDecoder ret = null;
416         boolean ispng = false;
417
418         if (str.indexOf(':') == -1) {
419             String s = str;
420             byte[] b = Resources.getResource(Resources.resolve(s + ".png", null));
421             if (b == null) return null;
422             return PNG.decode(new ByteArrayInputStream(b), str);
423             
424         } else {
425             Thread thread = Thread.currentThread();
426             if (!(thread instanceof ThreadMessage)) {
427                 if (Log.on) Log.log(Box.class, "HTTP images can not be loaded from the foreground thread");
428                 return null;
429             }
430             ThreadMessage mythread = (ThreadMessage)thread;
431             mythread.setPriority(Thread.MIN_PRIORITY);
432             mythread.done.release();
433             try {
434                 if (str.endsWith(".png")) ret = PNG.decode(Platform.urlToInputStream(new URL(str)), str);
435                 else ret = GIF.decode(Platform.urlToInputStream(new URL(str)), str);
436                 return ret;
437
438             } catch (IOException e) {
439                 if (Log.on) Log.log(Box.class, "error while trying to load an image from " + str);
440                 if (Log.on) Log.log(Box.class, e);
441                 return null;
442
443             } finally {
444                 MessageQueue.add(mythread);
445                 mythread.setPriority(Thread.NORM_PRIORITY);
446                 mythread.go.block();
447             }
448         }
449     }
450
451     /** gets an Image using getImage(), adds it to the cache, and creates a Picture from it */
452     public static Picture getPicture(String os) {
453         Picture ret = null;
454         ret = (Picture)pictureCache.get(os);
455         if (ret != null) return ret;
456         ImageDecoder id = getImage(os);
457         if (id == null) return null;
458         ret = Platform.createPicture(id);
459         pictureCache.put(os, ret);
460         imageToNameMap.put(ret, os);
461         return ret;
462     }
463
464     /** Sets the image; argument should be a fully qualified s name or an URL */
465     void setImage(String s) {
466         if ((s == null && image == null) || (s != null && image != null && s.equals(imageToNameMap.get(image)))) return;
467         if (s == null || s.equals("")) {
468             image = null;
469             if (sizetoimage) syncSizeToImage();
470             dirty();
471         } else {
472             image = getPicture(s);
473             if (image == null) {
474                 if (Log.on) Log.log(Box.class, "unable to load image " + s + " at " +
475                                     Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine);
476                 return;
477             }
478             if (sizetoimage) syncSizeToImage();
479             dirty();
480         }
481     }
482     
483     /** Sets the border; argument should be a fully qualified resource name or an URL */
484     void setBorder(String s) {
485         if ((s == null && border == null) || (s != null && border != null && s.equals(imageToNameMap.get(border)))) return;
486         if (s == null || s.equals("")) {
487             border = null;
488             if (sizetoimage) syncSizeToImage();
489             dirty();
490
491         } else {
492             border = (Picture[])bordercache.get(s);
493             if (border == null) {
494                 ImageDecoder id = getImage(s);
495                 if (id == null) {
496                     if (Log.on) Log.log(this, "unable to load border image " + s + " at " +
497                                     Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine);
498                     return;
499                 }
500                 int[] data = id.getData();
501                 int w = id.getWidth();
502                 int h = id.getHeight();
503                 int hpad = w / 2;
504                 int vpad = h / 2;
505
506                 int[][] dat = new int[4][];
507                 dat[0] = new int[100 * vpad];
508                 dat[1] = new int[100 * vpad];
509                 dat[2] = new int[100 * hpad];
510                 dat[3] = new int[100 * hpad];
511
512                 for(int i=0; i<100; i++) {
513                     for(int j=0; j<vpad; j++) {
514                         dat[0][i + j * 100] = data[hpad + j * w];
515                         dat[1][i + (vpad - j - 1) * 100] = data[hpad + (h - j - 1) * w];
516                     }
517                     for(int j=0; j<hpad; j++) {
518                         dat[2][j + i * hpad] = data[j + vpad * w];
519                         dat[3][hpad - j - 1 + i * hpad] = data[w - j - 1 + vpad * w];
520                     }
521                 }
522
523                 border = new Picture[5];
524                 border[0] = Platform.createPicture(dat[0], 100, vpad);
525                 border[1] = Platform.createPicture(dat[1], 100, vpad);
526                 border[2] = Platform.createPicture(dat[2], hpad, 100);
527                 border[3] = Platform.createPicture(dat[3], hpad, 100);
528                 border[4] = (Picture)pictureCache.get(s);
529                 if (border[4] == null) {
530                     border[4] = Platform.createPicture(data, w, h);
531                     pictureCache.put(s, border[4]);
532                     imageToNameMap.put(border[4], s);
533                 }
534                 bordercache.put(s, border);
535             }
536             if (sizetoimage) syncSizeToImage();
537             dirty();
538         }
539     }
540
541     /** returns true if the property has a trap on it */
542     boolean is_trapped(String property) {
543         if (traps == null) {
544             return false;
545         } else {
546             Object gc = traps.get(property);
547             return (gc != null &&
548                     !(gc instanceof org.mozilla.javascript.Undefined) &&
549                     gc != org.mozilla.javascript.Scriptable.NOT_FOUND);
550         }
551     }
552     
553     /** Adds the node's current actual geometry to the Surface's dirty list */
554     void dirty() {
555         dirty(pos(0), pos(1), size(0), size(1));
556         if (surface != null) dirtiedTimeStamp = surface.dirtiedTimeStamp + 1;
557     }
558
559     /** Adds the intersection of (x,y,w,h) and the node's current actual geometry to the Surface's dirty list */
560     final void dirty(int x, int y, int w, int h) {
561         for(Box cur = this; cur != null; cur = cur.getParent()) {
562             if (surface != null && cur.dirtiedTimeStamp > surface.dirtiedTimeStamp && cur.dirtiedTimeStamp < Integer.MAX_VALUE - 1) return;
563             w = min(x + w, cur.pos(0) + cur.size(0)) - max(x, cur.pos(0));
564             h = min(y + h, cur.pos(1) + cur.size(1)) - max(y, cur.pos(1));
565             x = max(x, cur.pos(0));
566             y = max(y, cur.pos(1));
567             if (w <= 0 || h <= 0) return;
568         }
569         if (surface != null) surface.dirty(x, y, w, h);
570     }
571
572     /**
573      *  Given an old and new mouse position, this will update <tt>mouseinside</tt> and check
574      *  to see if this node requires any Enter, Leave, or Move notifications.
575      *
576      *  @param forceleave set to true by the box's parent if the mouse is inside an older
577      *                    sibling, which is covering up this box.
578      */
579     void Move(int oldmousex, int oldmousey, int mousex, int mousey) { Move(oldmousex, oldmousey, mousex, mousey, false); }
580     void Move(int oldmousex, int oldmousey, int mousex, int mousey, boolean forceleave) {
581
582         boolean wasinside = mouseinside;
583         boolean isinside = !invisible && inside(mousex, mousey) && !forceleave;
584         mouseinside = isinside;
585
586         if (!wasinside && !isinside) return;
587         
588         if (!wasinside && isinside && is_trapped("Enter")) put("Enter", null, this);
589         else if (wasinside && !isinside && is_trapped("Leave")) put("Leave", null, this);
590         else if (wasinside && isinside && (mousex != oldmousex || mousey != oldmousey) && is_trapped("Move")) put("Move", null, this);
591
592         if (isinside && cursor != null && surface != null) surface.cursor = cursor;
593
594         // if the mouse has moved into our padding region, it is considered 'outside' all our children
595         if (!(mousex >= pos(0) + pad(0) && mousey >= pos(1) + pad(1) &&
596               mousex < pos(0) + size(0) - pad(0) && mousey < pos(1) + size(1) + pad(1))) forceleave = true;
597
598         for(Box b = getChild(numChildren() - 1); b != null; b = b.prevSibling()) {
599             b.Move(oldmousex, oldmousey, mousex, mousey, forceleave);
600             if (b.inside(mousex, mousey)) forceleave = true;
601         }
602     }
603
604     /** creates a new box from an anonymous template; <tt>ids</tt> is passed through to Template.apply() */
605     Box(Template anonymous, Vec pboxes, Vec ptemplates) {
606         super(true);
607         set(dmax, 0, Short.MAX_VALUE);
608         set(dmax, 1, Short.MAX_VALUE);
609         template = anonymous;
610         template.apply(this, pboxes, ptemplates);
611         templatename = null;
612         importlist = null;
613     }
614
615     /** creates a new box from an unresolved templatename and an importlist; use "box" for an untemplatized box */
616     public Box(String templatename, String[] importlist) {
617         super(true);
618         set(dmax, 0, Short.MAX_VALUE);
619         set(dmax, 1, Short.MAX_VALUE);
620         this.importlist = importlist;
621         template = "box".equals(templatename) ? null : Template.getTemplate(templatename, importlist);
622         this.templatename = templatename;
623         if (template != null) {
624             template.apply(this, null, null);
625             if (redirect == this && !"self".equals(template.redirect)) redirect = null;
626         }
627     }
628     
629
630     // Prerendering Pipeline ///////////////////////////////////////////////////////////////
631
632     /** Checks if the Box's size has changed, dirties it if necessary, and makes sure childrens' sizes are up to date */
633     void prerender() {
634
635         if (getParent() == null) {
636             set(pos, 0, 0);
637             set(pos, 1, 0);
638         }
639
640         if (pos(0) != oldpos(0) || pos(1) != oldpos(1) || size(0) != oldsize(0) || size(1) != oldsize(1)) {
641             needs_prerender = true;
642             check_geometry_changes();
643         }
644
645         if (!needs_prerender) return; 
646         needs_prerender = false;
647         if (numChildren() == 0) return;
648
649         int sumchildren = sizeChildren();
650         positionChildren(pos(o) + pad(o) + max(0, size(o) - 2 * pad(o) - sumchildren) / 2);
651
652         for(Box b = getChild(0); b != null; b = b.nextSibling()) {
653             b.prerender();
654             if (surface.abort) {
655                 mark_for_prerender();
656                 return;
657             }
658         }
659     }
660
661     /** if the size or position of a box has changed, dirty() the appropriate regions and possibly send Enter/Leave/SizeChange/PosChange */
662     private void check_geometry_changes() {
663
664         // FASTPATH: if we haven't moved position (just changed size), and we're not a stretched image:
665         if (oldpos(0) == pos(0) && oldpos(1) == pos(1) && (image == null || tile)) {
666             
667             int bw = border == null ? 0 : border[2].getWidth();
668             int bh = border == null ? 0 : border[0].getHeight();
669             
670             // dirty only the *change* in the area we cover, both on ourselves and on our parent
671             for(Box cur = this; cur != null && (cur == this || cur == this.getParent()); cur = cur.getParent()) {
672                 cur.dirty(pos(0) + min(oldsize(0) - bw, size(0) - bw),
673                           pos(1),
674                           Math.abs(oldsize(0) - size(0)) + bw,
675                           max(oldsize(1), size(1)));
676                 cur.dirty(pos(0),
677                           pos(1) + min(oldsize(1) - bh, size(1) - bh),
678                           max(oldsize(0), size(0)),
679                           Math.abs(oldsize(1) - size(1)) + bh);
680             }
681             
682         // SLOWPATH: dirty ourselves, as well as our former position on our parent
683         } else {
684             dirty();
685             if (getParent() != null) getParent().dirty(oldpos(0), oldpos(1), oldsize(0), oldsize(1));
686             
687         }
688         
689         boolean sizechange = false;
690         boolean poschange = false;
691         if ((oldsize(0) != size(0) || oldsize(1) != size(1)) && is_trapped("SizeChange")) sizechange = true;
692         if ((oldpos(0) != pos(0) || oldpos(1) != pos(1)) && is_trapped("PosChange")) poschange = true;
693         
694         set(oldsize, 0, size(0));
695         set(oldsize, 1, size(1));
696         set(oldpos, 0, pos(0));
697         set(oldpos, 1, pos(1));
698
699         if (sizechange || poschange)
700             if (surface.sizePosChangesSinceLastRender++ > 500) {
701                 if (Log.on) Log.log(this, "Warning, more than 500 SizeChange/PosChange traps triggered since last complete render");
702                 try {
703                     Trap t = sizechange ? Trap.getTrap(this, "SizeChange") : Trap.getTrap(this, "PosChange");
704                     InterpretedFunction f = (InterpretedFunction)t.f;
705                     if (Log.on) Log.log(this, "Current trap is at " + f.getSourceName() + ":" + f.getLineNumbers()[0]);
706                 } catch (Throwable t) { }
707             }
708
709         if (sizechange) put("SizeChange", null, Boolean.TRUE);
710         if (poschange) put("PosChange", null, Boolean.TRUE);
711         if (sizechange || poschange) {
712             surface.abort = true;
713             return;
714         }
715     }
716     
717
718     /** sets our childrens' sizes */
719     int sizeChildren() {
720
721         // Set sizes along minor axis, as well as sizes for absolute-positioned children
722         for(Box bt = getChild(0); bt != null; bt = bt.nextSibling()) {
723             if (bt.invisible) continue;
724             if (bt.absolute) {
725                 bt.set(size, o, max(bt.cmin(o), min(size(o) - bt.abs(o) - pad(o), bt.dmax(o))));
726                 bt.set(size, xo, max(bt.cmin(xo), min(size(xo) - bt.abs(xo) - pad(xo), bt.dmax(xo))));
727             } else if (xo == 0 && bt.hshrink || xo == 1 && bt.vshrink) {
728                 bt.set(size, xo, bt.cmin(xo));
729             } else {
730                 bt.set(size, xo, bound(bt.cmin(xo), size(xo) - 2 * pad(xo), bt.dmax(xo)));
731             }
732         }
733
734         // the ideal size of our children, along our own major axis
735         int goal = (o == 0 && hshrink) || (o == 1 && vshrink) ? cmin(o) - 2 * pad(o) : size(o) - 2 * pad(o);
736
737         // the current sum of the sizes of all children
738         int total = 0;
739
740         // each box is set to bound(box.cmin, box.flex * factor, box.dmax)
741         int factor = 0;
742
743         // Algorithm: we set the sizes of all boxes to bound(cmin, flex * factor, dmax) for some global value
744         //            'factor'. We figure out what 'factor' should be by starting at zero, and slowly increasing
745         //            it. After each pass, 'factor' is set to the smaller of two values: ((goal - total) /
746         //            remaining_flex) or the next largest value of factor which will cause some box to exceed its
747         //            cmin or dmax (thereby changing remaining_flex).
748
749         while(true) {
750             total = 0;
751
752             // the sum of the flexes of all boxes which are not pegged at either cmin or dmax
753             int remaining_flex = 0;
754
755             // this is the next largest value of factor at which some box exceeds its cmin/dmax
756             int nextjoint = Integer.MAX_VALUE;
757             
758             for(Box bt = getChild(0); bt != null; bt = bt.nextSibling()) {
759                 if (bt.absolute || bt.invisible) continue;
760
761                 bt.set(size, o, bound(bt.cmin(o), factor * bt.flex, bt.dmax(o)));
762                 total += bt.size(o);
763
764                 if (factor * bt.flex < bt.cmin(o) && bt.size(o) == bt.cmin(o)) {
765                     nextjoint = min(nextjoint, divide_round_up(bt.cmin(o), bt.flex));
766
767                 } else if (bt.size(o) < bt.dmax(o)) {
768                     remaining_flex += bt.flex;
769                     nextjoint = min(nextjoint, divide_round_up(bt.dmax(o), bt.flex));
770
771                 }
772             }
773
774             if (remaining_flex == 0) {
775                 if (nextjoint <= factor) break;
776                 factor = nextjoint;
777             } else {
778                 factor = min((goal - total + factor * remaining_flex) / remaining_flex, nextjoint);
779             }
780
781             if (goal - total <= remaining_flex) break;
782         }
783
784         // arbitrarily distribute out any leftovers resulting from rounding errors
785         int last = 0;
786         while(goal > total && total != last) {
787             last = total;
788             for(Box bt = getChild(0); bt != null; bt = bt.nextSibling()) {
789                 int newsize = bound(bt.cmin(o), bt.size(o) + 1, bt.dmax(o));
790                 total += newsize - bt.size(o);
791                 bt.set(size, o, newsize);
792             }
793         }
794
795         return total;
796     }
797     
798     /** positions this Box's children; cur is the starting position along this' major axis */
799     void positionChildren(int cur) {
800         for(Box bt = getChild(0); bt != null; bt = bt.nextSibling()) {
801             if (bt.invisible) continue;
802             if (bt.absolute) {
803                 bt.set(pos, 0, pos(0) + bt.abs(0));
804                 bt.set(pos, 1, pos(1) + bt.abs(1));
805             } else {
806                 bt.set(pos, xo, pos(xo) + pad(xo) + max(0, ((size(xo) - 2 * pad(xo) - bt.size(xo)) * (bt.align + 1)) / 2));
807                 bt.set(pos, o, cur);
808                 bt.set(abs, 0, bt.pos(0) - pos(0));
809                 bt.set(abs, 1, bt.pos(1) - pos(1));
810                 cur += bt.size(o);
811             }
812         }
813     }
814
815
816     // Rendering Pipeline /////////////////////////////////////////////////////////////////////
817
818     /** Renders self and children within the specified region. All rendering operations are clipped to xIn,yIn,wIn,hIn */
819     void render(int xIn, int yIn, int wIn, int hIn, DoubleBuffer buf) {
820         dirtiedTimeStamp = surface.dirtiedTimeStamp;
821         if (surface.abort || invisible) return;
822
823         // intersect the x,y,w,h rendering window with ourselves; quit if it's empty
824         int x = max(xIn, getParent() == null ? 0 : pos(0));
825         int y = max(yIn, getParent() == null ? 0 : pos(1));
826         int w = min(xIn + wIn, (getParent() == null ? 0 : pos(0)) + size(0)) - x;
827         int h = min(yIn + hIn, (getParent() == null ? 0 : pos(1)) + size(1)) - y;
828         if (w <= 0 || h <= 0) return;
829
830         if (border != null) renderBorder(x, y, w, h, buf);
831
832         if ((color & 0xFF000000) != 0x00000000 || getParent() == null) {
833             int bw = border == null ? 0 : border[2].getWidth();
834             int bh = border == null ? 0 : border[0].getHeight();
835             buf.setClip(0, 0, buf.getWidth(), buf.getHeight());
836             buf.fillRect(max(x, pos(0) + bw),
837                          max(y, pos(1) + bh),
838                          min(x + w, pos(0) + size(0) - bw),
839                          min(y + h, pos(1) + size(1) - bh),
840                          (color & 0xFF000000) != 0 ? color : SpecialBoxProperty.lightGray);
841         }
842
843         if (image != null) {
844             if (tile) renderTiledImage(x, y, w, h, buf);
845             else renderStretchedImage(x, y, w, h, buf);
846         }
847
848         if (text != null && !text.equals("")) renderText(x, y, w, h, buf);
849
850         // now subtract the pad region from the clip region before proceeding
851         int x2 = max(x, pos(0) + pad(0));
852         int y2 = max(y, pos(1) + pad(1));
853         int w2 = min(x + w, pos(0) + size(0) - pad(0)) - x2;
854         int h2 = min(y + h, pos(1) + size(1) - pad(1)) - y2;
855
856         for(Box b = getChild(0); b != null; b = b.nextSibling())
857             b.render(x2, y2, w2, h2, buf);   
858     }
859
860     private void renderBorder(int x, int y, int w, int h, DoubleBuffer buf) {
861         int bw = border[4].getWidth();
862         int bh = border[4].getHeight();
863         buf.setClip(x, y, w + x, h + y);
864
865         if ((color & 0xFF000000) != 0xFF000000) {
866
867             // if the color is null, we have to be very careful about drawing the corners
868             if (Log.verbose) Log.log(this, "WARNING: (color == null && border != null) on box with border " + imageToNameMap.get(border[4]));
869
870             // upper left corner
871             buf.drawPicture(border[4],
872                             pos(0), pos(1), pos(0) + bw / 2, pos(1) + bh / 2,
873                             0, 0, bw / 2, bh / 2);
874             
875             // upper right corner
876             buf.drawPicture(border[4],
877                             pos(0) + size(0) - bw / 2, pos(1), pos(0) + size(0), pos(1) + bh / 2,
878                             bw - bw / 2, 0, bw, bh / 2);
879
880             // lower left corner
881             buf.drawPicture(border[4],
882                             pos(0), pos(1) + size(1) - bh / 2, pos(0) + bw / 2, pos(1) + size(1),
883                             0, bh - bh / 2, bw / 2, bh);
884
885             // lower right corner
886             buf.drawPicture(border[4],
887                             pos(0) + size(0) - bw / 2, pos(1) + size(1) - bh / 2, pos(0) + size(0), pos(1) + size(1),
888                             bw - bw / 2, bh - bh / 2, bw, bh);
889
890         } else {
891             buf.drawPicture(border[4], pos(0), pos(1));                                // upper left corner
892             buf.drawPicture(border[4], pos(0) + size(0) - bw, pos(1));                 // upper right corner
893             buf.drawPicture(border[4], pos(0), pos(1) + size(1) - bh);                 // lower left corner
894             buf.drawPicture(border[4], pos(0) + size(0) - bw, pos(1) + size(1) - bh);  // lower right corner                                     
895
896         }
897
898         // top and bottom edges
899         buf.setClip(max(x, pos(0) + bw / 2), y, min(x + w, pos(0) + size(0) - bw / 2), h + y);
900         for(int i = max(x, pos(0) + bw / 2); i + 100 < min(x + w, pos(0) + size(0) - bw / 2); i += 100) {
901             buf.drawPicture(border[0], i, pos(1));
902             buf.drawPicture(border[1], i, pos(1) + size(1) - bh / 2);
903         }
904         buf.drawPicture(border[0], min(x + w, pos(0) + size(0) - bw / 2) - 100, pos(1));
905         buf.drawPicture(border[1], min(x + w, pos(0) + size(0) - bw / 2) - 100, pos(1) + size(1) - bh / 2);
906
907         // left and right edges
908         buf.setClip(x, max(y, pos(1) + bh / 2), w + x, min(y + h, pos(1) + size(1) - bh / 2));
909         for(int i = max(y, pos(1) + bh / 2); i + 100 < min(y + h, pos(1) + size(1) - bh / 2); i += 100) {
910             buf.drawPicture(border[2], pos(0), i);
911             buf.drawPicture(border[3], pos(0) + size(0) - bw / 2, i);
912         }
913         buf.drawPicture(border[2], pos(0), min(y + h, pos(1) + size(1) - bh / 2) - 100);
914         buf.drawPicture(border[3], pos(0) + size(0) - bw / 2, min(y + h, pos(1) + size(1) - bh / 2) - 100);
915
916         buf.setClip(0, 0, buf.getWidth(), buf.getHeight());
917     }
918
919     void renderStretchedImage(int x, int y, int w, int h, DoubleBuffer buf) {
920         buf.setClip(x, y, w + x, h + y);
921         int bw = border == null ? 0 : border[4].getHeight();
922         int bh = border == null ? 0 : border[4].getWidth();
923         buf.drawPicture(image,
924                         pos(0) + bw / 2,
925                         pos(1) + bh / 2,
926                         pos(0) + size(0) - bw / 2,
927                         pos(1) + size(1) - bh / 2,
928                         0, 0, image.getWidth(), image.getHeight());
929         buf.setClip(0, 0, buf.getWidth(), buf.getHeight());
930     }
931
932     void renderTiledImage(int x, int y, int w, int h, DoubleBuffer buf) {
933         int iw = image.getWidth();
934         int ih = image.getHeight();
935         int bh = border == null ? 0 : border[4].getWidth();
936         int bw = border == null ? 0 : border[4].getHeight();
937
938         for(int i=(x - pos(0) - bw)/iw; i <= (x + w - pos(0) - bw)/iw; i++) {
939             for(int j=(y - pos(1) - bh)/ih; j<= (y + h - pos(1) - bh)/ih; j++) {
940                 
941                 int dx1 = max(i * iw + pos(0), x);
942                 int dy1 = max(j * ih + pos(1), y);
943                 int dx2 = min((i+1) * iw + pos(0), x + w);
944                 int dy2 = min((j+1) * ih + pos(1), y + h);
945                 
946                 int sx1 = dx1 - (i*iw) - pos(0);
947                 int sy1 = dy1 - (j*ih) - pos(1);
948                 int sx2 = dx2 - (i*iw) - pos(0);
949                 int sy2 = dy2 - (j*ih) - pos(1);
950
951                 if (dx2 - dx1 > 0 && dy2 - dy1 > 0 && sx2 - sx1 > 0 && sy2 - sy1 > 0)
952                     buf.drawPicture(image, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2);
953             }
954         }
955
956     }
957
958     void renderText(int x, int y, int w, int h, DoubleBuffer buf) {
959
960         if ((textcolor & 0xFF000000) == 0x00000000) return;
961         buf.setClip(x, y, w + x, h + y);
962
963         XWF xwf = XWF.getXWF(font);
964         if (xwf != null) {
965             xwf.drawString(buf, text,
966                            pos(0) + pad(0),
967                            pos(1) + pad(1) + xwf.getMaxAscent() - 1,
968                            textcolor);
969         } else {
970             buf.drawString(font, text,
971                            pos(0) + pad(0),
972                            pos(1) + pad(1) + Platform.getMaxAscent(font) - 1,
973                            textcolor);
974         }
975
976         buf.setClip(0, 0, buf.getWidth(), buf.getHeight());
977         
978         int i=0; while(i<font.length() && !Character.isDigit(font.charAt(i))) i++;
979
980         if (font.lastIndexOf('d') > i) {
981             for(int j = pos(0) + pad(0); j < pos(0) + pad(0) + textdim(0); j += 2)
982                 buf.fillRect(j, pos(1) + pad(1) + (xwf == null ? Platform.getMaxAscent(font) : xwf.getMaxAscent()) + 3,
983                              j + 1, pos(1) + pad(1) + (xwf == null ? Platform.getMaxAscent(font) : xwf.getMaxAscent()) + 3 + 1,
984                              textcolor);
985
986         } else if (font.lastIndexOf('u') > i) {
987             buf.fillRect(pos(0) + pad(0),
988                         pos(1) + pad(1) + (xwf == null ? Platform.getMaxAscent(font) : xwf.getMaxAscent()) + 3,
989                         pos(0) + pad(0) + textdim(0),
990                         pos(1) + pad(1) + (xwf == null ? Platform.getMaxAscent(font) : xwf.getMaxAscent()) + 3 + 1,
991                         textcolor);
992         }
993
994     }
995
996
997     // Methods to implement org.mozilla.javascript.Scriptable //////////////////////////////////////
998
999     /** Returns the i_th child */
1000     public Object get(int i, Scriptable start) {
1001         if (redirect == null) return null;
1002         if (redirect != this) return redirect.get(i, start);
1003         return i >= numChildren() ? null : getChild(i);
1004     }
1005
1006     /**
1007      *  Inserts value as child i; calls remove() if necessary.
1008      *  This method handles "reinserting" one of your children properly.
1009      *  INVARIANT: after completion, getChild(min(i, numChildren())) == newnode
1010      *  WARNING: O(n) runtime, unless i == numChildren()
1011      */
1012     public void put(int i, Scriptable start, Object value) {
1013         if (value == null) {
1014             if (i > 0 && i < numChildren()) getChild(i).remove();
1015             return;
1016         }
1017         if (value instanceof RootProxy) {
1018             if (Log.on) Log.log(this, "attempt to reparent a box via its proxy object at " +
1019                                 Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine);
1020             return;
1021         } else if (!(value instanceof Box)) {
1022             if (Log.on) Log.log(this, "attempt to set a numerical property on a box to anything other than a box at " +
1023                                 Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine);
1024             return;
1025         }
1026         Box newnode = (Box)value;
1027         if (redirect == null) {
1028             if (Log.on) Log.log(this, "attempt to add a child to a node with a null redirect at " + 
1029                                 Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine);
1030             return;
1031         } else if (redirect != this) redirect.put(i, null, newnode);
1032         else {
1033             if (numKids > 15 && children == null) convert_to_array();
1034             if (newnode.parent != null) newnode.remove();
1035             newnode.parent = this;
1036             
1037             if (children == null) {
1038                 if (firstKid == null) {
1039                     firstKid = newnode;
1040                     newnode.prevSibling = newnode;
1041                     newnode.nextSibling = newnode;
1042                 } else if (i >= numKids) {
1043                     newnode.prevSibling = firstKid.prevSibling;
1044                     newnode.nextSibling = firstKid;
1045                     firstKid.prevSibling.nextSibling = newnode;
1046                     firstKid.prevSibling = newnode;
1047                 } else {
1048                     Box cur = firstKid;
1049                     for(int j=0; j<i; j++) cur = cur.nextSibling;
1050                     newnode.prevSibling = cur.prevSibling;
1051                     newnode.nextSibling = cur;
1052                     cur.prevSibling.nextSibling = newnode;
1053                     cur.prevSibling = newnode;
1054                     if (i == 0) firstKid = newnode;
1055                 }
1056                 numKids++;
1057                 
1058             } else {
1059                 if (i >= children.size()) {
1060                     newnode.indexInParent = children.size();
1061                     children.addElement(newnode);
1062                 } else {
1063                     children.insertElementAt(newnode, i);
1064                     for(int j=i; j<children.size(); j++)
1065                         getChild(j).indexInParent = j;
1066                 }
1067             }
1068             newnode.setSurface(surface);
1069
1070             // need both of these in case child was already uncalc'ed
1071             newnode.mark_for_prerender();
1072             mark_for_prerender(); 
1073
1074             newnode.dirty();
1075             sync_cmin_to_children();
1076         }
1077
1078         // note that JavaScript box[0] will invoke put(int i), not put(String s)
1079         put("0", null, newnode);
1080     }
1081     
1082     public Object get(String name, Scriptable start) { return get(name, start, false); }
1083     public Object get(String name, Scriptable start, boolean ignoretraps) {
1084
1085         if (name == null || name.equals("")) return null;
1086
1087         // hack since Rhino needs to be able to grab these functions to create new objects
1088         if (name.equals("Object")) return JSObject.defaultObjects.get("Object", null);
1089         if (name.equals("Array")) return JSObject.defaultObjects.get("Array", null);
1090         if (name.equals("Function")) return JSObject.defaultObjects.get("Function", null);
1091         if (name.equals("TypeError")) return JSObject.defaultObjects.get("TypeError", null);
1092
1093         // See if we're reading back the function value of a trap
1094         if (name.charAt(0) == '_') {
1095             if (name.charAt(1) == '_') name = name.substring(2);
1096             else name = name.substring(1);
1097             Trap t = Trap.getTrap(this, name);
1098             return t == null ? null : t.f;
1099         }
1100         
1101         // See if we're triggering a trap
1102         Trap t = traps == null || ignoretraps ? null : (Trap)traps.get(name);
1103         if (t != null && t.isreadtrap) return t.perform(emptyobj);
1104
1105         // Check for a special handler
1106         SpecialBoxProperty gph = (SpecialBoxProperty)SpecialBoxProperty.specialBoxProperties.get(name);
1107         if (gph != null) return gph.get(this);
1108
1109         return super.get(name, start);
1110     }
1111
1112     /** indicate that we don't want JSObject trying to handle these */
1113     public boolean has(String name, Scriptable start) {
1114         if (name.equals("")) return false;
1115         if (traps != null && traps.get(name) != null) return true;
1116         if (name.charAt(0) == '_') return true;
1117         if (SpecialBoxProperty.specialBoxProperties.get(name) != null) return true;
1118         if (name.equals("Function") || name.equals("Array") || name.equals("Object") || name.equals("TypeError")) return true;
1119         return super.has(name, start);
1120     }
1121
1122     public void put(String name, Scriptable start, Object value) { put(name, start, value, false, null); }
1123     public void put(String name, Scriptable start, Object value, boolean ignoretraps) { put(name, start, value, ignoretraps, null); }
1124
1125     /**
1126      *  Scriptable.put()
1127      *  @param ignoretraps if set, no traps will be triggered (set when 'cascade' reaches the bottom of the trap stack)
1128      *  @param rp if this put is being performed via a root proxy, rp is the root proxy.
1129      */
1130     public void put(String name, Scriptable start, Object value, boolean ignoretraps, RootProxy rp) {
1131         if (name == null) return;
1132         if (name.startsWith("xwt_")) {
1133             if (Log.on) Log.log(this, "attempt to set reserved property " + name + " at " +
1134                                 Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine);
1135             return;
1136         }
1137
1138         if (!ignoretraps && traps != null) {
1139             Trap t = (Trap)traps.get(name);
1140             if (t != null) {
1141                 Object[] arg = (Object[])singleObjects.remove(false);
1142                 if (arg == null) arg = new Object[] { value };
1143                 else arg[0] = value;
1144                 t.perform(arg);
1145                 arg[0] = null;
1146                 singleObjects.append(arg);
1147                 return;
1148             }
1149         }
1150
1151         // don't want to really cascade down to the box on this one
1152         if (name.equals("0")) return;
1153
1154         SpecialBoxProperty gph = (SpecialBoxProperty)SpecialBoxProperty.specialBoxProperties.get(name);
1155         if (gph != null) {
1156             gph.put(name, this, value);
1157             return;
1158         }
1159
1160         if (name.charAt(0) == '_') {
1161             if (value != null && !(value instanceof Function)) {
1162                 if (Log.on) Log.log(this, "attempt to put a non-function value to " + name + " at " + 
1163                                     Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine);
1164             } else if (name.charAt(1) == '_') {
1165                 name = name.substring(2).intern();
1166                 Trap t = Trap.getTrap(this, name);
1167                 if (t != null) t.delete();
1168                 if (value != null) Trap.addTrap(this, name, ((Function)value), true, rp);
1169             } else {
1170                 name = name.substring(1).intern();
1171                 Trap t = Trap.getTrap(this, name);
1172                 if (t != null) t.delete();
1173                 if (value != null) Trap.addTrap(this, name, ((Function)value), false, rp);
1174             }
1175             return;
1176         }
1177
1178         if (ignoretraps) {
1179             // traps always cascade to the global property, not the local one
1180             putGlobally(name, start, value);
1181         } else {
1182             super.put(name, start, value);
1183         }
1184
1185         // a bit of a hack, since titlebar is the only 'special' property stored in JSObject
1186         if (getParent() == null && surface != null) {
1187             if (name.equals("titlebar")) surface.setTitleBarText(value.toString());
1188             if (name.equals("icon")) {
1189                 Picture pic = Box.getPicture(value.toString());
1190                 if (pic != null) surface.setIcon(pic);
1191                 else if (Log.on) Log.log(this, "unable to load icon " + value);
1192             }
1193         }
1194     }
1195
1196     /** the <tt>delete</tt> keyword is not valid in XWT scripts */
1197     public void delete(int i) { }
1198
1199
1200     // Tree Manipulation /////////////////////////////////////////////////////////////////////
1201
1202     /** The parent of this node */
1203     private Box parent = null;
1204     
1205     // Variables used in Vector mode */
1206     /** INVARIANT: if (parent != null) parent.children.elementAt(indexInParent) == this */
1207     private int indexInParent;
1208     private Vec children = null;
1209
1210     // Variables used in linked-list mode
1211     private int numKids = 0;
1212     private Box nextSibling = null;
1213     private Box prevSibling = null;
1214     private Box firstKid = null;
1215     
1216     // when we get more than 15 children, we switch to array-mode
1217     private void convert_to_array() {
1218         children = new Vec(numKids);
1219         Box cur = firstKid;
1220         do {
1221             children.addElement(cur);
1222             cur.indexInParent = children.size() - 1;
1223             cur = cur.nextSibling;
1224         } while (cur != firstKid);
1225     }
1226     
1227     /** remove this node from its parent; INVARIANT: whenever the parent of a node is changed, remove() gets called. */
1228     public void remove() {
1229         if (parent == null) {
1230             if (surface != null) surface.dispose();
1231             return;
1232         }
1233         Box oldparent = getParent();
1234         if (oldparent == null) return;
1235         mark_for_prerender();
1236         dirty();
1237         mouseinside = false;
1238
1239         if (parent.children != null) {
1240             parent.children.removeElementAt(indexInParent);
1241             for(int j=indexInParent; j<parent.children.size(); j++)
1242                 (parent.getChild(j)).indexInParent = j;
1243
1244         } else {
1245             if (parent.firstKid == this) {
1246                 if (nextSibling == this) parent.firstKid = null;
1247                 else parent.firstKid = nextSibling;
1248             }
1249             parent.numKids--;
1250             prevSibling.nextSibling = nextSibling;
1251             nextSibling.prevSibling = prevSibling;
1252             prevSibling = null;
1253             nextSibling = null;
1254         }
1255         parent = null;
1256
1257         if (oldparent != null) oldparent.sync_cmin_to_children();
1258         setSurface(null);
1259
1260         // note that JavaScript box[0] will invoke put(int i), not put(String s)
1261         if (oldparent != null) oldparent.put("0", null, this);
1262     }
1263
1264     /** returns our next sibling (parent[ourindex + 1]) */
1265     public final Box nextSibling() {
1266         if (parent == null) return null;
1267         if (parent.children == null) {
1268             if (nextSibling == parent.firstKid) return null;
1269             return nextSibling;
1270         } else {
1271             if (indexInParent >= parent.children.size() - 1) return null;
1272             return (Box)parent.children.elementAt(indexInParent + 1);
1273         }
1274     }
1275     
1276     /** returns our next sibling (parent[ourindex + 1]) */
1277     public final Box prevSibling() {
1278         if (parent == null) return null;
1279         if (parent.children == null) {
1280             if (this == parent.firstKid) return null;
1281             return prevSibling;
1282         } else {
1283             if (indexInParent == 0) return null;
1284             return (Box)parent.children.elementAt(indexInParent - 1);
1285         }
1286     }
1287     
1288     /** Returns the parent of this node */
1289     public Box getParent() { return parent; }
1290     
1291     /** Returns ith child */
1292     public Box getChild(int i) {
1293         if (children == null) {
1294             if (firstKid == null) return null;
1295             if (i >= numKids) return null;
1296             if (i == numKids - 1) return firstKid.prevSibling;
1297             Box cur = firstKid;
1298             for(int j=0; j<i; j++) cur = cur.nextSibling;
1299             return cur;
1300         } else {
1301             if (i >= children.size() || i < 0) return null;
1302             return (Box)children.elementAt(i);
1303         }
1304     }
1305     
1306     /** Returns the number of children */
1307     public int numChildren() {
1308         if (children == null) {
1309             if (firstKid == null) return 0;
1310             int i=1;
1311             for(Box cur = firstKid.nextSibling; cur != firstKid; i++) cur = cur.nextSibling;
1312             return i;
1313         } else {
1314             return children.size();
1315         }
1316     }
1317     
1318     /** Returns our index in our parent */
1319     public int getIndexInParent() {
1320         if (parent == null) return 0;
1321         if (parent.children == null) {
1322             int i = 0;
1323             for(Box cur = this; cur != parent.firstKid; i++) cur = cur.prevSibling;
1324             return i;
1325         } else {
1326             return indexInParent;
1327         }
1328     }
1329
1330     /** returns the root of the surface that this box belongs to */
1331     public final Box getRoot() {
1332         if (getParent() == null && surface != null) return this;
1333         if (getParent() == null) return null;
1334         return getParent().getRoot();
1335     }
1336
1337
1338     // Root Proxy ///////////////////////////////////////////////////////////////////////////////
1339
1340     RootProxy myproxy = null;
1341     public Scriptable getRootProxy() {
1342         if (myproxy == null) myproxy = new RootProxy(this);
1343         return myproxy;
1344     }
1345
1346     private static class RootProxy implements Scriptable {
1347
1348         Box box;
1349         RootProxy(Box b) { this.box = b; }
1350
1351         public void delete(String name) { box.delete(name); }
1352         public Scriptable getParentScope() { return box.getParentScope(); }
1353         public void setParentScope(Scriptable p) { box.setParentScope(p); }
1354         public boolean hasInstance(Scriptable value) { return box.hasInstance(value); }
1355         public Scriptable getPrototype() { return box.getPrototype(); }
1356         public void setPrototype(Scriptable p) { box.setPrototype(p); }
1357         public void delete(int i) { box.delete(i); }
1358         public String getClassName() { return box.getClassName(); }
1359         public Object getDefaultValue(Class hint) { return box.getDefaultValue(hint); }
1360
1361         public void put(int i, Scriptable start, Object value) { if (value != null) box.put(i, start, value); }
1362         public Object get(String name, Scriptable start) { return box.get(name, start); }
1363         public Object get(int i, Scriptable start) { return null; }
1364
1365         public void put(String name, Scriptable start, Object value) { box.put(name, start, value, false, this); }
1366         public boolean has(String name, Scriptable start) { return box.has(name, start); }
1367         public boolean has(int i, Scriptable start) { return box.has(i, start); }
1368         public Object[] getIds() { return box.getIds(); }
1369
1370     }
1371
1372
1373     // Trivial Helper Methods (should be inlined) /////////////////////////////////////////
1374
1375     /** helper, included in this class so it can be inlined */
1376     static final int min(int a, int b) {
1377         if (a<b) return a;
1378         else return b;
1379     }
1380     
1381     /** helper, included in this class so it can be inlined */
1382     static final double min(double a, double b) {
1383         if (a<b) return a;
1384         else return b;
1385     }
1386     
1387     /** helper, included in this class so it can be inlined */
1388     static final int max(int a, int b) {
1389         if (a>b) return a;
1390         else return b;
1391     }
1392     
1393     /** helper, included in this class so it can be inlined */
1394     static final int min(int a, int b, int c) {
1395         if (a<=b && a<=c) return a;
1396         else if (b<=c && b<=a) return b;
1397         else return c;
1398     }
1399     
1400     /** helper, included in this class so it can be inlined */
1401     static final int max(int a, int b, int c) {
1402         if (a>=b && a>=c) return a;
1403         else if (b>=c && b>=a) return b;
1404         else return c;
1405     }
1406     
1407     /** helper, included in this class so it can be inlined */
1408     static final int bound(int a, int b, int c) {
1409         if (c < b) return c;
1410         if (a > b) return a;
1411         return b;
1412     }
1413
1414     /** returns numerator/denominator, but rounds <i>up</i> instead of down */
1415     static final int divide_round_up(int numerator, int denominator) {
1416         int ret = numerator / denominator;
1417         if (ret * denominator < numerator) return ret + 1;
1418         return ret;
1419     }
1420
1421     /** Simple helper function to determine if the point x,y falls within this node's actual current geometry */
1422     boolean inside(int x, int y) {
1423         if (invisible) return false;
1424         return (x >= pos(0) && y >= pos(1) && x < pos(0) + size(0) && y < pos(1) + size(1));
1425     }
1426     
1427     /** figures out what box in this subtree of the Box owns the pixel at x,y relitave to the Surface
1428      *
1429      *  IMPORTANT: this method gets called from the event-queueing thread, since we need to determine which box is
1430      *             underneath the mouse as early as possible. Because of this, we have to do some extra checks, as the
1431      *             Box tree may be in flux.
1432      */
1433     Box whoIs(int x, int y) {
1434         if (invisible) return null;
1435         if (!inside(x,y)) return getParent() == null ? this : null;
1436
1437         // We do this because whoIs is unsynchronized (for
1438         // speed), yet is sometimes called while the structure of the
1439         // Box is in flux.
1440         for(int i=numChildren() - 1; i>=0; i--) {
1441
1442             Box child = getChild(i);
1443             if (child == null) continue;
1444
1445             Box bt = child.whoIs(x,y);
1446             if (bt != null) return bt;
1447         }
1448         return this;
1449     }
1450     
1451 }
1452
1453
1454