2003/11/17 10:18:31
[org.ibex.core.git] / src / org / xwt / Box.java
1 // Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.xwt;
3
4 // FEATURE: reflow before allowing js to read from width/height 
5 // FEATURE: fastpath for rows=1/cols=1
6 // FEATURE: mark to reflow starting with a certain child
7 // FEATURE: separate mark_for_reflow and mark_for_resize
8 // FEATURE: make all methods final
9 // FEATURE: use a linked list for the "frontier" when packing
10 // FEATURE:    or else have a way to mark a column "same as last one"?
11 // FEATURE: reintroduce surface.abort
12
13 import java.io.*;
14 import java.net.*;
15 import java.util.*;
16 import org.xwt.js.*;
17 import org.xwt.util.*;
18 import org.xwt.translators.*;
19
20 /**
21  *  <p>
22  *  Encapsulates the data for a single XWT box as well as all layout
23  *  rendering logic.
24  *  </p>
25  *
26  *  <p>The rendering process consists of four phases; each requires
27  *     one DFS pass over the tree</p>
28  *  <ol><li> <b>repacking</b>: children of a box are packed into columns
29  *           and rows according to their colspan/rowspan attributes and
30  *           ordering.
31  *  <ol><li> <b>reconstraining</b>: Minimum and maximum sizes of columns are computed.
32  *      <li> <b>resizing</b>: width/height and x/y positions of children
33  *           are assigned, and PosChange/SizeChanges are triggered.
34  *      <li> <b>repainting</b>: children draw their content onto the PixelBuffer.
35  *  </ol>
36  *
37  *  The first three passes together are called the <i>reflow</i> phase.
38  *  Reflowing is done in a seperate pass since PosChanges and
39  *  SizeChanges trigger an Surface.abort; if rendering were done in the same
40  *  pass, rendering work done prior to the Surface.abort would be wasted.
41  */
42 public final class Box extends JSScope implements JSTrap.JSTrappable {
43
44     // Macros //////////////////////////////////////////////////////////////////////
45
46     //#define LENGTH int
47     //#define MARK_REPACK for(Box b2 = this; b2 != null && !b2.test(REPACK); b2 = b2.parent) b2.set(REPACK);
48     //#define MARK_REPACK_b for(Box b2 = b; b2 != null && !b2.test(REPACK); b2 = b2.parent) b2.set(REPACK);
49     //#define MARK_REPACK_parent for(Box b2 = parent; b2 != null && !b2.test(REPACK); b2 = b2.parent) b2.set(REPACK);
50     //#define MARK_REFLOW for(Box b2 = this; b2 != null && !b2.test(REFLOW); b2 = b2.parent) b2.set(REFLOW);
51     //#define MARK_REFLOW_b for(Box b2 = b; b2 != null && !b2.test(REFLOW); b2 = b2.parent) b2.set(REFLOW);
52     //#define MARK_RESIZE for(Box b2 = this; b2 != null && !b2.test(RESIZE); b2 = b2.parent) b2.set(RESIZE);
53     //#define MARK_RESIZE_b for(Box b2 = b; b2 != null && !b2.test(RESIZE); b2 = b2.parent) b2.set(RESIZE);
54     //#define CHECKSET_SHORT(prop) short nu = (short)toInt(value); if (nu == prop) break; prop = nu;
55     //#define CHECKSET_INT(prop) int nu = toInt(value); if (nu == prop) break; prop = nu;
56     //#define CHECKSET_FLAG(flag) boolean nu = toBoolean(value); if (nu == test(flag)) break; if (nu) set(flag); else clear(flag);
57     //#define CHECKSET_BOOLEAN(prop) boolean nu = toBoolean(value); if (nu == prop) break; prop = nu;
58     //#define CHECKSET_STRING(prop) if ((value==null&&prop==null)||(value!=null&&value.equals(prop))) break; prop=(String)value;
59
60     protected Box() { super(null); }
61
62     static Hash boxToCursor = new Hash(500, 3);
63     public static final int MAX_LENGTH = Integer.MAX_VALUE;
64
65     // Flags //////////////////////////////////////////////////////////////////////
66
67     static final int MOUSEINSIDE  = 0x00000001;
68     static final int VISIBLE      = 0x00000002;
69     static final int PACKED       = 0x00000004;
70     static final int HSHRINK      = 0x00000008;
71     static final int VSHRINK      = 0x00000010;
72     static final int BLACK        = 0x00000020;  // for red-black code
73
74     static final int FIXED        = 0x00000040;
75     static final boolean ROWS     = true;
76     static final boolean COLS     = false;
77
78     static final int ISROOT       = 0x00000080;
79     static final int REPACK       = 0x00000100;
80     static final int REFLOW       = 0x00000200;
81     static final int RESIZE       = 0x00000400;
82     static final int RECONSTRAIN  = 0x00000800;
83     static final int ALIGN_TOP    = 0x00001000;
84     static final int ALIGN_BOTTOM = 0x00002000;
85     static final int ALIGN_LEFT   = 0x00004000;
86     static final int ALIGN_RIGHT  = 0x00008000;
87     static final int ALIGNS       = 0x0000f000;
88     static final int CURSOR       = 0x00010000;  // if true, this box has a cursor in the cursor hash; FEATURE: GC issues?
89     static final int NOCLIP       = 0x00020000;
90
91
92     // Instance Data //////////////////////////////////////////////////////////////////////
93
94     Box parent = null;
95     Box redirect = this;
96     int flags = VISIBLE | PACKED | REPACK | REFLOW | RESIZE | FIXED /* ROWS */;
97
98     private String text = null;
99     private Font font = null;
100     private Picture.Holder texture;
101     private short strokewidth = 1;
102     private int fillcolor = 0x00000000;
103     private int strokecolor = 0xFF000000;
104
105     // specified directly by user
106     public LENGTH minwidth = 0;
107     public LENGTH maxwidth = MAX_LENGTH;
108     public LENGTH minheight = 0;
109     public LENGTH maxheight = MAX_LENGTH;
110     private short rows = 1;
111     private short cols = 0;
112     private short rowspan = 1;
113     private short colspan = 1;
114
115     // computed during reflow
116     private short row = 0;
117     private short col = 0;
118     public LENGTH x = 0;
119     public LENGTH y = 0;
120     public LENGTH width = 0;
121     public LENGTH height = 0;
122     private LENGTH contentwidth = 0;      // == max(minwidth, textwidth, sum(child.contentwidth))
123     private LENGTH contentheight = 0;
124
125     /*
126     private VectorGraphics.VectorPath path = null;
127     private VectorGraphics.Affine transform = null;
128     private VectorGraphics.RasterPath rpath = null;
129     private VectorGraphics.Affine rtransform = null;
130     */
131
132     // Instance Methods /////////////////////////////////////////////////////////////////////
133
134     public Box getRoot() { return parent == null ? this : parent.getRoot(); }
135     public Surface getSurface() { return Surface.fromBox(getRoot()); }
136
137     // FEATURE: use cx2/cy2 format
138     /** Adds the intersection of (x,y,w,h) and the node's current actual geometry to the Surface's dirty list */
139     public void dirty() { dirty(0, 0, width, height); }
140     public void dirty(int x, int y, int w, int h) {
141         for(Box cur = this; cur != null; cur = cur.parent) {
142             if (!cur.test(NOCLIP)) {
143                 w = min(x + w, cur.width) - max(x, 0);
144                 h = min(y + h, cur.height) - max(y, 0);
145                 x = max(x, 0);
146                 y = max(y, 0);
147             }
148             if (w <= 0 || h <= 0) return;
149             if (cur.parent == null && cur.getSurface() != null) cur.getSurface().dirty(x, y, w, h);
150             x += cur.x;
151             y += cur.y;
152         }
153     }
154
155     public void putAndTriggerJSTraps(Object key, Object value) {
156         JSContext.invokeTrap(this, key, value);
157     }
158
159     /** update MOUSEINSIDE, check for Enter/Leave/Move */
160     void Move(int oldmousex, int oldmousey, int mousex, int mousey) { Move(oldmousex, oldmousey, mousex, mousey, false); }
161     void Move(int oldmousex, int oldmousey, int mousex, int mousey, boolean forceleave) {
162         boolean wasinside = test(MOUSEINSIDE);
163         boolean isinside = test(VISIBLE) && inside(mousex, mousey) && !forceleave;
164         if (isinside) set(MOUSEINSIDE); else clear(MOUSEINSIDE);
165         if (!wasinside && !isinside) return;
166         
167         if (isinside && test(CURSOR)) Surface.fromBox(getRoot()).cursor = (String)boxToCursor.get(this);
168         if (!wasinside && isinside && getTrap("Enter") != null) putAndTriggerJSTraps("Enter", T);
169         else if (wasinside && !isinside && getTrap("Leave") != null) putAndTriggerJSTraps("Leave", T);
170         else if (wasinside && isinside && (mousex != oldmousex || mousey != oldmousey) && getTrap("Move")!= null)
171             putAndTriggerJSTraps("Move", T);
172         for(Box b = getChild(numchildren - 1); b != null; b = b.prevSibling()) {
173             b.Move(oldmousex - b.x, oldmousey - b.y, mousex - b.x, mousey - b.y, forceleave);
174             if (b.inside(mousex - b.x, mousey - b.y)) forceleave = true;
175         }
176     }
177
178
179     // Reflow ////////////////////////////////////////////////////////////////////////////////////////
180
181     // static stuff so we don't have to keep reallocating
182     private static int[] numRowsInCol = new int[65535];
183     private static LENGTH[] colWidth = new LENGTH[65535];
184     private static LENGTH[] colMaxWidth = new LENGTH[65535];
185     private static LENGTH[] rowHeight = new LENGTH[65535];
186     private static LENGTH[] rowMaxHeight = new LENGTH[65535];
187     static { for(int i=0; i<rowMaxHeight.length; i++) { rowMaxHeight[i] = MAX_LENGTH; colMaxWidth[i] = MAX_LENGTH; } }
188
189     Box nextPackedSibling() { Box b = nextSibling(); return b == null || (b.test(PACKED | VISIBLE)) ? b : b.nextPackedSibling(); }
190     Box firstPackedChild() { Box b = getChild(0); return b == null || (b.test(PACKED | VISIBLE)) ? b : b.nextPackedSibling(); }
191
192     /** only for use on the root box */
193     void reflow(int new_width, int new_height) {
194         repack();
195         /*
196         new_width = bound(max(contentwidth, minwidth), new_width, test(HSHRINK) ? max(contentwidth, minwidth) : maxwidth);
197         new_height = bound(max(contentheight, minheight), new_height, test(VSHRINK) ? max(contentheight, minheight) : maxheight);
198         */
199         resize(x, y, new_width, new_height);
200         resize_children();
201     }
202
203     /** pack the boxes into rows and columns; also computes contentwidth */
204     void repack() {
205         for(Box child = getChild(0); child != null; child = child.nextSibling()) child.repack();
206
207         //#repeat COLS/ROWS rows/cols cols/rows col/row row/col colspan/rowspan rowspan/colspan 
208         if (test(FIXED) == COLS) {
209             short r = 0;
210             for(Box child = firstPackedChild(); child != null; r++) {
211                 for(short c=0, numclear=0; child != null && c < cols; c++) {
212                     if (numRowsInCol[c] > r) continue;
213                     if (c != 0 && c + min(cols, child.colspan) - numclear > cols) break;
214                     if (++numclear < min(cols, child.colspan)) continue;
215                     for(int i=c - numclear + 1; i <= c; i++) numRowsInCol[i] += child.rowspan;
216                     child.col = (short)(c - numclear + 1); child.row = r;
217                     rows = (short)max(rows, child.row + child.rowspan);
218                     child = child.nextPackedSibling();
219                     numclear = 0;
220                 }
221             }
222             for(int i=0; i<cols; i++) numRowsInCol[i] = 0;
223         }
224         //#end
225
226         //#repeat contentwidth/contentheight colWidth/rowHeight colspan/rowspan col/row cols/rows minwidth/minheight \
227         //        textwidth/textheight maxwidth/maxheight
228         contentwidth = 0;
229         for(Box child = firstPackedChild(); child != null; child = child.nextPackedSibling())
230             colWidth[child.col] = max(colWidth[child.col], child.contentwidth / child.colspan);
231         for(int i=0; i<cols; i++) { contentwidth += colWidth[i]; colWidth[i] = 0; }
232         contentwidth = bound(minwidth, max(font == null || text == null ? 0 : font.textwidth(text), contentwidth), maxwidth);
233         //#end               
234     }
235     
236     private void resize(LENGTH x, LENGTH y, LENGTH width, LENGTH height) {
237         // FEATURE reimplement, but we're destroying this
238         if (x != this.x || y != this.y || width != this.width || height != this.height) {
239             (parent == null ? this : parent).dirty(this.x, this.y, this.width, this.height);
240             boolean sizechange = (this.width != width || this.height != height) && getTrap("SizeChange") != null;
241             boolean poschange = (this.x != x || this.y != y) && getTrap("PosChange") != null;
242             this.width = width; this.height = height; this.x = x; this.y = y;
243             dirty();
244             try { if (sizechange) putAndTriggerJSTraps("SizeChange", T); /*Surface.abort = true;*/ }
245             catch (Exception e) { Log.log(this, e); }
246             try { if (poschange) putAndTriggerJSTraps("PosChange", T); /*Surface.abort = true;*/ }
247             catch (Exception e) { Log.log(this, e); }
248         }
249     }
250
251     private void resize_children() {
252
253         //#repeat col/row colspan/rowspan contentwidth/contentheight x/y width/height colMaxWidth/rowMaxHeight colWidth/rowHeight \
254         //        HSHRINK/VSHRINK maxwidth/maxheight cols/rows minwidth/minheight colWidth/rowHeight x_slack/y_slack
255         // PHASE 1: compute column min/max sizes
256         int x_slack = width;
257         for(int i=0; i<cols; i++) x_slack -= colWidth[i];
258         for(Box child = firstPackedChild(); child != null; child = child.nextPackedSibling())
259             for(int i=child.col; i < child.col + child.colspan; i++) {
260                 x_slack += colWidth[i];
261                 colWidth[i] = max(colWidth[i], child.contentwidth / child.colspan);
262                 x_slack -= colWidth[i];
263                 colMaxWidth[i] = min(colMaxWidth[i], child.test(HSHRINK) ? child.contentwidth : child.maxwidth) / child.colspan;
264             }
265         
266         // PHASE 2: hand out slack
267         for(int startslack = 0; x_slack > 0 && cols > 0 && startslack != x_slack;) {
268             int increment = max(1, x_slack / cols);
269             startslack = x_slack;
270             for(short col=0; col < cols; col++) {
271                 int diff = min(colMaxWidth[col], colWidth[col] + increment) - colWidth[col];
272                 x_slack -= diff;
273                 colWidth[col] += diff;
274             }
275         }   
276         //#end
277
278         // Phase 3: assign childrens' actual sizes
279         for(Box child = getChild(0); child != null; child = child.nextSibling()) {
280             if (!child.test(VISIBLE)) continue;
281             int child_width, child_height, child_x, child_y;
282             if (!child.test(PACKED)) {
283                 child_x = child.x;
284                 child_y = child.y;
285                 child_width = child.test(HSHRINK) ? child.contentwidth : min(child.maxwidth, width - child.x);
286                 child_height = child.test(VSHRINK) ? child.contentheight : min(child.maxheight, height - child.y);
287                 child_width = max(child.minwidth, child_width);
288                 child_height = max(child.minheight, child_height);
289             } else {
290                 int unbounded;
291                 //#repeat col/row colspan/rowspan contentwidth/contentheight width/height colMaxWidth/rowMaxHeight \
292                 //        child_x/child_y x/y HSHRINK/VSHRINK maxwidth/maxheight cols/rows minwidth/minheight x_slack/y_slack \
293                 //        colWidth/rowHeight child_width/child_height ALIGN_RIGHT/ALIGN_BOTTOM ALIGN_LEFT/ALIGN_TOP
294                 unbounded = 0;
295                 for(int i = child.col; i < child.col + child.colspan; i++) unbounded += colWidth[i];
296                 child_width = min(unbounded, child.test(HSHRINK) ? child.contentwidth : child.maxwidth);
297                 child_x = test(ALIGN_RIGHT) ? x_slack : test(ALIGN_LEFT) ? 0 : x_slack / 2;
298                 for(int i=0; i < child.col; i++) child_x += colWidth[i];
299                 if (child_width > unbounded) child_x -= (child_width - unbounded) / 2;
300                 //#end
301             }
302             child.resize(child_x, child_y, child_width, child_height);
303         }
304
305         // cleanup
306         for(int i=0; i<cols; i++) { colWidth[i] = 0; colMaxWidth[i] = MAX_LENGTH; }
307         for(int i=0; i<rows; i++) { rowHeight[i] = 0; rowMaxHeight[i] = MAX_LENGTH; }
308
309         for(Box child = getChild(0); child != null; child = child.nextSibling())
310             if (test(VISIBLE))
311                 child.resize_children();
312     }
313
314
315
316     // Rendering Pipeline /////////////////////////////////////////////////////////////////////
317
318     /** Renders self and children within the specified region. All rendering operations are clipped to xIn,yIn,wIn,hIn */
319     void render(int parentx, int parenty, int cx1, int cy1, int cx2, int cy2, PixelBuffer buf, VectorGraphics.Affine a) {
320         if (!test(VISIBLE)) return;
321         int globalx = parentx + (parent == null ? 0 : x);
322         int globaly = parenty + (parent == null ? 0 : y);
323
324         // intersect the x,y,w,h rendering window with ourselves; quit if it's empty
325         if (!test(NOCLIP)) {
326             cx1 = max(cx1, parent == null ? 0 : globalx);
327             cy1 = max(cy1, parent == null ? 0 : globaly);
328             cx2 = min(cx2, globalx + width);
329             cy2 = min(cy2, globaly + height);
330             if (cx2 <= cx1 || cy2 <= cy1) return;
331         }
332
333         if ((fillcolor & 0xFF000000) != 0x00000000)
334             buf.fillTrapezoid(globalx, globalx + width, globaly, globalx, globalx + width, globaly + height, fillcolor);
335
336         if (texture != null && texture.picture != null)
337             for(int x = globalx; x < cx2; x += texture.picture.getWidth())
338                 for(int y = globaly; y < cy2; y += texture.picture.getHeight())
339                     buf.drawPicture(texture.picture, x, y, cx1, cy1, cx2, cy2);
340
341         if (text != null && !text.equals("") && font != null)
342             if (font.rasterizeGlyphs(text, buf, strokecolor, globalx, globaly, cx1, cy1, cx2, cy2, null) == -1)
343                 font.rasterizeGlyphs(text, buf, strokecolor, globalx, globaly, cx1, cy1, cx2, cy2,
344                                     new Scheduler.Task() { public void perform() { Box b = Box.this; MARK_REFLOW_b; dirty(); }});
345
346         for(Box b = getChild(0); b != null; b = b.nextSibling())
347             b.render(globalx, globaly, cx1, cy1, cx2, cy2, buf, null);
348     }
349     
350     
351     // Methods to implement org.xwt.js.JS //////////////////////////////////////
352
353     public int globalToLocalX(int x) { return parent == null ? x : parent.globalToLocalX(x - this.x); }
354     public int globalToLocalY(int y) { return parent == null ? y : parent.globalToLocalY(y - this.y); }
355     public int localToGlobalX(int x) { return parent == null ? x : parent.globalToLocalX(x + this.x); }
356     public int localToGlobalY(int y) { return parent == null ? y : parent.globalToLocalY(y + this.y); }
357     
358     public Object callMethod(Object method, Object a0, Object a1, Object a2, Object[] rest, int nargs) throws JS.Exn {
359         if (nargs != 1 || !"indexof".equals(method)) return super.callMethod(method, a0, a1, a2, rest, nargs);
360         Box b = (Box)a0;
361         if (b.parent != this)
362             return (redirect == null || redirect == this) ?
363                 N(-1) :
364                 redirect.callMethod(method, a0, a1, a2, rest, nargs);
365         return N(b.getIndexInParent());
366     }
367
368     public Enumeration keys() { throw new Error("you cannot apply for..in to a " + this.getClass().getName()); }
369
370     /** to be filled in by the Tree implementation */
371     public int numchildren = 0;
372
373     public Object get(Object name) { return get(name, false); }
374     public Object get(Object name, boolean ignoretraps) {
375         if (name instanceof Number)
376             return redirect == null ? null : redirect == this ? getChild(toInt(name)) : redirect.get(name);
377
378         //#switch(name)
379         case "indexof": return METHOD;
380         case "text": return text;
381         case "path": throw new JS.Exn("cannot read from the path property");
382         case "fill": return colorToString(fillcolor);
383         case "strokecolor": return colorToString(strokecolor);
384         case "textcolor": return colorToString(strokecolor);
385         case "font": return font == null ? null : font.res;
386         case "fontsize": return font == null ? N(10) : N(font.pointsize);
387         case "strokewidth": return N(strokewidth);
388         case "align": return alignToString();
389         case "thisbox": return this;
390         case "shrink": return B(test(HSHRINK) || test(VSHRINK));
391         case "hshrink": return B(test(HSHRINK));
392         case "vshrink": return B(test(VSHRINK));
393         case "x": return (parent == null || !test(VISIBLE)) ? N(0) : N(x);
394         case "y": return (parent == null || !test(VISIBLE)) ? N(0) : N(y);
395         case "width": return N(width);
396         case "height": return N(height);
397         case "cols": return test(FIXED) == COLS ? N(cols) : N(0);
398         case "rows": return test(FIXED) == ROWS ? N(rows) : N(0);
399         case "colspan": return N(colspan);
400         case "rowspan": return N(rowspan);
401         case "noclip": return B(test(NOCLIP));
402         case "visible": return B(test(VISIBLE) && (parent == null || (parent.get("visible") == T)));
403         case "packed": return B(test(PACKED));
404         case "globalx": return N(localToGlobalX(0));
405         case "globaly": return N(localToGlobalY(0));
406         case "cursor": return test(CURSOR) ? boxToCursor.get(this) : null;
407         case "mousex": { Surface s = getSurface(); return N(s == null ? 0 : globalToLocalX(s.mousex)); }
408         case "mousey": { Surface s = getSurface(); return N(s == null ? 0 : globalToLocalY(s.mousey)); }
409         case "mouseinside": return B(test(MOUSEINSIDE));
410         case "numchildren": return redirect == null ? N(0) : redirect == this ? N(numchildren) : redirect.get("numchildren");
411         case "minwidth": return N(minwidth);
412         case "maxwidth": return N(maxwidth);
413         case "minheight": return N(minheight);
414         case "maxheight": return N(maxheight);
415         case "redirect": return redirect == null ? null : redirect == this ? T : redirect.get("redirect");
416         case "Minimized": if (parent == null && getSurface() != null) return B(getSurface().minimized);
417         default: return super.get(name);
418         //#end
419         return null;
420     }
421
422     public void put(Object name, Object value) { put(name, value, false); }
423     public void put(Object name, Object value, boolean ignoretraps) {
424         if (name instanceof Number) { put(toInt(name), value); return; }
425
426         //#switch(name)
427         case "text": CHECKSET_STRING(text); MARK_RESIZE; dirty();
428         case "strokecolor": value = N(stringToColor((String)value)); CHECKSET_INT(strokecolor); MARK_RESIZE; dirty();
429         case "textcolor": value = N(stringToColor((String)value)); CHECKSET_INT(strokecolor); MARK_RESIZE; dirty();
430         case "text": CHECKSET_STRING(text); MARK_RESIZE; dirty();
431         case "strokewidth": CHECKSET_SHORT(strokewidth); dirty();
432         case "thisbox": if (value == null) remove();
433         case "shrink": put("hshrink", value); put("vshrink", value);
434         case "hshrink": CHECKSET_FLAG(HSHRINK); MARK_RESIZE;
435         case "vshrink": CHECKSET_FLAG(VSHRINK); MARK_RESIZE;
436         case "width": if (parent==null&&Surface.fromBox(this)!=null) { CHECKSET_INT(width); } else { put("maxwidth", value); put("minwidth", value); MARK_RESIZE; }
437         case "height": if (parent == null&&Surface.fromBox(this)!=null) { CHECKSET_INT(height); } else { put("maxheight", value); put("minheight", value); MARK_RESIZE; }
438         case "maxwidth": CHECKSET_INT(maxwidth); MARK_RESIZE;
439         case "minwidth": CHECKSET_INT(minwidth); MARK_RESIZE;
440         case "maxheight": CHECKSET_INT(maxheight); MARK_RESIZE;
441         case "minheight": CHECKSET_INT(minheight); MARK_RESIZE;
442         case "colspan": CHECKSET_SHORT(colspan); MARK_REPACK_parent;
443         case "rowspan": CHECKSET_SHORT(colspan); MARK_REPACK_parent;
444         case "rows": CHECKSET_SHORT(rows); if (rows==0){set(FIXED, COLS);if(cols==0)cols=1;} else set(FIXED, ROWS); MARK_REPACK;
445         case "cols": CHECKSET_SHORT(cols); if (cols==0){set(FIXED, ROWS);if(rows==0)rows=1;} else set(FIXED, COLS); MARK_REPACK;
446         case "noclip": CHECKSET_FLAG(NOCLIP); if (parent == null) dirty(); else parent.dirty();
447         case "visible": CHECKSET_FLAG(VISIBLE); dirty(); MARK_RESIZE; dirty();
448         case "packed": CHECKSET_FLAG(PACKED); MARK_REPACK_parent;
449         case "globalx": put("x", N(globalToLocalX(toInt(value))));
450         case "globaly": put("y", N(globalToLocalY(toInt(value))));
451         case "align": clear(ALIGNS); setAlign(value == null ? "center" : value); MARK_RESIZE;
452         case "cursor": setCursor(value);
453         case "fill": setFill(value);
454         case "Press1": mouseEvent("Press1", value);
455         case "Press2": mouseEvent("Press2", value);
456         case "Press3": mouseEvent("Press3", value);
457         case "Release1": mouseEvent("Release1", value);
458         case "Release2": mouseEvent("Release2", value);
459         case "Release3": mouseEvent("Release3", value);
460         case "Click1": mouseEvent("Click1", value);
461         case "Click2": mouseEvent("Click2", value);
462         case "Click3": mouseEvent("Click3", value);
463         case "DoubleClick1": mouseEvent("DoubleClick1", value);
464         case "DoubleClick2": mouseEvent("DoubleClick2", value);
465         case "DoubleClick3": mouseEvent("DoubleClick3", value);
466         case "Minimized": if (parent == null && getSurface() != null) getSurface().minimized = toBoolean(value);  // FEATURE
467         case "Maximized": if (parent == null && getSurface() != null) getSurface().maximized = toBoolean(value);  // FEATURE
468         case "Close": if (parent == null && getSurface() != null) getSurface().dispose(true);
469         case "toback": if (parent == null && getSurface() != null && toBoolean(value)) { getSurface().toBack(); }
470         case "tofront": if (parent == null && getSurface() != null && toBoolean(value)) { getSurface().toFront(); }
471         case "redirect": if (redirect == this) redirect = (Box)value; else Log.log(this, "redirect can only be set once");
472         case "font": font = value == null ? null : Font.getFont((Res)value, font == null ? 10 : font.pointsize); MARK_RESIZE; dirty();
473         case "fontsize": font = Font.getFont(font == null ? null : font.res, toInt(value)); MARK_RESIZE; dirty();
474         case "x": if (test(PACKED) && parent != null) return; CHECKSET_INT(x); dirty(); MARK_RESIZE; dirty();
475         case "y": if (test(PACKED) && parent != null) return; CHECKSET_INT(y); dirty(); MARK_RESIZE; dirty();
476         case "KeyPressed":     // prevent stuff from hitting the Hash
477         case "KeyReleased":    // prevent stuff from hitting the Hash
478         case "PosChange":      // prevent stuff from hitting the Hash
479         case "SizeChange":     // prevent stuff from hitting the Hash
480         case "childadded":     // prevent stuff from hitting the Hash
481         case "childremoved":   // prevent stuff from hitting the Hash
482         //#end
483     }
484
485     private String alignToString() {
486         switch(flags & ALIGNS) {
487             case (ALIGN_TOP | ALIGN_LEFT): return "topleft";
488             case (ALIGN_BOTTOM | ALIGN_LEFT): return "bottomleft";
489             case (ALIGN_TOP | ALIGN_RIGHT): return "topright";
490             case (ALIGN_BOTTOM | ALIGN_RIGHT): return "bottomright";
491             case ALIGN_TOP: return "top";
492             case ALIGN_BOTTOM: return "bottom";
493             case ALIGN_LEFT: return "left";
494             case ALIGN_RIGHT: return "right";
495             case 0: return "center";
496             default: throw new Error("invalid alignment flags: " + (flags & ALIGNS));
497         }
498     }
499
500     private void setAlign(Object value) {
501         //#switch(value)
502         case "center": clear(ALIGNS);
503         case "topleft": set(ALIGN_TOP | ALIGN_LEFT);
504         case "bottomleft": set(ALIGN_BOTTOM | ALIGN_LEFT);
505         case "topright": set(ALIGN_TOP | ALIGN_RIGHT);
506         case "bottomright": set(ALIGN_BOTTOM | ALIGN_RIGHT);
507         case "top": set(ALIGN_TOP);
508         case "bottom": set(ALIGN_BOTTOM);
509         case "left": set(ALIGN_LEFT);
510         case "right": set(ALIGN_RIGHT);
511         default: Log.logJS("invalid alignment \"" + value + "\"");
512         //#end
513     }
514     
515     private void setCursor(Object value) {
516         if (value == null) { clear(CURSOR); boxToCursor.remove(this); return; }
517         if (value.equals(boxToCursor.get(this))) return;
518         set(CURSOR);
519         boxToCursor.put(this, value);
520         Surface surface = getSurface();
521         String tempcursor = surface.cursor;
522         Move(surface.mousex, surface.mousey, surface.mousex, surface.mousey);
523         if (surface.cursor != tempcursor) surface.syncCursor();
524     }
525
526     private void setFill(Object value) {
527         if (value == null) return;
528         if (value instanceof String) {
529             // FIXME check double set
530             int newfillcolor = stringToColor((String)value);
531             if (newfillcolor == fillcolor) return;
532             fillcolor = newfillcolor;
533             dirty();
534             return;
535         }
536         if (!(value instanceof Res)) return;
537         texture = Picture.fromRes((Res)value, null);
538         if (texture != null) {
539             minwidth = texture.picture.getWidth();
540             minheight = texture.picture.getHeight();
541             MARK_REFLOW;
542             dirty();
543             return;
544         }
545         texture = Picture.fromRes((Res)value, new Scheduler.Task() { public void perform() {
546             minwidth = texture.picture.getWidth();
547             minheight = texture.picture.getHeight();
548             Box b = Box.this; MARK_REFLOW_b;
549             dirty();
550         } });
551     }
552         
553     private void mouseEvent(String name, Object value) {
554         Surface surface = getSurface();
555         if (surface == null) return;
556         int mousex = globalToLocalX(surface.mousex);
557         int mousey = globalToLocalY(surface.mousey);
558         for(Box c = prevSibling(); c != null; c = c.prevSibling())
559             if (c.inside(mousex - c.x, mousey - c.y)) { c.putAndTriggerJSTraps(name, value); return; }
560         if (parent != null) parent.putAndTriggerJSTraps(name, value);
561     }
562
563     private static int stringToColor(String s) {
564         if (s == null) return 0x00000000;
565         else if (SVG.colors.get(s) != null) return 0xFF000000 | toInt(SVG.colors.get(s));
566         else if (s.length() > 0 && s.charAt(0) == '#') try {
567             // FEATURE  alpha
568             return 0xFF000000 |
569                 (Integer.parseInt(s.substring(1, 3), 16) << 16) |
570                 (Integer.parseInt(s.substring(3, 5), 16) << 8) |
571                 Integer.parseInt(s.substring(5, 7), 16);
572         } catch (NumberFormatException e) {
573             Log.log(Box.class, "invalid color " + s);
574             return 0;
575         }
576         else return 0; // FEATURE: error?
577     }
578
579     private static String colorToString(int argb) {
580         if ((argb & 0xFF000000) == 0) return null;
581         String red = Integer.toHexString((argb & 0x00FF0000) >> 16);
582         String green = Integer.toHexString((argb & 0x0000FF00) >> 8);
583         String blue = Integer.toHexString(argb & 0x000000FF);
584         if (red.length() < 2) red = "0" + red;
585         if (blue.length() < 2) blue = "0" + blue;
586         if (green.length() < 2) green = "0" + green;
587         return "#" + red + green + blue;
588     }
589
590     /** figures out what box in this subtree of the Box owns the pixel at x,y relitave to the Surface */
591     public static Box whoIs(Box cur, int x, int y) {
592
593         if (cur.parent != null) throw new Error("whoIs may only be invoked on the root box of a surface");
594         int globalx = 0;
595         int globaly = 0;
596
597         // WARNING: this method is called from the event-queueing thread -- it may run concurrently with
598         // ANY part of XWT, and is UNSYNCHRONIZED for performance reasons.  BE CAREFUL HERE.
599
600         if (!cur.test(VISIBLE)) return null;
601         if (!cur.inside(x - globalx, y - globaly)) return cur.parent == null ? cur : null;
602         OUTER: while(true) {
603             for(int i=cur.numchildren - 1; i>=0; i--) {
604                 Box child = cur.getChild(i);
605                 if (child == null) continue;        // since this method is unsynchronized, we have to double-check
606                 globalx += child.x;
607                 globaly += child.y;
608                 if (child.test(VISIBLE) && child.inside(x - globalx, y - globaly)) { cur = child; continue OUTER; }
609                 globalx -= child.x;
610                 globaly -= child.y;
611             }
612             break;
613         }
614         return cur;
615     }
616
617
618     // Trivial Helper Methods (should be inlined) /////////////////////////////////////////
619
620     static short min(short a, short b) { if (a<b) return a; else return b; }
621     static int min(int a, int b) { if (a<b) return a; else return b; }
622     static float min(float a, float b) { if (a<b) return a; else return b; }
623
624     static short max(short a, short b) { if (a>b) return a; else return b; }
625     static int max(int a, int b) { if (a>b) return a; else return b; }
626     static float max(float a, float b) { if (a>b) return a; else return b; }
627
628     static int min(int a, int b, int c) { if (a<=b && a<=c) return a; else if (b<=c && b<=a) return b; else return c; }
629     static int max(int a, int b, int c) { if (a>=b && a>=c) return a; else if (b>=c && b>=a) return b; else return c; }
630     static int bound(int a, int b, int c) { if (c < b) return c; if (a > b) return a; return b; }
631     final boolean inside(int x, int y) { return test(VISIBLE) && x >= 0 && y >= 0 && x < width && y < height; }
632
633     void set(int mask) { flags |= mask; }
634     void set(int mask, boolean setclear) { if (setclear) set(mask); else clear(mask); }
635     void clear(int mask) { flags &= ~mask; }
636     boolean test(int mask) { return ((flags & mask) == mask); }
637     
638     protected Box left = null;
639     protected Box right = null;
640     protected Box rootChild = null;
641     protected Box peerTree_parent = null;
642
643
644     // Tree Handling //////////////////////////////////////////////////////////////////////
645
646
647     private static boolean REDbool = false;
648     private static boolean BLACKbool = true;
649
650     public final Box peerTree_leftmost() { for (Box p = this; ; p = p.left) if (p.left == null) return p; }
651     public final Box peerTree_rightmost() { for (Box p = this; ; p = p.right) if (p.right == null) return p; }
652     static Box     peerTree_parent(Box p) { return (p == null)? null: p.peerTree_parent; }
653
654     public Box insertBeforeMe(Box cell) { left = cell; cell.peerTree_parent = this; return cell.fixAfterInsertion(); }
655     public Box insertAfterMe(Box cell) { right = cell; cell.peerTree_parent = this; return cell.fixAfterInsertion(); }
656
657     static boolean colorOf(Box p) { return (p == null) ? BLACKbool : p.test(BLACK); }
658     static void    setColor(Box p, boolean c) { if (p != null) { if (c) p.set(BLACK); else p.clear(BLACK); } }
659     static Box     leftOf(Box p) { return (p == null)? null: p.left; }
660     static Box     rightOf(Box p) { return (p == null)? null: p.right; }
661
662     public final Box nextSibling() {
663         if (right != null)
664             return right.peerTree_leftmost();
665         else {
666             Box p = peerTree_parent;
667             Box ch = this;
668             while (p != null && ch == p.right) { ch = p; p = p.peerTree_parent; }
669             return p;
670         }
671     }
672
673     public final Box prevSibling() {
674         if (left != null)
675             return left.peerTree_rightmost();
676         else {
677             Box p = peerTree_parent;
678             Box ch = this;
679             while (p != null && ch == p.left) { ch = p; p = p.peerTree_parent; }
680             return p;
681         }
682     }
683
684     public Box removeNode() {
685         Box root = peerTree_parent.rootChild;
686
687         // handle case where we are only node
688         if (left == null && right == null && peerTree_parent == null) return null;
689
690         // if strictly internal, swap places with a successor
691         if (left != null && right != null) {
692             Box s = nextSibling();
693             // To work nicely with arbitrary subclasses of Box, we don't want to
694             // just copy successor's fields. since we don't know what
695             // they are.  Instead we swap positions in the tree.
696             root = swapPosition(this, s);
697         }
698
699         // Start fixup at replacement node (normally a child).
700         // But if no children, fake it by using self
701
702         if (left == null && right == null) {
703       
704             if (test(BLACK)) root = this.fixAfterDeletion();
705
706             // Unlink  (Couldn't before since fixAfterDeletion needs peerTree_parent ptr)
707
708             if (peerTree_parent != null) {
709                 if (this == peerTree_parent.left) 
710                     peerTree_parent.left = null;
711                 else if (this == peerTree_parent.right) 
712                     peerTree_parent.right = null;
713                 peerTree_parent = null;
714             }
715
716         }
717         else {
718             Box replacement = left;
719             if  (replacement == null) replacement = right;
720        
721             // link replacement to peerTree_parent 
722             replacement.peerTree_parent = peerTree_parent;
723
724             if (peerTree_parent == null)             root = replacement; 
725             else if (this == peerTree_parent.left)  peerTree_parent.left  = replacement;
726             else                             peerTree_parent.right = replacement;
727
728             left = null;
729             right = null;
730             peerTree_parent = null;
731
732             // fix replacement
733             if (test(BLACK)) root = replacement.fixAfterDeletion();
734       
735         }
736
737         return root;
738     }
739
740     /**
741      * Swap the linkages of two nodes in a tree.
742      * Return new root, in case it changed.
743      **/
744     Box swapPosition(Box x, Box y) {
745         Box root = peerTree_parent.rootChild;
746
747         /* Too messy. TODO: find sequence of assigments that are always OK */
748
749         Box px = x.peerTree_parent; 
750         boolean xpl = px != null && x == px.left;
751         Box lx = x.left;
752         Box rx = x.right;
753
754         Box py = y.peerTree_parent;
755         boolean ypl = py != null && y == py.left;
756         Box ly = y.left;
757         Box ry = y.right;
758
759         if (x == py) {
760             y.peerTree_parent = px;
761             if (px != null) if (xpl) px.left = y; else px.right = y;
762             x.peerTree_parent = y;
763             if (ypl) { 
764                 y.left = x; 
765                 y.right = rx; if (rx != null) rx.peerTree_parent = y;
766             }
767             else {
768                 y.right = x;
769                 y.left = lx;   if (lx != null) lx.peerTree_parent = y;
770             }
771             x.left = ly;   if (ly != null) ly.peerTree_parent = x;
772             x.right = ry;  if (ry != null) ry.peerTree_parent = x;
773         }
774         else if (y == px) {
775             x.peerTree_parent = py;
776             if (py != null) if (ypl) py.left = x; else py.right = x;
777             y.peerTree_parent = x;
778             if (xpl) { 
779                 x.left = y; 
780                 x.right = ry; if (ry != null) ry.peerTree_parent = x;
781             }
782             else {
783                 x.right = y;
784                 x.left = ly;   if (ly != null) ly.peerTree_parent = x;
785             }
786             y.left = lx;   if (lx != null) lx.peerTree_parent = y;
787             y.right = rx;  if (rx != null) rx.peerTree_parent = y;
788         }
789         else {
790             x.peerTree_parent = py; if (py != null) if (ypl) py.left = x; else py.right = x;
791             x.left = ly;   if (ly != null) ly.peerTree_parent = x;
792             x.right = ry;  if (ry != null) ry.peerTree_parent = x;
793       
794             y.peerTree_parent = px; if (px != null) if (xpl) px.left = y; else px.right = y;
795             y.left = lx;   if (lx != null) lx.peerTree_parent = y;
796             y.right = rx;  if (rx != null) rx.peerTree_parent = y;
797         }
798
799         boolean c = x.test(BLACK);
800         if (y.test(BLACK)) x.set(BLACK); else x.clear(BLACK);
801         if (c) y.set(BLACK); else y.clear(BLACK);
802
803         if (root == x) root = y;
804         else if (root == y) root = x;
805         return parent.rootChild = root;
806     }
807
808     Box rotateLeft() {
809         Box root = parent.rootChild;
810         Box r = right;
811         right = r.left;
812         if (r.left != null) r.left.peerTree_parent = this;
813         r.peerTree_parent = peerTree_parent;
814         if (peerTree_parent == null) root = r;
815         else if (peerTree_parent.left == this) peerTree_parent.left = r;
816         else peerTree_parent.right = r;
817         r.left = this;
818         peerTree_parent = r;
819         return parent.rootChild = root;
820     }
821
822     Box rotateRight() {
823         Box root = parent.rootChild;
824         Box l = left;
825         left = l.right;
826         if (l.right != null) l.right.peerTree_parent = this;
827         l.peerTree_parent = peerTree_parent;
828         if (peerTree_parent == null) root = l;
829         else if (peerTree_parent.right == this) peerTree_parent.right = l;
830         else peerTree_parent.left = l;
831         l.right = this;
832         peerTree_parent = l;
833         return parent.rootChild;
834     }
835
836     Box fixAfterInsertion() {
837         Box root = parent.rootChild;
838         clear(BLACK);
839         Box x = this;
840     
841         while (x != null && x != root && !x.peerTree_parent.test(BLACK)) {
842             if (peerTree_parent(x) == leftOf(peerTree_parent(peerTree_parent(x)))) {
843                 Box y = rightOf(peerTree_parent(peerTree_parent(x)));
844                 if (colorOf(y) == REDbool) {
845                     setColor(peerTree_parent(x), BLACKbool);
846                     setColor(y, BLACKbool);
847                     setColor(peerTree_parent(peerTree_parent(x)), REDbool);
848                     x = peerTree_parent(peerTree_parent(x));
849                 }
850                 else {
851                     if (x == rightOf(peerTree_parent(x))) {
852                         x = peerTree_parent(x);
853                         root = x.rotateLeft();
854                     }
855                     setColor(peerTree_parent(x), BLACKbool);
856                     setColor(peerTree_parent(peerTree_parent(x)), REDbool);
857                     if (peerTree_parent(peerTree_parent(x)) != null) 
858                         root = peerTree_parent(peerTree_parent(x)).rotateRight();
859                 }
860             }
861             else {
862                 Box y = leftOf(peerTree_parent(peerTree_parent(x)));
863                 if (colorOf(y) == REDbool) {
864                     setColor(peerTree_parent(x), BLACKbool);
865                     setColor(y, BLACKbool);
866                     setColor(peerTree_parent(peerTree_parent(x)), REDbool);
867                     x = peerTree_parent(peerTree_parent(x));
868                 }
869                 else {
870                     if (x == leftOf(peerTree_parent(x))) {
871                         x = peerTree_parent(x);
872                         root = x.rotateRight();
873                     }
874                     setColor(peerTree_parent(x),  BLACKbool);
875                     setColor(peerTree_parent(peerTree_parent(x)), REDbool);
876                     if (peerTree_parent(peerTree_parent(x)) != null) 
877                         root = peerTree_parent(peerTree_parent(x)).rotateLeft();
878                 }
879             }
880         }
881         root.set(BLACK);
882         return parent.rootChild = root;
883     }
884
885     /** From CLR **/
886     Box fixAfterDeletion() {
887         Box root = peerTree_parent.rootChild;
888         Box x = this;
889         while (x != root && colorOf(x) == BLACKbool) {
890             if (x == leftOf(peerTree_parent(x))) {
891                 Box sib = rightOf(peerTree_parent(x));
892                 if (colorOf(sib) == REDbool) {
893                     setColor(sib, BLACKbool);
894                     setColor(peerTree_parent(x), REDbool);
895                     root = peerTree_parent(x).rotateLeft();
896                     sib = rightOf(peerTree_parent(x));
897                 }
898                 if (colorOf(leftOf(sib)) == BLACKbool && colorOf(rightOf(sib)) == BLACKbool) {
899                     setColor(sib,  REDbool);
900                     x = peerTree_parent(x);
901                 }
902                 else {
903                     if (colorOf(rightOf(sib)) == BLACKbool) {
904                         setColor(leftOf(sib), BLACKbool);
905                         setColor(sib, REDbool);
906                         root = sib.rotateRight();
907                         sib = rightOf(peerTree_parent(x));
908                     }
909                     setColor(sib, colorOf(peerTree_parent(x)));
910                     setColor(peerTree_parent(x), BLACKbool);
911                     setColor(rightOf(sib), BLACKbool);
912                     root = peerTree_parent(x).rotateLeft();
913                     x = root;
914                 }
915             }
916             else {
917                 Box sib = leftOf(peerTree_parent(x));
918                 if (colorOf(sib) == REDbool) {
919                     setColor(sib, BLACKbool);
920                     setColor(peerTree_parent(x), REDbool);
921                     root = peerTree_parent(x).rotateRight();
922                     sib = leftOf(peerTree_parent(x));
923                 }
924                 if (colorOf(rightOf(sib)) == BLACKbool && colorOf(leftOf(sib)) == BLACKbool) {
925                     setColor(sib,  REDbool);
926                     x = peerTree_parent(x);
927                 }
928                 else {
929                     if (colorOf(leftOf(sib)) == BLACKbool) {
930                         setColor(rightOf(sib), BLACKbool);
931                         setColor(sib, REDbool);
932                         root = sib.rotateLeft();
933                         sib = leftOf(peerTree_parent(x));
934                     }
935                     setColor(sib, colorOf(peerTree_parent(x)));
936                     setColor(peerTree_parent(x), BLACKbool);
937                     setColor(leftOf(sib), BLACKbool);
938                     root = peerTree_parent(x).rotateRight();
939                     x = root;
940                 }
941             }
942         }
943         setColor(x, BLACKbool);
944         return parent.rootChild = root;
945     }
946
947     // Tree Manipulation /////////////////////////////////////////////////////////////////////
948
949     /** remove this node from its parent; INVARIANT: whenever the parent of a node is changed, remove() gets called. */
950     public void remove() {
951         if (parent == null) {
952             Surface surface = Surface.fromBox(this); 
953             if (surface != null) surface.dispose(true);
954             return;
955         } else {
956             parent.numchildren--;
957         }
958         Box oldparent = parent;
959         if (oldparent == null) return;
960         MARK_REFLOW;
961         dirty();
962         clear(MOUSEINSIDE);
963         removeNode();
964         parent = null;
965         if (oldparent != null) { Box b = oldparent; MARK_REFLOW_b; }
966         if (oldparent != null) oldparent.putAndTriggerJSTraps("childremoved", this);
967     }
968
969     /** Returns ith child */
970     public Box getChild(int i) {
971         // FIXME: store numleft and numright in the tree
972         Box left = rootChild;
973         if (left == null) return null;
974         while (left.left != null) left = left.left;
975         for(; i > 0; i--) left = left.nextSibling();
976         return left;
977     }
978     
979     /** Returns our index in our parent */
980     public int getIndexInParent() {
981         // FIXME: store numleft and numright in the tree
982         if (peerTree_parent == null) return left == null ? 0 : left.numPeerChildren() + 1;
983         else if (peerTree_parent.left == this) return peerTree_parent.getIndexInParent() - 1;
984         else if (peerTree_parent.right == this) return peerTree_parent.getIndexInParent() + 1;
985         else throw new Error("we're not a child of our parent!");
986     }
987
988     public int numPeerChildren() {
989         return (left == null ? 0 : left.numPeerChildren() + 1) + (right == null ? 0 : right.numPeerChildren() + 1);
990     }
991
992     public void put(int i, Object value) {
993         if (i < 0) return;
994             
995         if (value != null && !(value instanceof Box)) {
996             if (Log.on) Log.logJS(this, "attempt to set a numerical property on a box to a non-box");
997             return;
998         }
999
1000         if (redirect == null) {
1001             if (value == null) putAndTriggerJSTraps("childremoved", getChild(i));
1002             else Log.logJS(this, "attempt to add/remove children to/from a node with a null redirect");
1003
1004         } else if (redirect != this) {
1005             if (value != null) putAndTriggerJSTraps("childadded", value);
1006             redirect.put(i, value);
1007             if (value == null) {
1008                 Box b = (Box)redirect.get(new Integer(i));
1009                 if (b != null) putAndTriggerJSTraps("childremoved", b);
1010             }
1011
1012         } else if (value == null) {
1013             if (i < 0 || i > numchildren) return;
1014             Box b = getChild(i);
1015             b.remove();
1016             putAndTriggerJSTraps("childremoved", b);
1017
1018         } else {
1019             Box b = (Box)value;
1020
1021             // check if box being moved is currently target of a redirect
1022             for(Box cur = b.parent; cur != null; cur = cur.parent)
1023                 if (cur.redirect == b) {
1024                     if (Log.on) Log.logJS(this, "attempt to move a box that is the target of a redirect");
1025                     return;
1026                 }
1027
1028             // check for recursive ancestor violation
1029             for(Box cur = this; cur != null; cur = cur.parent)
1030                 if (cur == b) {
1031                     if (Log.on) Log.logJS(this, "attempt to make a node a parent of its own ancestor");
1032                     if (Log.on) Log.log(this, "box == " + this + "  ancestor == " + b);
1033                     return;
1034                 }
1035
1036             b.remove();
1037             b.parent = this;
1038             numchildren++;
1039
1040             Box before = getChild(i);
1041             if (before == null) {
1042                 if (rootChild == null) rootChild = b;
1043                 else rootChild.peerTree_rightmost().insertAfterMe(b);
1044             }
1045             else before.insertBeforeMe(b);
1046             
1047             // need both of these in case child was already uncalc'ed
1048             MARK_REFLOW_b;
1049             MARK_REFLOW;
1050             
1051             b.dirty(); 
1052             putAndTriggerJSTraps("childadded", b);
1053         }
1054     }
1055
1056 }
1057
1058
1059
1060
1061
1062
1063         /*
1064         offset_x = 0;
1065         if (path != null) {
1066             if (rpath == null) rpath = path.realize(transform == null ? VectorGraphics.Affine.identity() : transform);
1067             if ((flags & HSHRINK) != 0) contentwidth = max(contentwidth, rpath.boundingBoxWidth());
1068             if ((flags & VSHRINK) != 0) contentheight = max(contentheight, rpath.boundingBoxHeight());
1069             // FIXME: separate offset_x needed for the path
1070         }
1071         // #repeat x1/y1 x2/y2 x3/y3 x4/y4 contentwidth/contentheight left/top right/bottom
1072         int x1 = transform == null ? 0 : (int)transform.multiply_px(0, 0);
1073         int x2 = transform == null ? 0 : (int)transform.multiply_px(contentwidth, 0);
1074         int x3 = transform == null ? contentwidth : (int)transform.multiply_px(contentwidth, contentheight);
1075         int x4 = transform == null ? contentwidth : (int)transform.multiply_px(0, contentheight);
1076         int left = min(min(x1, x2), min(x3, x4));
1077         int right = max(max(x1, x2), max(x3, x4));
1078         contentwidth = max(contentwidth, right - left);
1079         offset_x = -1 * left;
1080         // #end
1081         */
1082
1083
1084                     /*
1085         if (path != null) {
1086             if (rtransform == null) rpath = null;
1087             else if (!rtransform.equalsIgnoringTranslation(a)) rpath = null;
1088             else {
1089                 rpath.translate((int)(a.e - rtransform.e), (int)(a.f - rtransform.f));
1090                 rtransform = a.copy();
1091             }
1092             if (rpath == null) rpath = path.realize((rtransform = a) == null ? VectorGraphics.Affine.identity() : a);
1093             if ((strokecolor & 0xff000000) != 0) rpath.stroke(buf, 1, strokecolor);
1094             if ((fillcolor & 0xff000000) != 0) rpath.fill(buf, new VectorGraphics.SingleColorPaint(fillcolor));
1095         }
1096 */
1097
1098
1099 /*
1100             VectorGraphics.Affine a2 = VectorGraphics.Affine.translate(b.x, b.y);
1101             if (transform != null) a2.multiply(transform);
1102             a2.multiply(VectorGraphics.Affine.translate(offset_x, offset_y));
1103             a2.multiply(a);
1104 */