allow traps on all properties, add FIXMEs for required harmonizations
[org.ibex.core.git] / src / org / ibex / Box.java
1 // FIXME
2 // Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
3 package org.ibex;
4
5 // FIXME: are traps on x/y meaningful?
6 // FIXME: if we trap on cols, then set rows to 0 (forcing cols to 1), does the cols trap get triggered?
7 // FIXME: if we change min{width/height}, thereby forcing a change to max{min/height}, does a trap on those get triggered?
8 // FIXME: trap on numchildren?  replaces ChildChanged?
9 // FIXME: trap on visible, trigger when parent visibility changes
10
11 // FEATURE: mark to reflow starting with a certain child
12 // FEATURE: reintroduce surface.abort
13
14 import java.util.*;
15 import org.ibex.js.*;
16 import org.ibex.util.*;
17 import org.ibex.translators.*;
18
19 /**
20  *  <p>
21  *  Encapsulates the data for a single Ibex box as well as all layout
22  *  rendering logic.
23  *  </p>
24  *
25  *  <p>The rendering process consists of four phases; each requires
26  *     one DFS pass over the tree</p>
27  *  <ol><li> <b>repacking</b>: children of a box are packed into columns
28  *           and rows according to their colspan/rowspan attributes and
29  *           ordering.
30  *  <ol><li> <b>reconstraining</b>: Minimum and maximum sizes of columns are computed.
31  *      <li> <b>resizing</b>: width/height and x/y positions of children
32  *           are assigned, and PosChange/SizeChanges are triggered.
33  *      <li> <b>repainting</b>: children draw their content onto the PixelBuffer.
34  *  </ol>
35  *
36  *  The first three passes together are called the <i>reflow</i> phase.
37  *  Reflowing is done in a seperate pass since PosChanges and
38  *  SizeChanges trigger an Surface.abort; if rendering were done in the same
39  *  pass, rendering work done prior to the Surface.abort would be wasted.
40  */
41 public final class Box extends JSScope implements Scheduler.Task {
42
43     // Macros //////////////////////////////////////////////////////////////////////
44
45     //#define LENGTH int
46
47     final void REPLACE() { for(Box b2 = this; b2 != null && !b2.test(REPLACE); b2 = b2.parent) b2.set(REPLACE); }
48     final void RECONSTRAIN() { for(Box b2 = this; b2 != null && !b2.test(RECONSTRAIN); b2 = b2.parent) b2.set(RECONSTRAIN); }
49     final void REPACK() { for(Box b2 = this; b2 != null && !b2.test(REPACK); b2 = b2.parent) b2.set(REPACK); }
50
51     //#define CHECKSET_SHORT(prop) short nu = (short)toInt(value); if (nu == prop) break; prop = nu;
52     //#define CHECKSET_INT(prop) int nu = toInt(value); if (nu == prop) break; prop = nu;
53     //#define CHECKSET_FLAG(flag) boolean nu = toBoolean(value); if (nu == test(flag)) break; if (nu) set(flag); else clear(flag);
54     //#define CHECKSET_BOOLEAN(prop) boolean nu = toBoolean(value); if (nu == prop) break; prop = nu;
55     //#define CHECKSET_STRING(prop) if ((value==null&&prop==null)||(value!=null&&JS.toString(value).equals(prop))) break; prop=JS.toString(value);
56
57     protected Box() { super(null); }
58
59     static Hash boxToCursor = new Hash(500, 3);               // FIXME memory leak
60     public static final int MAX_LENGTH = Integer.MAX_VALUE;
61     static final Font DEFAULT_FONT;
62    
63     static {
64         Font f = null;
65         try { f = Font.getFont((Stream)Main.builtin.get("fonts/vera/Vera.ttf"), 10); }
66         catch(JSExn e) { Log.info(Box.class, "should never happen: "+e); }
67         DEFAULT_FONT = f;
68     }
69
70     // FIXME update these
71     // events can have write traps, but not read traps
72     static final String[] events = new String[] {
73         "Press1", "Press2", "Press3",
74         "Release1", "Release2", "Release3",
75         "Click1", "Click2", "Click3",
76         "DoubleClick1", "DoubleClick2", "DoubleClick3",
77         "Enter", "Leave", "Move", "ChildChange",
78         "KeyPressed", "KeyReleased", "SizeChange",
79         "Focused", "Maximized", "Minimized", "Close"
80     };
81
82     // Flags //////////////////////////////////////////////////////////////////////
83
84     static final int MOUSEINSIDE  = 0x00000001;
85     static final int VISIBLE      = 0x00000002;
86     static final int PACKED       = 0x00000004;
87     static final int HSHRINK      = 0x00000008;
88     static final int VSHRINK      = 0x00000010;
89     static final int BLACK        = 0x00000020;  // for red-black code
90
91     static final int FIXED        = 0x00000040;
92     static final boolean ROWS     = true;
93     static final boolean COLS     = false;
94
95     static final int ISROOT       = 0x00000080;
96     static final int REPACK       = 0x00000100;
97     static final int RECONSTRAIN  = 0x00000200;
98     static final int REPLACE      = 0x00000400;
99
100     static final int ALIGN_TOP    = 0x00001000;
101     static final int ALIGN_BOTTOM = 0x00002000;
102     static final int ALIGN_LEFT   = 0x00004000;
103     static final int ALIGN_RIGHT  = 0x00008000;
104     static final int ALIGNS       = 0x0000f000;
105     static final int CURSOR       = 0x00010000;  // if true, this box has a cursor in the cursor hash; FEATURE: GC issues?
106     static final int CLIP         = 0x00020000;
107     static final int STOP_UPWARD_PROPAGATION    = 0x00040000;
108     static final int MOVED         = 0x00080000;
109
110
111     // Instance Data //////////////////////////////////////////////////////////////////////
112
113     Box parent = null;
114     Box redirect = this;
115     int flags = VISIBLE | PACKED | REPACK | RECONSTRAIN | REPLACE | FIXED | STOP_UPWARD_PROPAGATION | CLIP | MOVED;
116
117     private String text = null;
118     private Font font = DEFAULT_FONT; 
119     private Picture texture = null;
120     private short strokewidth = 1;
121     public int fillcolor = 0x00000000;
122     private int strokecolor = 0xFF000000;
123
124     private int aspect = 0;
125
126     // specified directly by user
127     public LENGTH minwidth = 0;
128     public LENGTH maxwidth = MAX_LENGTH;
129     public LENGTH minheight = 0;
130     public LENGTH maxheight = MAX_LENGTH;
131     private short rows = 1;
132     private short cols = 0;
133     private short rowspan = 1;
134     private short colspan = 1;
135
136     // computed during reflow
137     private short row = 0;
138     private short col = 0;
139     public LENGTH x = 0;
140     public LENGTH y = 0;
141     public LENGTH ax = 0;   // FEATURE: roll these into x/y; requires lots of changes
142     public LENGTH ay = 0;   // FEATURE: roll these into x/y; requires lots of changes; perhaps y()?
143     public LENGTH width = 0;
144     public LENGTH height = 0;
145     private LENGTH contentwidth = 0;      // == max(minwidth, textwidth, sum(child.contentwidth))
146     private LENGTH contentheight = 0;
147
148     /*
149     private VectorGraphics.VectorPath path = null;
150     private VectorGraphics.Affine transform = null;
151     private VectorGraphics.RasterPath rpath = null;
152     private VectorGraphics.Affine rtransform = null;
153     */
154
155     //#define DIRTY dirty()
156
157     // Instance Methods /////////////////////////////////////////////////////////////////////
158
159     public final int fontSize() { return font == null ? DEFAULT_FONT.pointsize : font.pointsize; }
160
161     /** invoked when a resource needed to render ourselves finishes loading */
162     public void perform() throws JSExn {
163         if (texture == null) { Log.warn(Box.class, "perform() called with null texture"); return; }
164         if (texture.isLoaded) {
165             setMinWidth(max(texture.width, minwidth));
166             setMinHeight(max(texture.height, minheight));
167             DIRTY; }
168         else { JS res = texture.stream; texture = null; throw new JSExn("image not found: "+res.unclone()); }
169     }
170
171     // FEATURE: use cx2/cy2 format
172     /** Adds the intersection of (x,y,w,h) and the node's current actual geometry to the Surface's dirty list */
173     public void dirty() { dirty(0, 0, width, height); }
174     public void dirty(int x, int y, int w, int h) {
175         for(Box cur = this; cur != null; cur = cur.parent) {
176             // x and y have a different meaning on the root box
177             if (cur.parent != null && cur.test(CLIP)) {
178                 w = min(x + w, cur.width) - max(x, 0);
179                 h = min(y + h, cur.height) - max(y, 0);
180                 x = max(x, 0);
181                 y = max(y, 0);
182             }
183             if (w <= 0 || h <= 0) return;
184             if (cur.parent == null && cur.getSurface() != null) cur.getSurface().dirty(x, y, w, h);
185             x += cur.x;
186             y += cur.y;
187         }
188     }
189
190
191     // Reflow ////////////////////////////////////////////////////////////////////////////////////////
192
193     /** should only be invoked on the root box */
194     void reflow() { pack(); resize(x, y, maxwidth, maxheight); place(); }
195
196     private static Box[] frontier = new Box[65535];
197     /** pack the boxes into rows and columns, compute contentwidth */
198     void pack() {
199         if (!test(REPACK)) { constrain(); return; }
200         boolean haskid = false;
201         for(Box child = getChild(0); child != null; child = child.nextSibling()) { haskid = true; child.pack(); }
202         if (!haskid) { clear(REPACK); constrain(); return; }
203         int frontier_size = 0;
204         //#repeat COLS/ROWS rows/cols cols/rows col/row row/col colspan/rowspan rowspan/colspan \
205         //        contentheight/contentwidth contentwidth/contentheight
206         if (test(FIXED) == COLS) {
207             rows = 0;
208             for(Box child = getChild(0); child != null; child = child.nextSibling()) {
209                 if (!child.test(PACKED) || !child.test(VISIBLE)) continue;
210                 if (cols == 1) { child.row = rows; rows += child.rowspan; child.col = 0; continue; }
211                 child.col = (short)(frontier_size <= 0 ? 0 : (frontier[frontier_size-1].col + frontier[frontier_size-1].colspan));
212                 child.row = (short)(frontier_size <= 0 ? 0 : frontier[frontier_size-1].row);
213                 if (child.col + min(cols,child.colspan) > cols) { child.col = 0; child.row++; }
214                 for(int i=0; i<frontier_size; i++)
215                     if (frontier[i].row + frontier[i].rowspan <= child.row) {
216                         frontier[i--] = frontier[--frontier_size]; frontier[frontier_size] = null;
217                     } else if (frontier[i].col<child.col+min(cols,child.colspan)&&frontier[i].col+frontier[i].colspan>child.col) {
218                         child.col = (short)(frontier[i].col + frontier[i].colspan);
219                         if (child.col + min(cols,child.colspan) > cols) {
220                             child.row = (short)(frontier[i].row + frontier[i].rowspan);
221                             for(i--; i>0; i--) child.row = (short)min(row, frontier[i].row + frontier[i].rowspan);
222                             child.col = (short)0;
223                         }
224                         i = -1;
225                     } else break;
226                 frontier[frontier_size++] = child;
227             }
228             for(int i=0; i<frontier_size; i++){ rows=(short)max(rows, frontier[i].row + frontier[i].rowspan); frontier[i] = null; }
229         }
230         //#end
231         clear(REPACK);
232         set(RECONSTRAIN);   // FIXME: be smarter / more incremental
233         constrain();
234     }
235
236     public void constrain() {
237         if (!test(RECONSTRAIN)) return;
238         solve(true);
239         //#repeat contentwidth/contentheight contentheight/contentwidth minwidth/minheight row/col col/row \
240         //        textwidth/textheight maxwidth/maxheight cols/rows rows/cols colspan/rowspan rowspan/colspan
241         contentwidth = bound(minwidth,
242                              max(contentwidth, font == null || text == null ? 0 : font.textwidth(text)),
243                              maxwidth);
244         //#end
245         set(REPLACE); // FIXME: be smarter / more incremental
246     }
247     
248     void resize(LENGTH x, LENGTH y, LENGTH width, LENGTH height) {
249         if (x == this.x && y == this.y && width == this.width && height == this.height) return;
250         boolean sizechange = (this.width != width || this.height != height) && getTrap("SizeChange") != null;
251         int thisx = parent == null ? 0 : this.x;
252         int thisy = parent == null ? 0 : this.y;
253         Box who = (parent == null ? this : parent);
254         if (this.x != x || this.y != y) set(MOVED);
255         if (texture == null && (text == null || text.equals("")) && !test(MOVED)) {
256             if ((fillcolor & 0xff000000) != 0 || parent == null) {
257                 who.dirty(thisx+min(this.width,width), thisy, Math.abs(width-this.width), max(this.height, height));
258                 who.dirty(thisx, thisy+min(this.height,height), max(this.width, width), Math.abs(height-this.height));
259             }
260             this.width = width; this.height = height; this.x = x; this.y = y;
261         } else {
262             who.dirty(thisx, thisy, this.width, this.height);
263             this.width = width; this.height = height; this.x = x; this.y = y;
264             DIRTY;
265         }
266         if (sizechange) putAndTriggerTrapsAndCatchExceptions("SizeChange", T);
267     }
268
269     private float targetColumnSize = (float)0.0;
270     private float targetRowSize = (float)0.0;
271     private static float[] sizes = new float[65535];
272     private static float[] sizes_v = new float[65535];
273     private static int[] regions = new int[65535];
274     private static int[] regions_v = new int[65535];
275     private static int numregions = 0;
276     private static int numregions_v = 0;
277
278     void solve(boolean findMinimum) {
279         int numkids = 0; for(Box c = firstPackedChild(); c != null; c = c.nextPackedSibling()) numkids++;
280         //#repeat col/row colspan/rowspan contentwidth/contentheight width/height HSHRINK/VSHRINK numregions/numregions_v \
281         //        maxwidth/maxheight cols/rows minwidth/minheight regions/regions_v targetColumnSize/targetRowSize sizes/sizes_v \
282         //        HSHRINK/VSHRINK
283         if (numkids == 0) {
284             if (findMinimum) contentwidth = 0;
285             else targetColumnSize = 0;
286         } else if (cols == 1) {
287             if (findMinimum) {
288                 contentwidth = 0;
289                 for(Box c = firstPackedChild(); c != null; c = c.nextPackedSibling())
290                     contentwidth = max(contentwidth, c.contentwidth);
291             } else {
292                 targetColumnSize = width;
293             }
294         } else if (cols > 1) do {
295
296             // FIXME: cache these?
297             // compute regions
298             numregions = 0;
299             for(Box c = firstPackedChild(); c != null; c = c.nextPackedSibling()) {
300                 regions[numregions++] = c.col;
301                 regions[numregions++] = min(cols, c.col+c.colspan);
302             }
303             Vec.sortInts(regions, 0, numregions);
304             int j = 0;
305             int newnumregions = numregions;
306             for(int i=1; i<numregions; i++) {
307                 if (regions[j] != regions[i]) j++;
308                 else newnumregions--;
309                 regions[j] = regions[i];
310             }
311             numregions = newnumregions;
312             if (regions[numregions-1] == cols) numregions--;
313             else regions[numregions] = cols;
314
315             int target = findMinimum ? 0 : Math.max(width, contentwidth);
316             // priority 0: (inviolable) honor minwidths
317             // priority 1: sum of columns no greater than parent
318             // priority 2: honor maxwidths
319             // priority 3: equalize columns
320             float targetColumnSize = target == 0 ? 0 : this.targetColumnSize;
321             float last_columnsize = 0;
322             float last_total = 0;
323             float total;
324             boolean first = true;
325             while(true) {
326                 total = (float)0.0;
327                 for(int r=0; r<numregions; r++) total += (sizes[r] = (float)(targetColumnSize * (regions[r+1]-regions[r])));
328                 int minregion = 0;
329                 for(Box child = firstPackedChild(); child != null; child = child.nextPackedSibling())
330                     for(int r=(child.col==0?0:minregion); r<numregions; r++) {
331                         if (regions[r+1] < child.col) continue;
332                         if (regions[r] >= min(child.col+child.colspan,cols)) { minregion = r; break; }
333                         total -= sizes[r];
334                         int child_maxwidth = child.test(HSHRINK)?child.contentwidth:child.maxwidth;
335                         if (sizes[r] <= (float)(targetColumnSize*(regions[r+1]-regions[r])))
336                             if ((child.colspan * targetColumnSize) > (child_maxwidth + (float)0.5))
337                                 sizes[r] = (float)Math.min(sizes[r], (regions[r+1]-regions[r])*(child_maxwidth/child.colspan));
338                         if ((child.colspan * targetColumnSize) < (child.contentwidth - (float)0.5))
339                             sizes[r] = (float)Math.max(sizes[r], (regions[r+1]-regions[r])*(child.contentwidth/child.colspan));
340                         total += sizes[r];
341                     }
342                 float save = targetColumnSize;
343                 if (Math.abs(total - target) <= (float)1.0) break;
344                 if (!first) {
345                     if (Math.abs(total - last_total) <= (float)1.0) break;
346                 } else {
347                     last_columnsize = ((total - target) / (float)cols) + targetColumnSize;
348                 }
349                 if (total < target)      targetColumnSize += Math.abs((last_columnsize - targetColumnSize) / (float)1.1);
350                 else if (total > target) targetColumnSize -= Math.abs((last_columnsize - targetColumnSize) / (float)1.1);
351                 last_columnsize = save;
352                 last_total = total;
353                 first = false;
354             }
355             if (findMinimum) contentwidth = Math.round(total);
356             else this.targetColumnSize = targetColumnSize;
357         } while(false);
358         //#end
359     }
360
361     void place() {
362         solve(false);
363         for(Box child = getChild(0); child != null; child = child.nextSibling()) {
364             if (!child.test(VISIBLE)) continue;
365             if (!child.test(REPLACE)) continue;
366             int child_width, child_height, child_x, child_y;
367             if (!child.test(PACKED)) {
368                 child_width = child.test(HSHRINK) ? child.contentwidth : min(child.maxwidth, width - Math.abs(child.ax));
369                 child_height = child.test(VSHRINK) ? child.contentheight : min(child.maxheight, height - Math.abs(child.ay));
370                 child_width = max(child.minwidth, child_width);
371                 child_height = max(child.minheight, child_height);
372                 int gap_x = width - child_width;
373                 int gap_y = height - child_height;
374                 child_x = child.ax + (child.test(ALIGN_RIGHT) ? gap_x : !child.test(ALIGN_LEFT) ? gap_x / 2 : 0);
375                 child_y = child.ay + (child.test(ALIGN_BOTTOM) ? gap_y : !child.test(ALIGN_TOP) ? gap_y / 2 : 0);
376             } else {
377                 int diff;
378                 //#repeat col/row colspan/rowspan contentwidth/contentheight width/height colMaxWidth/rowMaxHeight \
379                 //        child_x/child_y x/y HSHRINK/VSHRINK maxwidth/maxheight cols/rows minwidth/minheight x_slack/y_slack \
380                 //        child_width/child_height ALIGN_RIGHT/ALIGN_BOTTOM ALIGN_LEFT/ALIGN_TOP lp_h/lp \
381                 //        numregions/numregions_v regions/regions_v targetColumnSize/targetRowSize sizes/sizes_v
382                 child_x = 0;
383                 if (cols == 1) {
384                     child_width = width;
385                 } else {
386                     child_width = 0;
387                     for(int r=0; r<numregions; r++) {
388                         if (regions[r] < child.col) child_x += Math.round(sizes[r]);
389                         else if (regions[r] < child.col+child.colspan) child_width += Math.round(sizes[r]);
390                     }
391                 }
392                 diff = (child_width - (child.test(HSHRINK) ? child.contentwidth : min(child_width, child.maxwidth)));
393                 child_x += (child.test(ALIGN_RIGHT) ? diff : child.test(ALIGN_LEFT) ? 0 : diff / 2);
394                 child_width -= diff;
395                 //#end
396             }
397             if (test(MOVED)) child.set(MOVED);
398             child.resize(child_x, child_y, child_width, child_height);
399         }
400         clear(MOVED);
401
402         for(Box child = getChild(0); child != null; child = child.nextSibling())
403             if (child.test(VISIBLE) && child.treeSize() > 0)
404                 child.place();
405     }
406
407
408
409     // Rendering Pipeline /////////////////////////////////////////////////////////////////////
410
411     /** Renders self and children within the specified region. All rendering operations are clipped to xIn,yIn,wIn,hIn */
412     void render(int parentx, int parenty, int cx1, int cy1, int cx2, int cy2, PixelBuffer buf, VectorGraphics.Affine a) {
413         if (!test(VISIBLE)) return;
414         int globalx = parentx + (parent == null ? 0 : x);
415         int globaly = parenty + (parent == null ? 0 : y);
416
417         // intersect the x,y,w,h rendering window with ourselves; quit if it's empty
418         if (test(CLIP)) {
419             cx1 = max(cx1, globalx);
420             cy1 = max(cy1, globaly);
421             cx2 = min(cx2, globalx + width);
422             cy2 = min(cy2, globaly + height);
423             if (cx2 <= cx1 || cy2 <= cy1) return;
424         }
425
426         if ((fillcolor & 0xFF000000) != 0x00000000 || parent == null)
427             buf.fillTrapezoid(cx1, cx2, cy1, cx1, cx2, cy2, (fillcolor & 0xFF000000) == 0 ? 0xffffffff : fillcolor);
428
429         if (texture != null && texture.isLoaded)
430             for(int x = globalx; x < cx2; x += texture.width)
431                 for(int y = globaly; y < cy2; y += texture.height)
432                     buf.drawPicture(texture, x, y, cx1, cy1, cx2, cy2);
433  
434         if (text != null && !text.equals("") && font != null) {
435             int gap_x = width - font.textwidth(text);
436             int gap_y = height - font.textheight(text);
437             int text_x = globalx + (test(ALIGN_RIGHT) ? gap_x : !test(ALIGN_LEFT) ? gap_x/2 : 0);
438             int text_y = globaly + (test(ALIGN_BOTTOM) ? gap_y : !test(ALIGN_TOP) ? gap_y/2 : 0);
439             font.rasterizeGlyphs(text, buf, strokecolor, text_x, text_y, cx1, cy1, cx2, cy2);
440         }
441
442         for(Box b = getChild(0); b != null; b = b.nextSibling())
443             b.render(globalx, globaly, cx1, cy1, cx2, cy2, buf, null);
444     }
445     
446     
447     // Methods to implement org.ibex.js.JS //////////////////////////////////////
448
449   
450     public Object callMethod(Object method, Object a0, Object a1, Object a2, Object[] rest, int nargs) throws JSExn {
451         switch (nargs) {
452             case 1: {
453                 //#switch(method)
454                 case "indexof":
455                     Box b = (Box)a0;
456                     if (b.parent != this)
457                         return (redirect == null || redirect == this) ?
458                             N(-1) :
459                             redirect.callMethod(method, a0, a1, a2, rest, nargs);
460                     return N(b.getIndexInParent());
461
462                 case "distanceto":
463                     Box b = (Box)a0;
464                     JS ret = new JS();
465                     ret.put("x", N(b.localToGlobalX(0) - localToGlobalX(0)));
466                     ret.put("y", N(b.localToGlobalY(0) - localToGlobalY(0)));
467                     return ret;
468
469                 //#end
470             }
471         }
472         return super.callMethod(method, a0, a1, a2, rest, nargs);
473     }
474
475     public Object get(Object name) throws JSExn {
476         if (name instanceof Number)
477             return redirect == null ? null : redirect == this ? getChild(toInt(name)) : redirect.get(name);
478
479         //#switch(name)
480         case "surface": return parent == null ? null : parent.getAndTriggerTraps("surface");
481         case "indexof": return METHOD;
482         case "distanceto": return METHOD;
483         case "text": return text;
484         case "path": throw new JSExn("cannot read from the path property");
485         case "fill": return colorToString(fillcolor);
486         case "strokecolor": return colorToString(strokecolor);
487         case "textcolor": return colorToString(strokecolor);
488         case "font": return font == null ? null : font.stream;
489         case "fontsize": return font == null ? N(10) : N(font.pointsize);
490         case "strokewidth": return N(strokewidth);
491         case "align": return alignToString();
492         case "thisbox": return this;
493         case "shrink": return B(test(HSHRINK) || test(VSHRINK));
494         case "hshrink": return B(test(HSHRINK));
495         case "vshrink": return B(test(VSHRINK));
496         case "aspect": return N(aspect);
497         case "x": return (parent == null || !test(VISIBLE)) ? N(0) : test(PACKED) ? N(x) : N(ax);
498         case "y": return (parent == null || !test(VISIBLE)) ? N(0) : test(PACKED) ? N(y) : N(ay);
499         case "cols": return test(FIXED) == COLS ? N(cols) : N(0);
500         case "rows": return test(FIXED) == ROWS ? N(rows) : N(0);
501         case "colspan": return N(colspan);
502         case "rowspan": return N(rowspan);
503         case "width": getRoot().reflow(); return N(width);
504         case "height": getRoot().reflow(); return N(height);
505         case "minwidth": return N(minwidth);
506         case "maxwidth": return N(maxwidth);
507         case "minheight": return N(minheight);
508         case "maxheight": return N(maxheight);
509         case "clip": return B(test(CLIP));
510         case "visible": return B(test(VISIBLE) && (parent == null || (parent.get("visible") == T)));
511         case "packed": return B(test(PACKED));
512         case "globalx": return N(localToGlobalX(0));
513         case "globaly": return N(localToGlobalY(0));
514         case "cursor": return test(CURSOR) ? boxToCursor.get(this) : null;
515         case "mouse":
516             if (getSurface() == null) return null;
517             if (getSurface()._mousex == Integer.MAX_VALUE)
518                 throw new JSExn("you cannot read from the box.mouse property in background thread context");
519             return new Mouse();
520         case "numchildren": return redirect == null ? N(0) : redirect == this ? N(treeSize()) : redirect.get("numchildren");
521         case "redirect": return redirect == null ? null : redirect == this ? T : redirect.get("redirect");
522         case "Minimized": if (parent == null && getSurface() != null) return B(getSurface().minimized);
523         default: return super.get(name);
524         //#end
525         throw new Error("unreachable"); // unreachable
526     }
527
528     private class Mouse extends JS.Cloneable {
529         public Object get(Object key) {
530             //#switch(key)
531             case "x": return N(globalToLocalX(getSurface()._mousex));
532             case "y": return N(globalToLocalY(getSurface()._mousey));
533
534             // this might not get recomputed if we change mousex/mousey...
535             case "inside": return B(test(MOUSEINSIDE));
536             //#end
537             return null;
538         }
539     }
540
541     public void setMaxWidth(Object value) {
542         do { CHECKSET_INT(maxwidth); RECONSTRAIN(); } while(false);
543         if (parent == null && getSurface() != null) getSurface().pendingWidth = maxwidth; 
544     }
545     public void setMaxHeight(Object value) {
546         do { CHECKSET_INT(maxheight); RECONSTRAIN(); } while(false);
547         if (parent == null && getSurface() != null) getSurface().pendingHeight = maxheight;
548     }
549
550     private void setMinWidth(int m) { if (this.minwidth != m) { RECONSTRAIN(); this.minwidth = m; } }
551     private void setMinHeight(int m) { if (this.minheight != m) { RECONSTRAIN(); this.minheight = m; } }
552
553     public void put(Object name, Object value) throws JSExn {
554         if (name instanceof Number) { put(toInt(name), value); return; }
555         //#switch(name)
556         case "text": if (value == null) value = ""; CHECKSET_STRING(text); RECONSTRAIN(); DIRTY;
557         case "strokecolor": value = N(stringToColor((String)value)); CHECKSET_INT(strokecolor); DIRTY;
558         case "textcolor": value = N(stringToColor((String)value)); CHECKSET_INT(strokecolor); DIRTY;
559         case "strokewidth": CHECKSET_SHORT(strokewidth); DIRTY;
560         case "shrink": put("hshrink", value); put("vshrink", value);
561         case "hshrink": CHECKSET_FLAG(HSHRINK); RECONSTRAIN();
562         case "vshrink": CHECKSET_FLAG(VSHRINK); RECONSTRAIN();
563         case "width": put("maxwidth", value); put("minwidth", value);
564         case "height": put("maxheight", value); put("minheight", value);
565         case "maxwidth": setMaxWidth(value);
566         case "minwidth": CHECKSET_INT(minwidth); RECONSTRAIN();
567                          if (parent == null && getSurface() != null)
568                              getSurface().setMinimumSize(minwidth, minheight, minwidth != maxwidth || minheight != maxheight);
569         case "maxheight": setMaxHeight(value);
570         case "minheight": CHECKSET_INT(minheight); RECONSTRAIN();
571                          if (parent == null && getSurface() != null)
572                              getSurface().setMinimumSize(minwidth, minheight, minwidth != maxwidth || minheight != maxheight);
573         case "colspan": if (toInt(value) > 0) { CHECKSET_SHORT(colspan); if (parent != null) parent.REPACK(); }
574         case "rowspan": if (toInt(value) > 0) { CHECKSET_SHORT(rowspan); if (parent != null) parent.REPACK(); }
575         case "rows": CHECKSET_SHORT(rows); if (rows==0){set(FIXED, COLS);if(cols==0)cols=1;} else set(FIXED, ROWS); REPACK();
576         case "cols": CHECKSET_SHORT(cols); if (cols==0){set(FIXED, ROWS);if(rows==0)rows=1;} else set(FIXED, COLS); REPACK();
577         case "clip": CHECKSET_FLAG(CLIP); if (parent == null) DIRTY; else parent.DIRTY;
578         case "visible": CHECKSET_FLAG(VISIBLE); RECONSTRAIN(); DIRTY;
579         case "packed": CHECKSET_FLAG(PACKED); if (parent != null) parent.REPACK();
580         case "align": clear(ALIGNS); setAlign(value == null ? "center" : value); REPLACE();
581         case "cursor": setCursor(value);
582         case "fill": setFill(value);
583         case "mouse":
584             int mousex = toInt(((JS)value).get("x"));
585             int mousey = toInt(((JS)value).get("y"));
586             getSurface()._mousex = localToGlobalX(mousex);
587             getSurface()._mousey = localToGlobalY(mousey);
588         case "Minimized": if (parent == null && getSurface() != null) getSurface().minimized = toBoolean(value);  // FEATURE
589         case "Maximized": if (parent == null && getSurface() != null) getSurface().maximized = toBoolean(value);  // FEATURE
590         case "Close": if (parent == null && getSurface() != null) getSurface().dispose(true);
591         case "redirect":
592             if (value == null) { redirect = null; return; }
593             for(Box cur = (Box)value; cur != null; cur = cur.parent)
594                 if (cur == redirect) {
595                     redirect = (Box)value;
596                     return;
597                 }
598             JS.error("redirect can only be set to a descendant of its current value");
599         case "font":
600             if(!(value instanceof Stream)) throw new JSExn("You can only put streams to the font property");
601             font = value == null ? null : Font.getFont((Stream)value, font == null ? 10 : font.pointsize);
602             RECONSTRAIN();
603             DIRTY;
604         case "fontsize": font = Font.getFont(font == null ? null : font.stream, toInt(value)); RECONSTRAIN(); DIRTY;
605         case "x": if (parent==null && Surface.fromBox(this)!=null) {
606             CHECKSET_INT(x);
607         } else {
608             if (test(PACKED) && parent != null) return;
609             CHECKSET_INT(ax);
610             REPLACE();
611         }
612         case "y": if (parent==null && Surface.fromBox(this)!=null) {
613             CHECKSET_INT(y);
614         } else {
615             if (test(PACKED) && parent != null) return;
616             CHECKSET_INT(ay);
617             REPLACE();
618         }
619         case "titlebar":
620             if (getSurface() != null && value != null) getSurface().setTitleBarText(JS.toString(value));
621             super.put(name,value);
622
623         case "Press1":        if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
624         case "Press2":        if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
625         case "Press3":        if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
626         case "Release1":      if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
627         case "Release2":      if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
628         case "Release3":      if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
629         case "Click1":        if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
630         case "Click2":        if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
631         case "Click3":        if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
632         case "DoubleClick1":  if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
633         case "DoubleClick2":  if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
634         case "DoubleClick3":  if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
635         case "KeyPressed":    if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
636         case "KeyReleased":   if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
637         case "Move":          if (!test(STOP_UPWARD_PROPAGATION) && parent != null) parent.putAndTriggerTraps(name, value);
638
639         case "HScroll":       if (!test(STOP_UPWARD_PROPAGATION) && parent != null)
640             parent.putAndTriggerTraps(name, N(((Number)value).floatValue() * ((float)parent.fontSize()) / ((float)fontSize())));
641         case "VScroll":       if (!test(STOP_UPWARD_PROPAGATION) && parent != null)
642             parent.putAndTriggerTraps(name, N(((Number)value).floatValue() * ((float)parent.fontSize()) / ((float)fontSize())));
643
644         case "_Move":         propagateDownward(name, value, false);
645         case "_Press1":       propagateDownward(name, value, false);
646         case "_Press2":       propagateDownward(name, value, false);
647         case "_Press3":       propagateDownward(name, value, false);
648         case "_Release1":     propagateDownward(name, value, false);
649         case "_Release2":     propagateDownward(name, value, false);
650         case "_Release3":     propagateDownward(name, value, false);
651         case "_Click1":       propagateDownward(name, value, false);
652         case "_Click2":       propagateDownward(name, value, false);
653         case "_Click3":       propagateDownward(name, value, false);
654         case "_DoubleClick1": propagateDownward(name, value, false);
655         case "_DoubleClick2": propagateDownward(name, value, false);
656         case "_DoubleClick3": propagateDownward(name, value, false);
657         case "_KeyPressed":   propagateDownward(name, value, false);
658         case "_KeyReleased":  propagateDownward(name, value, false);
659         case "_HScroll":      propagateDownward(name, value, false);
660         case "_VScroll":      propagateDownward(name, value, false);
661
662         case "SizeChange":    return;
663         case "ChildChange":   return;
664         case "Enter":         return;
665         case "Leave":         return;
666
667         case "thisbox":       if (value == null) removeSelf();
668
669         default:              super.put(name, value);
670         //#end
671     }
672
673     private String alignToString() {
674         switch(flags & ALIGNS) {
675             case (ALIGN_TOP | ALIGN_LEFT): return "topleft";
676             case (ALIGN_BOTTOM | ALIGN_LEFT): return "bottomleft";
677             case (ALIGN_TOP | ALIGN_RIGHT): return "topright";
678             case (ALIGN_BOTTOM | ALIGN_RIGHT): return "bottomright";
679             case ALIGN_TOP: return "top";
680             case ALIGN_BOTTOM: return "bottom";
681             case ALIGN_LEFT: return "left";
682             case ALIGN_RIGHT: return "right";
683             case 0: return "center";
684             default: throw new Error("invalid alignment flags: " + (flags & ALIGNS));
685         }
686     }
687
688     private void setAlign(Object value) {
689         //#switch(value)
690         case "center": clear(ALIGNS);
691         case "topleft": set(ALIGN_TOP | ALIGN_LEFT);
692         case "bottomleft": set(ALIGN_BOTTOM | ALIGN_LEFT);
693         case "topright": set(ALIGN_TOP | ALIGN_RIGHT);
694         case "bottomright": set(ALIGN_BOTTOM | ALIGN_RIGHT);
695         case "top": set(ALIGN_TOP);
696         case "bottom": set(ALIGN_BOTTOM);
697         case "left": set(ALIGN_LEFT);
698         case "right": set(ALIGN_RIGHT);
699         default: JS.log("invalid alignment \"" + value + "\"");
700         //#end
701     }
702     
703     private void setCursor(Object value) {
704         if (value == null) { clear(CURSOR); boxToCursor.remove(this); return; }
705         if (value.equals(boxToCursor.get(this))) return;
706         set(CURSOR);
707         boxToCursor.put(this, value);
708         Surface surface = getSurface();
709         if (surface != null) {
710             String tempcursor = surface.cursor;
711             propagateDownward(null, null, false);
712             if (surface.cursor != tempcursor) surface.syncCursor();
713         }
714     }
715
716     private void setFill(Object value) throws JSExn {
717         if (value == null) {
718             // FIXME: Check this... does this make it transparent? 
719             texture = null;
720             fillcolor = 0;
721         } else if (value instanceof String) {
722             // FIXME check double set
723             int newfillcolor = stringToColor((String)value);
724             if (newfillcolor == fillcolor) return;
725             fillcolor = newfillcolor;
726         } else if(value instanceof JS) {
727             texture = Picture.load((JS)value, this);
728             if (texture != null && texture.isLoaded) perform();
729         } else {
730             throw new JSExn("fill must be null, a String, or a stream, not a " + value.getClass());
731         }
732         DIRTY;
733     }
734
735     // FIXME: mouse move/release still needs to propagate to boxen in which the mouse was pressed and is still held down
736     /**
737      *  Handles events which propagate down the box tree.  If obscured
738      *  is set, then we merely check for Enter/Leave.
739      */
740     private void propagateDownward(Object name_, Object value, boolean obscured) {
741
742         String name = (String)name_;
743         if (getSurface() == null) return;
744         int x = globalToLocalX(getSurface()._mousex);
745         int y = globalToLocalY(getSurface()._mousey);
746         boolean wasinside = test(MOUSEINSIDE);
747         boolean isinside = test(VISIBLE) && inside(x, y) && !obscured;
748         if (!wasinside && isinside) {
749             set(MOUSEINSIDE);
750             putAndTriggerTrapsAndCatchExceptions("Enter", T);
751         }
752         if (isinside && test(CURSOR)) getSurface().cursor = (String)boxToCursor.get(this);
753         if (wasinside && !isinside) {
754             clear(MOUSEINSIDE);
755             putAndTriggerTrapsAndCatchExceptions("Leave", T);
756         }
757
758         boolean found = false;
759         if (wasinside || isinside)
760             for(Box child = getChild(treeSize() - 1); child != null; child = child.prevSibling()) {
761                 boolean save_stop = child.test(STOP_UPWARD_PROPAGATION);
762                 Object value2 = value;
763                 if (name.equals("_HScroll") || name.equals("_VScroll"))
764                     value2 = N(((Number)value).floatValue() * ((float)child.fontSize()) / (float)fontSize());
765                 if (obscured || !child.inside(x - child.x, y - child.y)) {
766                     child.propagateDownward(name, value2, true);
767                 } else try {
768                     found = true;
769                     child.clear(STOP_UPWARD_PROPAGATION);
770                     if (name != null) child.putAndTriggerTrapsAndCatchExceptions(name, value2);
771                     else child.propagateDownward(name, value2, obscured);
772                 } finally {
773                     if (save_stop) child.set(STOP_UPWARD_PROPAGATION); else child.clear(STOP_UPWARD_PROPAGATION);
774                 }
775                 if (child.inside(x - child.x, y - child.y))
776                     if (name != null && name.equals("_Move")) obscured = true;
777                     else break;
778             }
779
780         if (!obscured && !found)
781             if ("_Move".equals(name) || name.startsWith("_Release") || wasinside)
782                 if (name != null)
783                     putAndTriggerTrapsAndCatchExceptions(name.substring(1), value);
784     }
785
786     private static int stringToColor(String s) {
787         // FIXME support three-char strings by doubling digits
788         if (s == null) return 0x00000000;
789         else if (SVG.colors.get(s) != null) return 0xFF000000 | toInt(SVG.colors.get(s));
790         else if (s.length() == 7 && s.charAt(0) == '#') try {
791             // FEATURE  alpha
792             return 0xFF000000 |
793                 (Integer.parseInt(s.substring(1, 3), 16) << 16) |
794                 (Integer.parseInt(s.substring(3, 5), 16) << 8) |
795                 Integer.parseInt(s.substring(5, 7), 16);
796         } catch (NumberFormatException e) {
797             Log.info(Box.class, "invalid color " + s);
798             return 0;
799         }
800         else return 0; // FEATURE: error?
801     }
802
803     private static String colorToString(int argb) {
804         if ((argb & 0xFF000000) == 0) return null;
805         String red = Integer.toHexString((argb & 0x00FF0000) >> 16);
806         String green = Integer.toHexString((argb & 0x0000FF00) >> 8);
807         String blue = Integer.toHexString(argb & 0x000000FF);
808         if (red.length() < 2) red = "0" + red;
809         if (blue.length() < 2) blue = "0" + blue;
810         if (green.length() < 2) green = "0" + green;
811         return "#" + red + green + blue;
812     }
813
814     /** figures out what box in this subtree of the Box owns the pixel at x,y relitave to the Surface */
815     public static Box whoIs(Box cur, int x, int y) {
816
817         if (cur.parent != null) throw new Error("whoIs may only be invoked on the root box of a surface");
818         int globalx = 0;
819         int globaly = 0;
820
821         // WARNING: this method is called from the event-queueing thread -- it may run concurrently with
822         // ANY part of Ibex, and is UNSYNCHRONIZED for performance reasons.  BE CAREFUL HERE.
823
824         if (!cur.test(VISIBLE)) return null;
825         if (!cur.inside(x - globalx, y - globaly)) return cur.parent == null ? cur : null;
826         OUTER: while(true) {
827             for(int i=cur.treeSize() - 1; i>=0; i--) {
828                 Box child = cur.getChild(i);
829                 if (child == null) continue;        // since this method is unsynchronized, we have to double-check
830                 globalx += child.x;
831                 globaly += child.y;
832                 if (child.test(VISIBLE) && child.inside(x - globalx, y - globaly)) { cur = child; continue OUTER; }
833                 globalx -= child.x;
834                 globaly -= child.y;
835             }
836             break;
837         }
838         return cur;
839     }
840
841
842     // Trivial Helper Methods (should be inlined) /////////////////////////////////////////
843
844     void mark_for_repack() { REPACK(); }
845     public Enumeration keys() { throw new Error("you cannot apply for..in to a " + this.getClass().getName()); }
846     public Box getRoot() { return parent == null ? this : parent.getRoot(); }
847     public Surface getSurface() { return Surface.fromBox(getRoot()); }
848     Box nextPackedSibling() { Box b = nextSibling(); return b == null || (b.test(PACKED | VISIBLE)) ? b : b.nextPackedSibling(); }
849     Box firstPackedChild() { Box b = getChild(0); return b == null || (b.test(PACKED | VISIBLE)) ? b : b.nextPackedSibling(); }
850     public int globalToLocalX(int x) { return parent == null ? x : parent.globalToLocalX(x - this.x); }
851     public int globalToLocalY(int y) { return parent == null ? y : parent.globalToLocalY(y - this.y); }
852     public int localToGlobalX(int x) { return parent == null ? x : parent.globalToLocalX(x + this.x); }
853     public int localToGlobalY(int y) { return parent == null ? y : parent.globalToLocalY(y + this.y); }
854
855     static short min(short a, short b) { if (a<b) return a; else return b; }
856     static int min(int a, int b) { if (a<b) return a; else return b; }
857     static float min(float a, float b) { if (a<b) return a; else return b; }
858
859     static short max(short a, short b) { if (a>b) return a; else return b; }
860     static int max(int a, int b) { if (a>b) return a; else return b; }
861     static float max(float a, float b) { if (a>b) return a; else return b; }
862
863     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; }
864     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; }
865     static int bound(int a, int b, int c) { if (c < b) return c; if (a > b) return a; return b; }
866     final boolean inside(int x, int y) { return test(VISIBLE) && x >= 0 && y >= 0 && x < width && y < height; }
867
868     void set(int mask) { flags |= mask; }
869     void set(int mask, boolean setclear) { if (setclear) set(mask); else clear(mask); }
870     void clear(int mask) { flags &= ~mask; }
871     boolean test(int mask) { return ((flags & mask) == mask); }
872     
873
874     // Tree Handling //////////////////////////////////////////////////////////////////////
875
876     public final int getIndexInParent() { return parent == null ? 0 : parent.indexNode(this); }
877     public final Box nextSibling() { return parent == null ? null : parent.getChild(parent.indexNode(this) + 1); }
878     public final Box prevSibling() { return parent == null ? null : parent.getChild(parent.indexNode(this) - 1); }
879     public final Box getChild(int i) {
880         if (i < 0) return null;
881         if (i >= treeSize()) return null;
882         return (Box)getNode(i);
883     }
884
885     // Tree Manipulation /////////////////////////////////////////////////////////////////////
886
887     void removeSelf() {
888         if (parent != null) { parent.removeChild(parent.indexNode(this)); return; }
889         Surface surface = Surface.fromBox(this); 
890         if (surface != null) surface.dispose(true);
891     }
892
893     /** remove the i^th child */
894     public void removeChild(int i) {
895         Box b = getChild(i);
896         b.RECONSTRAIN();
897         b.DIRTY;
898         b.clear(MOUSEINSIDE);
899         deleteNode(i);
900         b.parent = null;
901         RECONSTRAIN();
902         putAndTriggerTrapsAndCatchExceptions("ChildChange", b);
903     }
904     
905     public void put(int i, Object value) throws JSExn {
906         if (i < 0) return;
907             
908         if (value != null && !(value instanceof Box)) {
909             if (Log.on) JS.warn("attempt to set a numerical property on a box to a non-box");
910             return;
911         }
912
913         if (redirect == null) {
914             if (value == null) putAndTriggerTrapsAndCatchExceptions("ChildChange", getChild(i));
915             else JS.warn("attempt to add/remove children to/from a node with a null redirect");
916
917         } else if (redirect != this) {
918             if (value != null) putAndTriggerTrapsAndCatchExceptions("ChildChange", value);
919             redirect.put(i, value);
920             if (value == null) {
921                 Box b = (Box)redirect.get(new Integer(i));
922                 if (b != null) putAndTriggerTrapsAndCatchExceptions("ChildChange", b);
923             }
924
925         } else if (value == null) {
926             if (i < 0 || i > treeSize()) return;
927             Box b = getChild(i);
928             removeChild(i);
929             putAndTriggerTrapsAndCatchExceptions("ChildChange", b);
930
931         } else {
932             Box b = (Box)value;
933
934             // check if box being moved is currently target of a redirect
935             for(Box cur = b.parent; cur != null; cur = cur.parent)
936                 if (cur.redirect == b) {
937                     if (Log.on) JS.warn("attempt to move a box that is the target of a redirect");
938                     return;
939                 }
940
941             // check for recursive ancestor violation
942             for(Box cur = this; cur != null; cur = cur.parent)
943                 if (cur == b) {
944                     if (Log.on) JS.warn("attempt to make a node a parent of its own ancestor");
945                     if (Log.on) Log.info(this, "box == " + this + "  ancestor == " + b);
946                     return;
947                 }
948
949             if (b.parent != null) b.parent.removeChild(b.parent.indexNode(b));
950             insertNode(i, b);
951             b.parent = this;
952             
953             // need both of these in case child was already uncalc'ed
954             b.RECONSTRAIN();
955             RECONSTRAIN();
956             
957             b.DIRTY; 
958             putAndTriggerTrapsAndCatchExceptions("ChildChange", b);
959         }
960     }
961
962     void putAndTriggerTrapsAndCatchExceptions(Object name, Object val) {
963         try {
964             putAndTriggerTraps(name, val);
965         } catch (JSExn e) {
966             JS.log("caught js exception while putting to trap \""+name+"\"");
967             JS.log(e);
968         } catch (Exception e) {
969             JS.log("caught exception while putting to trap \""+name+"\"");
970             JS.log(e);
971         }
972     }
973
974 }
975
976
977
978
979
980
981         /*
982         offset_x = 0;
983         if (path != null) {
984             if (rpath == null) rpath = path.realize(transform == null ? VectorGraphics.Affine.identity() : transform);
985             if ((flags & HSHRINK) != 0) contentwidth = max(contentwidth, rpath.boundingBoxWidth());
986             if ((flags & VSHRINK) != 0) contentheight = max(contentheight, rpath.boundingBoxHeight());
987             // FIXME: separate offset_x needed for the path
988         }
989         // #repeat x1/y1 x2/y2 x3/y3 x4/y4 contentwidth/contentheight left/top right/bottom
990         int x1 = transform == null ? 0 : (int)transform.multiply_px(0, 0);
991         int x2 = transform == null ? 0 : (int)transform.multiply_px(contentwidth, 0);
992         int x3 = transform == null ? contentwidth : (int)transform.multiply_px(contentwidth, contentheight);
993         int x4 = transform == null ? contentwidth : (int)transform.multiply_px(0, contentheight);
994         int left = min(min(x1, x2), min(x3, x4));
995         int right = max(max(x1, x2), max(x3, x4));
996         contentwidth = max(contentwidth, right - left);
997         offset_x = -1 * left;
998         // #end
999         */
1000
1001
1002                     /*
1003         if (path != null) {
1004             if (rtransform == null) rpath = null;
1005             else if (!rtransform.equalsIgnoringTranslation(a)) rpath = null;
1006             else {
1007                 rpath.translate((int)(a.e - rtransform.e), (int)(a.f - rtransform.f));
1008                 rtransform = a.copy();
1009             }
1010             if (rpath == null) rpath = path.realize((rtransform = a) == null ? VectorGraphics.Affine.identity() : a);
1011             if ((strokecolor & 0xff000000) != 0) rpath.stroke(buf, 1, strokecolor);
1012             if ((fillcolor & 0xff000000) != 0) rpath.fill(buf, new VectorGraphics.SingleColorPaint(fillcolor));
1013         }
1014 */
1015
1016
1017 /*
1018             VectorGraphics.Affine a2 = VectorGraphics.Affine.translate(b.x, b.y);
1019             if (transform != null) a2.multiply(transform);
1020             a2.multiply(VectorGraphics.Affine.translate(offset_x, offset_y));
1021             a2.multiply(a);
1022 */