2003/04/29 12:24:01
[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 int _dmax_0 = 0;
126     private int _dmax_1 = 0;
127     public final int 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 int _dmin_0 = 0;
132     private int _dmin_1 = 0;
133     public final int 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 int _cmin_0 = 0;
138     private int _cmin_1 = 0;
139     public final int 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 int _abs_0 = 0;
144     private int _abs_1 = 0;
145     public final int 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 int _pos_0 = 0;
150     private int _pos_1 = 0;
151     public final int 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     int _size_0 = 0;
156     int _size_1 = 0;
157     public final int 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 int _oldpos_0 = 0;
162     private int _oldpos_1 = 0;
163     public final int 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 int _oldsize_0 = 0;
168     private int _oldsize_1 = 0;
169     public final int 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 int _pad_0 = 0;
174     private int _pad_1 = 0;
175     public final int 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 int _textdim_0 = 0;
180     private int _textdim_1 = 0;
181     public final int 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     /** true iff the box's background image should be tiled */
229     boolean tile = false;
230
231     /** True iff the Box is invisible */
232     public boolean invisible = false;
233
234     /** If true, the Box will force its own size to the natural size of its background image */
235     boolean sizetoimage = false;
236
237     /** If true and tile is false, the background of this image will never be stretched */
238     boolean fixedaspect = false;
239
240     /** If true, the box will shrink to the smallest vertical size possible */
241     boolean vshrink = false;
242
243     /** If true, the box will shrink to the smallest horizontal size possible */
244     boolean hshrink = false;
245
246     /** If true, the box will be positioned absolutely */
247     boolean absolute = false;
248
249     /** True iff the Box must be run through the prerender() pipeline before render()ing;<br>
250      *  INVARIANT: if (needs_prerender) then getParent().needs_prerender. **/
251     boolean needs_prerender = true;
252
253     /** The cursor for this Box -- only meaningful on the root Box */
254     public String cursor = null;
255
256     /** Any traps placed on this Box */
257     public Hash traps = null;
258
259
260     // Instance Data: IndexOf  ////////////////////////////////////////////////////////////
261
262     /** The indexof() Function; created lazily */
263     public Function indexof = null;
264     public Function indexof() {
265         if (indexof == null) indexof = new IndexOf();
266         return indexof;
267     }
268
269     /** a trivial private class to serve as the box.indexof function object */
270     private class IndexOf extends JSObject implements Function {
271         public IndexOf() { this.setSeal(true); }
272         public Scriptable construct(Context cx, Scriptable scope, java.lang.Object[] args) { return null; }
273         public Object call(Context cx, Scriptable scope, Scriptable thisObj, java.lang.Object[] args) throws JavaScriptException {
274             if (args == null || args.length != 1 || args[0] == null || !(args[0] instanceof Box)) return new Integer(-1);
275             Box b = (Box)args[0];
276             if (b.getParent() != Box.this) {
277                 if (redirect == null || redirect == Box.this) return new Integer(-1);
278                 return Box.this.redirect.indexof().call(cx, scope, thisObj, args);
279             }
280             return new Integer(b.getIndexInParent());
281         }
282     }
283
284
285     // Methods which enforce/preserve invariants ////////////////////////////////////////////
286
287     /** This method MUST be used to change geometry values -- it ensures that certain invariants are preserved. */
288     public final void set(int which, int axis, int newvalue) {
289
290         // if this Box is the root of the Surface, notify the Surface of size changes
291         if (getParent() == null && surface != null && which == size)
292             surface._setSize(axis == 0 ? newvalue : size(0), axis == 1 ? newvalue : size(1));
293
294         if (getParent() == null && surface != null && (which == dmin || which == dmax))
295             surface.setLimits(dmin(0), dmin(1), dmax(0), dmax(1));
296
297         switch(which) {
298         case dmin: if (dmin(axis) == newvalue) return; if (axis == 0) _dmin_0 = newvalue; else _dmin_1 = newvalue; break;
299         case dmax: if (dmax(axis) == newvalue) return; if (axis == 0) _dmax_0 = newvalue; else _dmax_1 = newvalue; break;
300         case cmin: if (cmin(axis) == newvalue) return; if (axis == 0) _cmin_0 = newvalue; else _cmin_1 = newvalue; break;
301         case abs: if (abs(axis) == newvalue) return; if (axis == 0) _abs_0 = newvalue; else _abs_1 = newvalue; break;
302         case pos: if (pos(axis) == newvalue) return; if (axis == 0) _pos_0 = newvalue; else _pos_1 = newvalue; break;
303         case size: if (size(axis) == newvalue) return; if (axis == 0) _size_0 = newvalue; else _size_1 = newvalue; break;
304         case oldpos: if (oldpos(axis) == newvalue) return; if (axis == 0) _oldpos_0 = newvalue; else _oldpos_1 = newvalue; break;
305         case oldsize: if (oldsize(axis) == newvalue) return; if (axis == 0) _oldsize_0 = newvalue; else _oldsize_1 = newvalue; break;
306         case pad: if (pad(axis) == newvalue) return; if (axis == 0) _pad_0 = newvalue; else _pad_1 = newvalue; break;
307         case textdim: if (textdim(axis) == newvalue) return; if (axis == 0) _textdim_0 = newvalue; else _textdim_1 = newvalue; break;
308         default: return;
309         }
310
311         // size must always agree with dmin/dmax
312         if (which == dmin) set(size, axis, max(size(axis), newvalue));
313         if (which == dmax) set(size, axis, min(size(axis), newvalue));
314
315         // keep cmin in line with dmin/dmax/textdim
316         if (which == dmax || which == dmin || which == textdim || which == pad || which == cmin)
317             set(cmin, axis,
318                 max(
319                     min(dmax(axis), cmin(axis)),
320                     dmin(axis),
321                     min(dmax(axis), textdim(axis) + 2 * pad(axis))
322                     )
323                 );
324         
325         // if the pad changes, update cmin
326         if (which == pad) sync_cmin_to_children();
327
328         // needed in the shrink case, since dmin may have been the deciding factor in calculating cmin
329         if ((vshrink || hshrink) && (which == dmin || which == textdim || which == pad)) sync_cmin_to_children();
330
331         // if the cmin changes, we need to be re-prerendered
332         if (which == cmin) mark_for_prerender(); 
333
334         // if the absolute position of a box changes, its parent needs to be re-prerendered (to update the child's position)
335         if (which == abs && getParent() != null) getParent().mark_for_prerender();
336
337         // if our cmin changes, then our parent's needs to be recalculated
338         if (getParent() != null && which == cmin) {
339             mark_for_prerender();
340             getParent().sync_cmin_to_children();
341         }
342
343     }
344
345     /** Marks this node and all its ancestors so that they will be prerender()ed */
346     public final void mark_for_prerender() {
347         if (needs_prerender) return;
348         needs_prerender = true;
349         if (getParent() != null) getParent().mark_for_prerender();
350     }
351
352     /** Ensures that cmin is in sync with the cmin's of our children. This should be called whenever a child is added or
353      *  removed, as well as when our pad is changed. */
354     final void sync_cmin_to_children() {
355         int co = (int)(2 * pad(o));
356         int cxo = (int)(2 * pad(xo));
357         
358         for(Box bt = getChild(0); bt != null; bt = bt.nextSibling()) {
359             if (bt.invisible || bt.absolute) continue;
360             co += bt.cmin(o);
361             cxo = (int)max(bt.cmin(xo) + 2 * pad(xo), cxo);
362         }
363         
364         set(cmin, o, co);
365         set(cmin, xo, cxo);
366     }
367
368     /** must be called after changes to <tt>image</tt> or <tt>border</tt> if sizetoimage is true */
369     public void syncSizeToImage() {
370         set(dmax, 0, (image == null ? 0 : image.getWidth()) + (border == null ? 0 : border[2].getWidth()) * 2);
371         set(dmax, 1, (image == null ? 0 : image.getHeight()) + (border == null ? 0 : border[0].getHeight()) * 2);
372         set(dmin, 0, (image == null ? 0 : image.getWidth()) + (border == null ? 0 : border[2].getWidth()) * 2);
373         set(dmin, 1, (image == null ? 0 : image.getHeight()) + (border == null ? 0 : border[0].getHeight()) * 2);
374     }
375
376     /** This must be called when font or text is changed */
377     void textupdate() {
378         if (text.equals("")) {
379             set(textdim, 0, 0);
380             set(textdim, 1, 0);
381         } else {
382             XWF xwf = XWF.getXWF(font);
383             if (xwf == null) {
384                 set(textdim, 0, Platform.stringWidth(font, text));
385                 set(textdim, 1, (Platform.getMaxAscent(font) + Platform.getMaxDescent(font)));
386             } else {
387                 set(textdim, 0, xwf.stringWidth(text));
388                 set(textdim, 1, (xwf.getMaxAscent() + xwf.getMaxDescent()));
389             }
390         }
391     }
392
393
394     // Instance Methods /////////////////////////////////////////////////////////////////////
395
396     /** Changes the Surface that this Box draws on. */    
397     protected void setSurface(Surface newSurface) {
398         if (surface == newSurface) return;
399         mouseinside = false;
400         if ((is_trapped("KeyPressed") || is_trapped("KeyReleased")) && surface != null)
401             surface.keywatchers.removeElement(this);
402         surface = newSurface;
403         if ((is_trapped("KeyPressed") || is_trapped("KeyReleased")) && surface != null)
404             surface.keywatchers.addElement(this);
405         for(Box i = getChild(0); i != null; i = i.nextSibling()) i.setSurface(surface);
406         if (numChildren() == 0) mark_for_prerender();
407     }
408
409     /** loads the image described by string str, possibly blocking for a network load */
410     static ImageDecoder getImage(String str, final Function callback) {
411
412         if (str.indexOf(':') == -1) {
413             String s = str;
414             byte[] b = Resources.getResource(Resources.resolve(s + ".png", null));
415             if (b != null) return PNG.decode(new ByteArrayInputStream(b), str);
416             b = Resources.getResource(Resources.resolve(s + ".jpeg", null));
417             if (b != null) return Platform.decodeJPEG(new ByteArrayInputStream(b), str);
418             return null;
419             
420         } else {
421             Thread thread = Thread.currentThread();
422             if (!(thread instanceof ThreadMessage)) {
423                 if (Log.on) Log.log(Box.class, "HTTP images can not be loaded from the foreground thread");
424                 return null;
425             }
426             // FIXME: use primitives here
427             ThreadMessage mythread = (ThreadMessage)thread;
428             mythread.setPriority(Thread.MIN_PRIORITY);
429             mythread.done.release();
430             try {
431                 HTTP http = new HTTP(str);
432                 final HTTP.HTTPInputStream in = http.GET();
433                 final int contentLength = in.getContentLength();
434                 InputStream is = new FilterInputStream(in) {
435                         int bytesDownloaded = 0;
436                         boolean clear = true;
437                         public int read() throws IOException {
438                             bytesDownloaded++;
439                             return super.read();
440                         }
441                         public int read(byte[] b, int off, int len) throws IOException {
442                             int ret = super.read(b, off, len);
443                             if (ret != -1) bytesDownloaded += ret;
444                             if (clear && callback != null) {
445                                 clear = false;
446                                 ThreadMessage.newthread(new JSObject.JSFunction() {
447                                         public Object call(Context cx, Scriptable thisObj, Scriptable ctorObj, Object[] args) throws JavaScriptException {
448                                             try {
449                                                 callback.call(cx, null, null, new Object[] {
450                                                     new Double(bytesDownloaded), new Double(contentLength) });
451                                             } finally {
452                                                 clear = true;
453                                             }
454                                             return null;
455                                         }
456                                     });
457                             }
458                             return ret;
459                         }
460                     };
461
462                 if (str.endsWith(".gif")) return GIF.decode(is, str);
463                 else if (str.endsWith(".jpeg") || str.endsWith(".jpg")) return Platform.decodeJPEG(is, str);
464                 else return PNG.decode(is, str);
465
466             } catch (IOException e) {
467                 if (Log.on) Log.log(Box.class, "error while trying to load an image from " + str);
468                 if (Log.on) Log.log(Box.class, e);
469                 return null;
470
471             } finally {
472                 MessageQueue.add(mythread);
473                 mythread.setPriority(Thread.NORM_PRIORITY);
474                 mythread.go.block();
475             }
476         }
477     }
478
479     /** gets an Image using getImage(), adds it to the cache, and creates a Picture from it */
480     public static Picture getPicture(String os) {
481         Picture ret = null;
482         ret = (Picture)pictureCache.get(os);
483         if (ret != null) return ret;
484         ImageDecoder id = getImage(os, null);
485         if (id == null) return null;
486         ret = Platform.createPicture(id);
487         pictureCache.put(os, ret);
488         imageToNameMap.put(ret, os);
489         return ret;
490     }
491
492     /** Sets the image; argument should be a fully qualified s name or an URL */
493     void setImage(String s) {
494         if ((s == null && image == null) || (s != null && image != null && s.equals(imageToNameMap.get(image)))) return;
495         if (s == null || s.equals("")) {
496             image = null;
497             if (sizetoimage) syncSizeToImage();
498             dirty();
499         } else {
500             image = getPicture(s);
501             if (image == null) {
502                 if (Log.on) Log.log(Box.class, "unable to load image " + s + " at " +
503                                     Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine);
504                 return;
505             }
506             if (sizetoimage) syncSizeToImage();
507             dirty();
508         }
509     }
510     
511     /** Sets the border; argument should be a fully qualified resource name or an URL */
512     void setBorder(String s) {
513         if ((s == null && border == null) || (s != null && border != null && s.equals(imageToNameMap.get(border)))) return;
514         if (s == null || s.equals("")) {
515             border = null;
516             if (sizetoimage) syncSizeToImage();
517             dirty();
518
519         } else {
520             border = (Picture[])bordercache.get(s);
521             if (border == null) {
522                 ImageDecoder id = getImage(s, null);
523                 if (id == null) {
524                     if (Log.on) Log.log(this, "unable to load border image " + s + " at " +
525                                     Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine);
526                     return;
527                 }
528                 int[] data = id.getData();
529                 int w = id.getWidth();
530                 int h = id.getHeight();
531                 int hpad = w / 2;
532                 int vpad = h / 2;
533
534                 int[][] dat = new int[4][];
535                 dat[0] = new int[100 * vpad];
536                 dat[1] = new int[100 * vpad];
537                 dat[2] = new int[100 * hpad];
538                 dat[3] = new int[100 * hpad];
539
540                 for(int i=0; i<100; i++) {
541                     for(int j=0; j<vpad; j++) {
542                         dat[0][i + j * 100] = data[hpad + j * w];
543                         dat[1][i + (vpad - j - 1) * 100] = data[hpad + (h - j - 1) * w];
544                     }
545                     for(int j=0; j<hpad; j++) {
546                         dat[2][j + i * hpad] = data[j + vpad * w];
547                         dat[3][hpad - j - 1 + i * hpad] = data[w - j - 1 + vpad * w];
548                     }
549                 }
550
551                 border = new Picture[5];
552                 border[0] = Platform.createPicture(dat[0], 100, vpad);
553                 border[1] = Platform.createPicture(dat[1], 100, vpad);
554                 border[2] = Platform.createPicture(dat[2], hpad, 100);
555                 border[3] = Platform.createPicture(dat[3], hpad, 100);
556                 border[4] = (Picture)pictureCache.get(s);
557                 if (border[4] == null) {
558                     border[4] = Platform.createPicture(data, w, h);
559                     pictureCache.put(s, border[4]);
560                     imageToNameMap.put(border[4], s);
561                 }
562                 bordercache.put(s, border);
563             }
564             if (sizetoimage) syncSizeToImage();
565             dirty();
566         }
567     }
568
569     /** returns true if the property has a trap on it */
570     boolean is_trapped(String property) {
571         if (traps == null) {
572             return false;
573         } else {
574             Object gc = traps.get(property);
575             return (gc != null &&
576                     !(gc instanceof org.mozilla.javascript.Undefined) &&
577                     gc != org.mozilla.javascript.Scriptable.NOT_FOUND);
578         }
579     }
580     
581     /** Adds the node's current actual geometry to the Surface's dirty list */
582     void dirty() {
583         dirty(pos(0), pos(1), size(0), size(1));
584     }
585
586     /** Adds the intersection of (x,y,w,h) and the node's current actual geometry to the Surface's dirty list */
587     public final void dirty(int x, int y, int w, int h) {
588         for(Box cur = this; cur != null; cur = cur.getParent()) {
589             w = min(x + w, cur.pos(0) + cur.size(0)) - max(x, cur.pos(0));
590             h = min(y + h, cur.pos(1) + cur.size(1)) - max(y, cur.pos(1));
591             x = max(x, cur.pos(0));
592             y = max(y, cur.pos(1));
593             if (w <= 0 || h <= 0) return;
594         }
595         if (surface != null) surface.dirty(x, y, w, h);
596     }
597
598     /**
599      *  Given an old and new mouse position, this will update <tt>mouseinside</tt> and check
600      *  to see if this node requires any Enter, Leave, or Move notifications.
601      *
602      *  @param forceleave set to true by the box's parent if the mouse is inside an older
603      *                    sibling, which is covering up this box.
604      */
605     void Move(int oldmousex, int oldmousey, int mousex, int mousey) { Move(oldmousex, oldmousey, mousex, mousey, false); }
606     void Move(int oldmousex, int oldmousey, int mousex, int mousey, boolean forceleave) {
607
608         boolean wasinside = mouseinside;
609         boolean isinside = !invisible && inside(mousex, mousey) && !forceleave;
610         mouseinside = isinside;
611
612         if (!wasinside && !isinside) return;
613         
614         if (!wasinside && isinside && is_trapped("Enter")) put("Enter", null, this);
615         else if (wasinside && !isinside && is_trapped("Leave")) put("Leave", null, this);
616         else if (wasinside && isinside && (mousex != oldmousex || mousey != oldmousey) && is_trapped("Move")) put("Move", null, this);
617
618         if (isinside && cursor != null && surface != null) surface.cursor = cursor;
619
620         // if the mouse has moved into our padding region, it is considered 'outside' all our children
621         if (!(mousex >= pos(0) + pad(0) && mousey >= pos(1) + pad(1) &&
622               mousex < pos(0) + size(0) - pad(0) && mousey < pos(1) + size(1) + pad(1))) forceleave = true;
623
624         for(Box b = getChild(numChildren() - 1); b != null; b = b.prevSibling()) {
625             b.Move(oldmousex, oldmousey, mousex, mousey, forceleave);
626             if (b.inside(mousex, mousey)) forceleave = true;
627         }
628     }
629
630     /** creates a new box from an anonymous template; <tt>ids</tt> is passed through to Template.apply() */
631     Box(Template anonymous, Vec pboxes, Vec ptemplates, Function callback, int numerator, int denominator) {
632         super(true);
633         set(dmax, 0, Integer.MAX_VALUE);
634         set(dmax, 1, Integer.MAX_VALUE);
635         template = anonymous;
636         template.apply(this, pboxes, ptemplates, callback, numerator, denominator);
637         templatename = null;
638         importlist = null;
639     }
640
641     /** creates a new box from an unresolved templatename and an importlist; use "box" for an untemplatized box */
642     public Box(String templatename, String[] importlist) { this(templatename, importlist, null); }
643     public Box(String templatename, String[] importlist, Function callback) {
644         super(true);
645         set(dmax, 0, Integer.MAX_VALUE);
646         set(dmax, 1, Integer.MAX_VALUE);
647         this.importlist = importlist;
648         if (!"box".equals(templatename)) {
649             template = Template.getTemplate(templatename, importlist);
650             if (template == null)
651                 if (Log.on) Log.log(this, "couldn't find template \"" + templatename + "\"");
652         }
653         if (template != null) {
654             this.templatename = templatename;
655             template.apply(this, null, null, callback, 0, template.numUnits());
656             if (redirect == this && !"self".equals(template.redirect)) redirect = null;
657         }
658     }
659     
660
661     // Prerendering Pipeline ///////////////////////////////////////////////////////////////
662
663     /** Checks if the Box's size has changed, dirties it if necessary, and makes sure childrens' sizes are up to date */
664     void prerender() {
665
666         if (invisible) return;
667
668         if (getParent() == null) {
669             set(pos, 0, 0);
670             set(pos, 1, 0);
671         }
672
673         if (pos(0) != oldpos(0) || pos(1) != oldpos(1) || size(0) != oldsize(0) || size(1) != oldsize(1)) {
674             needs_prerender = true;
675             check_geometry_changes();
676         }
677
678         if (!needs_prerender) return; 
679         needs_prerender = false;
680         if (numChildren() == 0) return;
681
682         int sumchildren = sizeChildren();
683         positionChildren(pos(o) + pad(o) + max(0, size(o) - 2 * pad(o) - sumchildren) / 2);
684
685         for(Box b = getChild(0); b != null; b = b.nextSibling()) {
686             b.prerender();
687             if (surface.abort) {
688                 mark_for_prerender();
689                 return;
690             }
691         }
692     }
693
694     /** if the size or position of a box has changed, dirty() the appropriate regions and possibly send Enter/Leave/SizeChange/PosChange */
695     private void check_geometry_changes() {
696
697         // FASTPATH: if we haven't moved position (just changed size), and we're not a stretched image:
698         if (oldpos(0) == pos(0) && oldpos(1) == pos(1) && (image == null || tile)) {
699
700             // we use the max(border, pad) since because of the pad we might be revealing an abs-pos child
701             int bw = max(border == null ? 0 : border[2].getWidth(), pad(0));
702             int bh = max(border == null ? 0 : border[0].getHeight(), pad(1));
703
704             // dirty only the *change* in the area we cover, both on ourselves and on our parent
705             for(Box cur = this; cur != null && (cur == this || cur == this.getParent()); cur = cur.getParent()) {
706                 cur.dirty(pos(0) + min(oldsize(0) - bw, size(0) - bw),
707                           pos(1),
708                           Math.abs(oldsize(0) - size(0)) + bw,
709                           max(oldsize(1), size(1)));
710                 cur.dirty(pos(0),
711                           pos(1) + min(oldsize(1) - bh, size(1) - bh),
712                           max(oldsize(0), size(0)),
713                           Math.abs(oldsize(1) - size(1)) + bh);
714             }
715             
716         // SLOWPATH: dirty ourselves, as well as our former position on our parent
717         } else {
718             dirty();
719             if (getParent() != null) getParent().dirty(oldpos(0), oldpos(1), oldsize(0), oldsize(1));
720             
721         }
722         
723         boolean sizechange = false;
724         boolean poschange = false;
725         if ((oldsize(0) != size(0) || oldsize(1) != size(1)) && is_trapped("SizeChange")) sizechange = true;
726         if ((oldpos(0) != pos(0) || oldpos(1) != pos(1)) && is_trapped("PosChange")) poschange = true;
727         
728         set(oldsize, 0, size(0));
729         set(oldsize, 1, size(1));
730         set(oldpos, 0, pos(0));
731         set(oldpos, 1, pos(1));
732
733         if (!sizechange && !poschange) return;
734
735         if (++surface.sizePosChangesSinceLastRender >= 500) {
736             if (surface.sizePosChangesSinceLastRender == 500) {
737                 if (Log.on) Log.log(this, "Warning, more than 500 SizeChange/PosChange traps triggered since last complete render");
738                 if (Log.on) Log.log(this, "    interpreter is at " + Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine);
739                 try {
740                     Trap t = sizechange ? Trap.getTrap(this, "SizeChange") : Trap.getTrap(this, "PosChange");
741                     InterpretedFunction f = (InterpretedFunction)t.f;
742                     if (Log.on) Log.log(this, "Current trap is at " + f.getSourceName() + ":" + f.getLineNumbers()[0]);
743                 } catch (Throwable t) { }
744             }
745         } else {
746             if (sizechange) put("SizeChange", null, Boolean.TRUE);
747             if (poschange) put("PosChange", null, Boolean.TRUE);
748             if (sizechange || poschange) {
749                 surface.abort = true;
750                 return;
751             }
752         }
753     }
754     
755
756     /** sets our childrens' sizes */
757     int sizeChildren() {
758
759         // Set sizes along minor axis, as well as sizes for absolute-positioned children
760         for(Box bt = getChild(0); bt != null; bt = bt.nextSibling()) {
761             if (bt.invisible) continue;
762             if (bt.absolute) {
763                 bt.set(size, 0, bt.hshrink ? bt.cmin(0) : max(bt.cmin(0), min(size(0) - bt.abs(0) - pad(0), bt.dmax(0))));
764                 bt.set(size, 1, bt.vshrink ? bt.cmin(1) : max(bt.cmin(1), min(size(1) - bt.abs(1) - pad(1), bt.dmax(1))));
765             } else if (xo == 0 && bt.hshrink || xo == 1 && bt.vshrink) {
766                 bt.set(size, xo, bt.cmin(xo));
767             } else {
768                 bt.set(size, xo, bound(bt.cmin(xo), size(xo) - 2 * pad(xo), bt.dmax(xo)));
769             }
770         }
771
772         // the ideal size of our children, along our own major axis
773         int goal = (o == 0 && hshrink) || (o == 1 && vshrink) ? cmin(o) - 2 * pad(o) : size(o) - 2 * pad(o);
774
775         // the current sum of the sizes of all children
776         int total = 0;
777
778         // each box is set to bound(box.cmin, box.flex * factor, box.dmax)
779         int factor = 0;
780
781         // Algorithm: we set the sizes of all boxes to bound(cmin, flex * factor, dmax) for some global value
782         //            'factor'. We figure out what 'factor' should be by starting at zero, and slowly increasing
783         //            it. After each pass, 'factor' is set to the smaller of two values: ((goal - total) /
784         //            remaining_flex) or the next largest value of factor which will cause some box to exceed its
785         //            cmin or dmax (thereby changing remaining_flex).
786
787         while(true) {
788             total = 0;
789
790             // the sum of the flexes of all boxes which are not pegged at either cmin or dmax
791             int remaining_flex = 0;
792
793             // this is the next largest value of factor at which some box exceeds its cmin/dmax
794             int nextjoint = Integer.MAX_VALUE;
795             
796             for(Box bt = getChild(0); bt != null; bt = bt.nextSibling()) {
797                 if (bt.absolute || bt.invisible) continue;
798
799                 int btmax = (o == 0 && bt.hshrink) || (o == 1 && bt.vshrink) ? bt.cmin(o) : bt.dmax(o);
800                 bt.set(size, o, bound(bt.cmin(o), factor * bt.flex, btmax));
801                 total += bt.size(o);
802
803                 if (factor * bt.flex < bt.cmin(o) && bt.size(o) == bt.cmin(o)) {
804                     nextjoint = min(nextjoint, divide_round_up(bt.cmin(o), bt.flex));
805
806                 } else if (bt.size(o) < btmax) {
807                     remaining_flex += bt.flex;
808                     nextjoint = min(nextjoint, divide_round_up(btmax, bt.flex));
809
810                 }
811             }
812
813             if (remaining_flex == 0) {
814                 if (nextjoint <= factor) break;
815                 factor = nextjoint;
816             } else {
817                 factor = min((goal - total + factor * remaining_flex) / remaining_flex, nextjoint);
818             }
819
820             if (goal - total <= remaining_flex) break;
821         }
822
823         // arbitrarily distribute out any leftovers resulting from rounding errors
824         int last = 0;
825         while(goal != total && total != last) {
826             last = total;
827             for(Box bt = getChild(0); bt != null; bt = bt.nextSibling()) {
828                 int btmax = (o == 0 && bt.hshrink) || (o == 1 && bt.vshrink) ? bt.cmin(o) : bt.dmax(o);
829                 int newsize = bound(bt.cmin(o), bt.size(o) + (goal > total ? 1 : -1), btmax);
830                 total += newsize - bt.size(o);
831                 bt.set(size, o, newsize);
832             }
833         }
834
835         return total;
836     }
837     
838     /** positions this Box's children; cur is the starting position along this' major axis */
839     void positionChildren(int cur) {
840         for(Box bt = getChild(0); bt != null; bt = bt.nextSibling()) {
841             if (bt.invisible) continue;
842             if (bt.absolute) {
843                 bt.set(pos, 0, pos(0) + bt.abs(0));
844                 bt.set(pos, 1, pos(1) + bt.abs(1));
845             } else {
846                 bt.set(pos, xo, pos(xo) + pad(xo) + max(0, ((size(xo) - 2 * pad(xo) - bt.size(xo)) * (bt.align + 1)) / 2));
847                 bt.set(pos, o, cur);
848                 bt.set(abs, 0, bt.pos(0) - pos(0));
849                 bt.set(abs, 1, bt.pos(1) - pos(1));
850                 cur += bt.size(o);
851             }
852         }
853     }
854
855
856     // Rendering Pipeline /////////////////////////////////////////////////////////////////////
857
858     /** Renders self and children within the specified region. All rendering operations are clipped to xIn,yIn,wIn,hIn */
859     void render(int xIn, int yIn, int wIn, int hIn, DoubleBuffer buf) {
860         if (surface.abort || invisible) return;
861
862         // intersect the x,y,w,h rendering window with ourselves; quit if it's empty
863         int x = max(xIn, getParent() == null ? 0 : pos(0));
864         int y = max(yIn, getParent() == null ? 0 : pos(1));
865         int w = min(xIn + wIn, (getParent() == null ? 0 : pos(0)) + size(0)) - x;
866         int h = min(yIn + hIn, (getParent() == null ? 0 : pos(1)) + size(1)) - y;
867         if (w <= 0 || h <= 0) return;
868
869         if (border != null) renderBorder(x, y, w, h, buf);
870         if ((color & 0xFF000000) != 0x00000000 || getParent() == null) {
871             int bw = border == null ? 0 : border[2].getWidth();
872             int bh = border == null ? 0 : border[0].getHeight();
873             int x1 = max(x, pos(0) + bw);
874             int y1 = max(y, pos(1) + bh);
875             int x2 = min(x + w, pos(0) + size(0) - bw);
876             int y2 = min(y + h, pos(1) + size(1) - bh);
877             if (y2 - y1 > 0 && x2 - x1 > 0)
878                 buf.fillRect(x1,y1,x2,y2,(color & 0xFF000000) != 0 ? color : SpecialBoxProperty.lightGray);
879         }
880
881         if (image != null) {
882             if (tile) renderTiledImage(x, y, w, h, buf);
883             else renderStretchedImage(x, y, w, h, buf);
884         }
885
886         if (text != null && !text.equals("")) renderText(x, y, w, h, buf);
887
888         // now subtract the pad region from the clip region before proceeding
889         int x2 = max(x, pos(0) + pad(0));
890         int y2 = max(y, pos(1) + pad(1));
891         int w2 = min(x + w, pos(0) + size(0) - pad(0)) - x2;
892         int h2 = min(y + h, pos(1) + size(1) - pad(1)) - y2;
893
894         for(Box b = getChild(0); b != null; b = b.nextSibling())
895             b.render(x2, y2, w2, h2, buf);   
896     }
897
898     private void renderBorder(int x, int y, int w, int h, DoubleBuffer buf) {
899         int bw = border[4].getWidth();
900         int bh = border[4].getHeight();
901         buf.setClip(x, y, w + x, h + y);
902
903         if ((color & 0xFF000000) != 0xFF000000) {
904             // if the color is null, we have to be very careful about drawing the corners
905             //if (Log.verbose) Log.log(this, "WARNING: (color == null && border != null) on box with border " + imageToNameMap.get(border[4]));
906
907             // upper left corner
908             buf.drawPicture(border[4],
909                             pos(0), pos(1), pos(0) + bw / 2, pos(1) + bh / 2,
910                             0, 0, bw / 2, bh / 2);
911             
912             // upper right corner
913             buf.drawPicture(border[4],
914                             pos(0) + size(0) - bw / 2, pos(1), pos(0) + size(0), pos(1) + bh / 2,
915                             bw - bw / 2, 0, bw, bh / 2);
916
917             // lower left corner
918             buf.drawPicture(border[4],
919                             pos(0), pos(1) + size(1) - bh / 2, pos(0) + bw / 2, pos(1) + size(1),
920                             0, bh - bh / 2, bw / 2, bh);
921
922             // lower right corner
923             buf.drawPicture(border[4],
924                             pos(0) + size(0) - bw / 2, pos(1) + size(1) - bh / 2, pos(0) + size(0), pos(1) + size(1),
925                             bw - bw / 2, bh - bh / 2, bw, bh);
926
927         } else {
928             buf.drawPicture(border[4], pos(0), pos(1));                                // upper left corner
929             buf.drawPicture(border[4], pos(0) + size(0) - bw, pos(1));                 // upper right corner
930             buf.drawPicture(border[4], pos(0), pos(1) + size(1) - bh);                 // lower left corner
931             buf.drawPicture(border[4], pos(0) + size(0) - bw, pos(1) + size(1) - bh);  // lower right corner                                     
932
933         }
934
935         // top and bottom edges
936         buf.setClip(max(x, pos(0) + bw / 2), y, min(x + w, pos(0) + size(0) - bw / 2), h + y);
937         for(int i = max(x, pos(0) + bw / 2); i + 100 < min(x + w, pos(0) + size(0) - bw / 2); i += 100) {
938             buf.drawPicture(border[0], i, pos(1));
939             buf.drawPicture(border[1], i, pos(1) + size(1) - bh / 2);
940         }
941         buf.drawPicture(border[0], min(x + w, pos(0) + size(0) - bw / 2) - 100, pos(1));
942         buf.drawPicture(border[1], min(x + w, pos(0) + size(0) - bw / 2) - 100, pos(1) + size(1) - bh / 2);
943
944         // left and right edges
945         buf.setClip(x, max(y, pos(1) + bh / 2), w + x, min(y + h, pos(1) + size(1) - bh / 2));
946         for(int i = max(y, pos(1) + bh / 2); i + 100 < min(y + h, pos(1) + size(1) - bh / 2); i += 100) {
947             buf.drawPicture(border[2], pos(0), i);
948             buf.drawPicture(border[3], pos(0) + size(0) - bw / 2, i);
949         }
950         buf.drawPicture(border[2], pos(0), min(y + h, pos(1) + size(1) - bh / 2) - 100);
951         buf.drawPicture(border[3], pos(0) + size(0) - bw / 2, min(y + h, pos(1) + size(1) - bh / 2) - 100);
952
953         buf.setClip(0, 0, buf.getWidth(), buf.getHeight());
954     }
955
956     void renderStretchedImage(int x, int y, int w, int h, DoubleBuffer buf) {
957         buf.setClip(x, y, w + x, h + y);
958         int bw = border == null ? 0 : border[4].getHeight();
959         int bh = border == null ? 0 : border[4].getWidth();
960
961         int width = pos(0) + size(0) - bw / 2 - pos(0) + bw / 2;
962         int height = pos(1) + size(1) - bh / 2 - pos(1) + bh / 2;
963
964         if (fixedaspect) {
965             int hstretch = width / image.getWidth();
966             if (hstretch == 0) hstretch = -1 * image.getWidth() / width;
967             int vstretch = height / image.getHeight();
968             if (vstretch == 0) vstretch = -1 * image.getHeight() / height;
969
970             if (hstretch < vstretch) {
971                 height = image.getHeight() * width / image.getWidth();
972             } else {
973                 width = image.getWidth() * height / image.getHeight();
974             }
975         }
976
977         buf.drawPicture(image,
978                         pos(0) + bw / 2,
979                         pos(1) + bh / 2,
980                         pos(0) + bw / 2 + width,
981                         pos(1) + bh / 2 + height,
982                         0, 0, image.getWidth(), image.getHeight());
983         buf.setClip(0, 0, buf.getWidth(), buf.getHeight());
984     }
985
986     void renderTiledImage(int x, int y, int w, int h, DoubleBuffer buf) {
987         int iw = image.getWidth();
988         int ih = image.getHeight();
989         int bh = border == null ? 0 : border[4].getWidth();
990         int bw = border == null ? 0 : border[4].getHeight();
991
992         for(int i=(x - pos(0) - bw)/iw; i <= (x + w - pos(0) - bw)/iw; i++) {
993             for(int j=(y - pos(1) - bh)/ih; j<= (y + h - pos(1) - bh)/ih; j++) {
994                 
995                 int dx1 = max(i * iw + pos(0), x);
996                 int dy1 = max(j * ih + pos(1), y);
997                 int dx2 = min((i+1) * iw + pos(0), x + w);
998                 int dy2 = min((j+1) * ih + pos(1), y + h);
999                 
1000                 int sx1 = dx1 - (i*iw) - pos(0);
1001                 int sy1 = dy1 - (j*ih) - pos(1);
1002                 int sx2 = dx2 - (i*iw) - pos(0);
1003                 int sy2 = dy2 - (j*ih) - pos(1);
1004
1005                 if (dx2 - dx1 > 0 && dy2 - dy1 > 0 && sx2 - sx1 > 0 && sy2 - sy1 > 0)
1006                     buf.drawPicture(image, dx1, dy1, dx2, dy2, sx1, sy1, sx2, sy2);
1007             }
1008         }
1009
1010     }
1011
1012     void renderText(int x, int y, int w, int h, DoubleBuffer buf) {
1013
1014         if ((textcolor & 0xFF000000) == 0x00000000) return;
1015         buf.setClip(x, y, w + x, h + y);
1016
1017         XWF xwf = XWF.getXWF(font);
1018         if (xwf != null) {
1019             xwf.drawString(buf, text,
1020                            pos(0) + pad(0),
1021                            pos(1) + pad(1) + xwf.getMaxAscent() - 1,
1022                            textcolor);
1023         } else {
1024             buf.drawString(font, text,
1025                            pos(0) + pad(0),
1026                            pos(1) + pad(1) + Platform.getMaxAscent(font) - 1,
1027                            textcolor);
1028         }
1029
1030         buf.setClip(0, 0, buf.getWidth(), buf.getHeight());
1031         
1032         int i=0; while(i<font.length() && !Character.isDigit(font.charAt(i))) i++;
1033
1034         if (font.lastIndexOf('d') > i) {
1035             for(int j = pos(0) + pad(0); j < pos(0) + pad(0) + textdim(0); j += 2)
1036                 buf.fillRect(j, pos(1) + pad(1) + (xwf == null ? Platform.getMaxAscent(font) : xwf.getMaxAscent()) + 2,
1037                              j + 1, pos(1) + pad(1) + (xwf == null ? Platform.getMaxAscent(font) : xwf.getMaxAscent()) + 2 + 1,
1038                              textcolor);
1039
1040         } else if (font.lastIndexOf('u') > i) {
1041             buf.fillRect(pos(0) + pad(0),
1042                         pos(1) + pad(1) + (xwf == null ? Platform.getMaxAscent(font) : xwf.getMaxAscent()) + 2,
1043                         pos(0) + pad(0) + textdim(0),
1044                         pos(1) + pad(1) + (xwf == null ? Platform.getMaxAscent(font) : xwf.getMaxAscent()) + 2 + 1,
1045                         textcolor);
1046         }
1047
1048     }
1049
1050
1051     // Methods to implement org.mozilla.javascript.Scriptable //////////////////////////////////////
1052
1053     /** Returns the i_th child */
1054     public Object get(int i, Scriptable start) {
1055         if (redirect == null) return null;
1056         if (redirect != this) return redirect.get(i, start);
1057         return i >= numChildren() ? null : getChild(i);
1058     }
1059
1060     /**
1061      *  Inserts value as child i; calls remove() if necessary.
1062      *  This method handles "reinserting" one of your children properly.
1063      *  INVARIANT: after completion, getChild(min(i, numChildren())) == newnode
1064      *  WARNING: O(n) runtime, unless i == numChildren()
1065      */
1066     public void put(int i, Scriptable start, Object value) {
1067
1068         if (value != null && !(value instanceof Box)) {
1069             if (Log.on) Log.log(this, "attempt to set a numerical property on a box to anything other than a box at " +
1070                                 Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine);
1071
1072         } else if (redirect == null) {
1073             if (Log.on) Log.log(this, "attempt to add/remove children to/from a node with a null redirect at " + 
1074                                 Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine);
1075
1076         } else if (redirect != this) {
1077             Box b = value == null ? (Box)redirect.get(i, null) : (Box)value;
1078             redirect.put(i, null, value);
1079             put("0", null, b);
1080
1081         } else if (value == null) {
1082             if (i >= 0 && i < numChildren()) {
1083                 Box b = getChild(i);
1084                 b.remove();
1085                 put("0", null, b);
1086             }
1087
1088         } else if (value instanceof RootProxy) {
1089             if (Log.on) Log.log(this, "attempt to reparent a box via its proxy object at " +
1090                                 Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine);
1091
1092         } else {
1093             Box newnode = (Box)value;
1094
1095             // check if box being moved is currently target of a redirect
1096             for(Box cur = newnode.getParent(); cur != null; cur = cur.getParent())
1097                 if (cur.redirect == newnode) {
1098                     if (Log.on) Log.log(this, "attempt to move a box that is the target of a redirect at "+
1099                                         Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine);
1100                     return;
1101                 }
1102
1103             // check for recursive ancestor violation
1104             for(Box cur = this; cur != null; cur = cur.getParent())
1105                 if (cur == newnode) {
1106                     if (Log.on) Log.log(this, "attempt to make a node a parent of its own ancestor at " + 
1107                                         Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine);
1108                     return;
1109                 }
1110
1111             if (numKids > 15 && children == null) convert_to_array();
1112             newnode.remove();
1113             newnode.parent = this;
1114             
1115             if (children == null) {
1116                 if (firstKid == null) {
1117                     firstKid = newnode;
1118                     newnode.prevSibling = newnode;
1119                     newnode.nextSibling = newnode;
1120                 } else if (i >= numKids) {
1121                     newnode.prevSibling = firstKid.prevSibling;
1122                     newnode.nextSibling = firstKid;
1123                     firstKid.prevSibling.nextSibling = newnode;
1124                     firstKid.prevSibling = newnode;
1125                 } else {
1126                     Box cur = firstKid;
1127                     for(int j=0; j<i; j++) cur = cur.nextSibling;
1128                     newnode.prevSibling = cur.prevSibling;
1129                     newnode.nextSibling = cur;
1130                     cur.prevSibling.nextSibling = newnode;
1131                     cur.prevSibling = newnode;
1132                     if (i == 0) firstKid = newnode;
1133                 }
1134                 numKids++;
1135                 
1136             } else {
1137                 if (i >= children.size()) {
1138                     newnode.indexInParent = children.size();
1139                     children.addElement(newnode);
1140                 } else {
1141                     children.insertElementAt(newnode, i);
1142                     for(int j=i; j<children.size(); j++)
1143                         getChild(j).indexInParent = j;
1144                 }
1145             }
1146             newnode.setSurface(surface);
1147             
1148             // need both of these in case child was already uncalc'ed
1149             newnode.mark_for_prerender();
1150             mark_for_prerender(); 
1151             
1152             newnode.dirty();
1153             sync_cmin_to_children();
1154
1155             // note that JavaScript box[0] will invoke put(int i), not put(String s)
1156             put("0", null, newnode);
1157         }
1158     }
1159     
1160     public Object get(String name, Scriptable start) { return get(name, start, false); }
1161     public Object get(String name, Scriptable start, boolean ignoretraps) {
1162
1163         if (name == null || name.equals("")) return null;
1164
1165         // hack since Rhino needs to be able to grab these functions to create new objects
1166         if (name.equals("Object")) return JSObject.defaultObjects.get("Object", null);
1167         if (name.equals("Array")) return JSObject.defaultObjects.get("Array", null);
1168         if (name.equals("Function")) return JSObject.defaultObjects.get("Function", null);
1169         if (name.equals("TypeError")) return JSObject.defaultObjects.get("TypeError", null);
1170         if (name.equals("ConversionError")) return JSObject.defaultObjects.get("ConversionError", null);
1171
1172         // See if we're reading back the function value of a trap
1173         if (name.charAt(0) == '_') {
1174             if (name.charAt(1) == '_') name = name.substring(2);
1175             else name = name.substring(1);
1176             Trap t = Trap.getTrap(this, name);
1177             return t == null ? null : t.f;
1178         }
1179         
1180         // See if we're triggering a trap
1181         Trap t = traps == null || ignoretraps ? null : (Trap)traps.get(name);
1182         if (t != null && t.isreadtrap) return t.perform(emptyobj);
1183
1184         // Check for a special handler
1185         SpecialBoxProperty gph = (SpecialBoxProperty)SpecialBoxProperty.specialBoxProperties.get(name);
1186         if (gph != null) return gph.get(this);
1187
1188         Object ret = super.get(name, start);
1189         if (name.startsWith("$") && ret == null)
1190             if (Log.on) Log.log(this, "WARNING: attempt to access " + name + ", but no child with id=\"" + name.substring(1) + "\" found; " +
1191                                 Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine);
1192         return ret;
1193     }
1194
1195     /** indicate that we don't want JSObject trying to handle these */
1196     public boolean has(String name, Scriptable start) {
1197         if (name.equals("")) return false;
1198         if (traps != null && traps.get(name) != null) return true;
1199         if (name.charAt(0) == '_') return true;
1200         if (SpecialBoxProperty.specialBoxProperties.get(name) != null) return true;
1201         if (name.equals("Function") || name.equals("Array") || name.equals("Object") ||
1202             name.equals("TypeError") || name.equals("ConversionError")) return true;
1203         return super.has(name, start);
1204     }
1205
1206     public Object[] getIds() {
1207         Object[] ret = new Object[numChildren()];
1208         for(int i=0; i<ret.length; i++) ret[i] = get(i, null);
1209         return ret;
1210     }
1211
1212     public void put(String name, Scriptable start, Object value) { put(name, start, value, false, null); }
1213     public void put(String name, Scriptable start, Object value, boolean ignoretraps) { put(name, start, value, ignoretraps, null); }
1214
1215     /**
1216      *  Scriptable.put()
1217      *  @param ignoretraps if set, no traps will be triggered (set when 'cascade' reaches the bottom of the trap stack)
1218      *  @param rp if this put is being performed via a root proxy, rp is the root proxy.
1219      */
1220     public void put(String name, Scriptable start, Object value, boolean ignoretraps, RootProxy rp) {
1221         if (name == null) return;
1222         if (name.startsWith("xwt_")) {
1223             if (Log.on) Log.log(this, "attempt to set reserved property " + name + " at " +
1224                                 Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine);
1225             return;
1226         }
1227
1228         if (!ignoretraps && traps != null) {
1229             Trap t = (Trap)traps.get(name);
1230             if (t != null) {
1231                 Object[] arg = (Object[])singleObjects.remove(false);
1232                 if (arg == null) arg = new Object[] { value };
1233                 else arg[0] = value;
1234                 t.perform(arg);
1235                 arg[0] = null;
1236                 singleObjects.append(arg);
1237                 return;
1238             }
1239         }
1240
1241         // don't want to really cascade down to the box on this one
1242         if (name.equals("0")) return;
1243
1244         SpecialBoxProperty gph = (SpecialBoxProperty)SpecialBoxProperty.specialBoxProperties.get(name);
1245         if (gph != null) {
1246             gph.put(name, this, value);
1247             return;
1248         }
1249
1250         if (name.charAt(0) == '_') {
1251             if (value != null && !(value instanceof Function)) {
1252                 if (Log.on) Log.log(this, "attempt to put a non-function value to " + name + " at " + 
1253                                     Context.enter().interpreterSourceFile + ":" + Context.enter().interpreterLine);
1254             } else if (name.charAt(1) == '_') {
1255                 name = name.substring(2).intern();
1256                 Trap t = Trap.getTrap(this, name);
1257                 if (t != null) t.delete();
1258                 if (value != null) Trap.addTrap(this, name, ((Function)value), true, rp);
1259             } else {
1260                 name = name.substring(1).intern();
1261                 Trap t = Trap.getTrap(this, name);
1262                 if (t != null) t.delete();
1263                 if (value != null) Trap.addTrap(this, name, ((Function)value), false, rp);
1264             }
1265             return;
1266         }
1267
1268         if (ignoretraps) {
1269             // traps always cascade to the global property, not the local one
1270             putGlobally(name, start, value);
1271         } else {
1272             super.put(name, start, value);
1273         }
1274
1275         // a bit of a hack, since titlebar is the only 'special' property stored in JSObject
1276         if (getParent() == null && surface != null) {
1277             if (name.equals("titlebar")) surface.setTitleBarText(value.toString());
1278             if (name.equals("icon")) {
1279                 Picture pic = Box.getPicture(value.toString());
1280                 if (pic != null) surface.setIcon(pic);
1281                 else if (Log.on) Log.log(this, "unable to load icon " + value);
1282             }
1283         }
1284     }
1285
1286     /** the <tt>delete</tt> keyword is not valid in XWT scripts */
1287     public void delete(int i) { }
1288
1289
1290     // Tree Manipulation /////////////////////////////////////////////////////////////////////
1291
1292     /** The parent of this node */
1293     private Box parent = null;
1294     
1295     // Variables used in Vector mode */
1296     /** INVARIANT: if (parent != null) parent.children.elementAt(indexInParent) == this */
1297     private int indexInParent;
1298     private Vec children = null;
1299
1300     // Variables used in linked-list mode
1301     private int numKids = 0;
1302     private Box nextSibling = null;
1303     private Box prevSibling = null;
1304     private Box firstKid = null;
1305     
1306     // when we get more than 15 children, we switch to array-mode
1307     private void convert_to_array() {
1308         children = new Vec(numKids);
1309         Box cur = firstKid;
1310         do {
1311             children.addElement(cur);
1312             cur.indexInParent = children.size() - 1;
1313             cur = cur.nextSibling;
1314         } while (cur != firstKid);
1315     }
1316     
1317     /** remove this node from its parent; INVARIANT: whenever the parent of a node is changed, remove() gets called. */
1318     public void remove() {
1319         if (parent == null) {
1320             if (surface != null) surface.dispose(true);
1321             return;
1322         }
1323         Box oldparent = getParent();
1324         if (oldparent == null) return;
1325         mark_for_prerender();
1326         dirty();
1327         mouseinside = false;
1328
1329         if (parent.children != null) {
1330             parent.children.removeElementAt(indexInParent);
1331             for(int j=indexInParent; j<parent.children.size(); j++)
1332                 (parent.getChild(j)).indexInParent = j;
1333
1334         } else {
1335             if (parent.firstKid == this) {
1336                 if (nextSibling == this) parent.firstKid = null;
1337                 else parent.firstKid = nextSibling;
1338             }
1339             parent.numKids--;
1340             prevSibling.nextSibling = nextSibling;
1341             nextSibling.prevSibling = prevSibling;
1342             prevSibling = null;
1343             nextSibling = null;
1344         }
1345         parent = null;
1346
1347         if (oldparent != null) oldparent.sync_cmin_to_children();
1348         setSurface(null);
1349
1350         // note that JavaScript box[0] will invoke put(int i), not put(String s)
1351         if (oldparent != null) oldparent.put("0", null, this);
1352     }
1353
1354     /** returns our next sibling (parent[ourindex + 1]) */
1355     public final Box nextSibling() {
1356         if (parent == null) return null;
1357         if (parent.children == null) {
1358             if (nextSibling == parent.firstKid) return null;
1359             return nextSibling;
1360         } else {
1361             if (indexInParent >= parent.children.size() - 1) return null;
1362             return (Box)parent.children.elementAt(indexInParent + 1);
1363         }
1364     }
1365     
1366     /** returns our next sibling (parent[ourindex + 1]) */
1367     public final Box prevSibling() {
1368         if (parent == null) return null;
1369         if (parent.children == null) {
1370             if (this == parent.firstKid) return null;
1371             return prevSibling;
1372         } else {
1373             if (indexInParent == 0) return null;
1374             return (Box)parent.children.elementAt(indexInParent - 1);
1375         }
1376     }
1377     
1378     /** Returns the parent of this node */
1379     public Box getParent() { return parent; }
1380     
1381     /** Returns ith child */
1382     public Box getChild(int i) {
1383         if (children == null) {
1384             if (firstKid == null) return null;
1385             if (i >= numKids) return null;
1386             if (i == numKids - 1) return firstKid.prevSibling;
1387             Box cur = firstKid;
1388             for(int j=0; j<i; j++) cur = cur.nextSibling;
1389             return cur;
1390         } else {
1391             if (i >= children.size() || i < 0) return null;
1392             return (Box)children.elementAt(i);
1393         }
1394     }
1395     
1396     /** Returns the number of children */
1397     public int numChildren() {
1398         if (children == null) {
1399             if (firstKid == null) return 0;
1400             int i=1;
1401             for(Box cur = firstKid.nextSibling; cur != firstKid; i++) cur = cur.nextSibling;
1402             return i;
1403         } else {
1404             return children.size();
1405         }
1406     }
1407     
1408     /** Returns our index in our parent */
1409     public int getIndexInParent() {
1410         if (parent == null) return 0;
1411         if (parent.children == null) {
1412             int i = 0;
1413             for(Box cur = this; cur != parent.firstKid; i++) cur = cur.prevSibling;
1414             return i;
1415         } else {
1416             return indexInParent;
1417         }
1418     }
1419
1420     /** returns the root of the surface that this box belongs to */
1421     public final Box getRoot() {
1422         if (getParent() == null && surface != null) return this;
1423         if (getParent() == null) return null;
1424         return getParent().getRoot();
1425     }
1426
1427
1428     // Root Proxy ///////////////////////////////////////////////////////////////////////////////
1429
1430     RootProxy myproxy = null;
1431     public Scriptable getRootProxy() {
1432         if (myproxy == null) myproxy = new RootProxy(this);
1433         return myproxy;
1434     }
1435
1436     private static class RootProxy implements Scriptable {
1437
1438         Box box;
1439         RootProxy(Box b) { this.box = b; }
1440
1441         public void delete(String name) { box.delete(name); }
1442         public Scriptable getParentScope() { return box.getParentScope(); }
1443         public void setParentScope(Scriptable p) { box.setParentScope(p); }
1444         public boolean hasInstance(Scriptable value) { return box.hasInstance(value); }
1445         public Scriptable getPrototype() { return box.getPrototype(); }
1446         public void setPrototype(Scriptable p) { box.setPrototype(p); }
1447         public void delete(int i) { box.delete(i); }
1448         public String getClassName() { return box.getClassName(); }
1449         public Object getDefaultValue(Class hint) { return box.getDefaultValue(hint); }
1450
1451         public void put(int i, Scriptable start, Object value) { if (value != null) box.put(i, start, value); }
1452         public Object get(String name, Scriptable start) { return box.get(name, start); }
1453         public Object get(int i, Scriptable start) { return null; }
1454
1455         public void put(String name, Scriptable start, Object value) { box.put(name, start, value, false, this); }
1456         public boolean has(String name, Scriptable start) { return box.has(name, start); }
1457         public boolean has(int i, Scriptable start) { return box.has(i, start); }
1458         public Object[] getIds() { return box.getIds(); }
1459
1460     }
1461
1462
1463     // Trivial Helper Methods (should be inlined) /////////////////////////////////////////
1464
1465     /** helper, included in this class so it can be inlined */
1466     static final int min(int a, int b) {
1467         if (a<b) return a;
1468         else return b;
1469     }
1470     
1471     /** helper, included in this class so it can be inlined */
1472     static final double min(double a, double b) {
1473         if (a<b) return a;
1474         else return b;
1475     }
1476     
1477     /** helper, included in this class so it can be inlined */
1478     static final int max(int a, int b) {
1479         if (a>b) return a;
1480         else return b;
1481     }
1482     
1483     /** helper, included in this class so it can be inlined */
1484     static final int min(int a, int b, int c) {
1485         if (a<=b && a<=c) return a;
1486         else if (b<=c && b<=a) return b;
1487         else return c;
1488     }
1489     
1490     /** helper, included in this class so it can be inlined */
1491     static final int max(int a, int b, int c) {
1492         if (a>=b && a>=c) return a;
1493         else if (b>=c && b>=a) return b;
1494         else return c;
1495     }
1496     
1497     /** helper, included in this class so it can be inlined */
1498     static final int bound(int a, int b, int c) {
1499         if (c < b) return c;
1500         if (a > b) return a;
1501         return b;
1502     }
1503
1504     /** returns numerator/denominator, but rounds <i>up</i> instead of down */
1505     static final int divide_round_up(int numerator, int denominator) {
1506
1507         // cope with bozos who use flex==0.0
1508         if (denominator == 0) return Integer.MAX_VALUE;
1509
1510         int ret = numerator / denominator;
1511         if (ret * denominator < numerator) return ret + 1;
1512         return ret;
1513     }
1514
1515     /** Simple helper function to determine if the point x,y falls within this node's actual current geometry */
1516     boolean inside(int x, int y) {
1517         if (invisible) return false;
1518         return (x >= pos(0) && y >= pos(1) && x < pos(0) + size(0) && y < pos(1) + size(1));
1519     }
1520     
1521     /** figures out what box in this subtree of the Box owns the pixel at x,y relitave to the Surface
1522      *
1523      *  IMPORTANT: this method gets called from the event-queueing thread, since we need to determine which box is
1524      *             underneath the mouse as early as possible. Because of this, we have to do some extra checks, as the
1525      *             Box tree may be in flux.
1526      */
1527     Box whoIs(int x, int y) {
1528         if (invisible) return null;
1529         if (!inside(x,y)) return getParent() == null ? this : null;
1530
1531         // We do this because whoIs is unsynchronized (for
1532         // speed), yet is sometimes called while the structure of the
1533         // Box is in flux.
1534         for(int i=numChildren() - 1; i>=0; i--) {
1535
1536             Box child = getChild(i);
1537             if (child == null) continue;
1538
1539             Box bt = child.whoIs(x,y);
1540             if (bt != null) return bt;
1541         }
1542         return this;
1543     }
1544     
1545 }
1546
1547
1548