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