2003/12/10 01:48:53
[org.ibex.core.git] / src / org / xwt / Box.java
1 // Copyright 2002 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.xwt;
3
4 // FEATURE: reflow before allowing js to read from width/height 
5 // FEATURE: fastpath for rows=1/cols=1
6 // FEATURE: mark to reflow starting with a certain child
7 // FEATURE: separate mark_for_reflow and mark_for_resize
8 // FEATURE: make all methods final
9 // FEATURE: use a linked list for the "frontier" when packing
10 // FEATURE:    or else have a way to mark a column "same as last one"?
11 // FEATURE: reintroduce surface.abort
12
13 import java.io.*;
14 import java.net.*;
15 import java.util.*;
16 import org.xwt.js.*;
17 import org.xwt.util.*;
18 import org.xwt.translators.*;
19
20 /**
21  *  <p>
22  *  Encapsulates the data for a single XWT box as well as all layout
23  *  rendering logic.
24  *  </p>
25  *
26  *  <p>The rendering process consists of four phases; each requires
27  *     one DFS pass over the tree</p>
28  *  <ol><li> <b>repacking</b>: children of a box are packed into columns
29  *           and rows according to their colspan/rowspan attributes and
30  *           ordering.
31  *  <ol><li> <b>reconstraining</b>: Minimum and maximum sizes of columns are computed.
32  *      <li> <b>resizing</b>: width/height and x/y positions of children
33  *           are assigned, and PosChange/SizeChanges are triggered.
34  *      <li> <b>repainting</b>: children draw their content onto the PixelBuffer.
35  *  </ol>
36  *
37  *  The first three passes together are called the <i>reflow</i> phase.
38  *  Reflowing is done in a seperate pass since PosChanges and
39  *  SizeChanges trigger an Surface.abort; if rendering were done in the same
40  *  pass, rendering work done prior to the Surface.abort would be wasted.
41  */
42 public final class Box extends JSScope {
43
44     // Macros //////////////////////////////////////////////////////////////////////
45
46     //#define LENGTH int
47     //#define MARK_REPACK for(Box b2 = this; b2 != null && !b2.test(REPACK); b2 = b2.parent) b2.set(REPACK);
48     //#define MARK_REPACK_b for(Box b2 = b; b2 != null && !b2.test(REPACK); b2 = b2.parent) b2.set(REPACK);
49     //#define MARK_REPACK_parent for(Box b2 = parent; b2 != null && !b2.test(REPACK); b2 = b2.parent) b2.set(REPACK);
50     //#define MARK_REFLOW for(Box b2 = this; b2 != null && !b2.test(REFLOW); b2 = b2.parent) b2.set(REFLOW);
51     //#define MARK_REFLOW_b for(Box b2 = b; b2 != null && !b2.test(REFLOW); b2 = b2.parent) b2.set(REFLOW);
52     //#define MARK_RESIZE for(Box b2 = this; b2 != null && !b2.test(RESIZE); b2 = b2.parent) b2.set(RESIZE);
53     //#define MARK_RESIZE_b for(Box b2 = b; b2 != null && !b2.test(RESIZE); b2 = b2.parent) b2.set(RESIZE);
54     //#define CHECKSET_SHORT(prop) short nu = (short)toInt(value); if (nu == prop) break; prop = nu;
55     //#define CHECKSET_INT(prop) int nu = toInt(value); if (nu == prop) break; prop = nu;
56     //#define CHECKSET_FLAG(flag) boolean nu = toBoolean(value); if (nu == test(flag)) break; if (nu) set(flag); else clear(flag);
57     //#define CHECKSET_BOOLEAN(prop) boolean nu = toBoolean(value); if (nu == prop) break; prop = nu;
58     //#define CHECKSET_STRING(prop) if ((value==null&&prop==null)||(value!=null&&value.equals(prop))) break; prop=(String)value;
59
60     protected Box() { super(null); }
61
62     static Hash boxToCursor = new Hash(500, 3);
63     public static final int MAX_LENGTH = Integer.MAX_VALUE;
64     static final Font DEFAULT_FONT = Font.getFont((Res)Main.builtin.get("fonts/vera/Vera.ttf"), 10);
65
66     // box properties can not be trapped
67     static final String[] props = new String[] {
68         "fill", "stroke", "image", "tile", "fixedaspect", "text", "path", "font",
69         "shrink", "hshrink", "vshrink", "x", "y", "width", "height", "cols", "rows",
70         "colspan", "rowspan", "align", "invisible", "absolute", "globalx", "globaly",
71         "minwidth", "maxwidth", "minheight", "maxheight",
72         "numchildren", "redirect", "cursor", "mousex", "mousey", "xwt", "static",
73         "mouseinside", "root", "thisbox", "indexof"
74     };
75
76     // events can have write traps, but not read traps
77     static final String[] events = new String[] {
78         "Press1", "Press2", "Press3",
79         "Release1", "Release2", "Release3",
80         "Click1", "Click2", "Click3",
81         "DoubleClick1", "DoubleClick2", "DoubleClick3",
82         "Enter", "Leave", "Move", 
83         "KeyPressed", "KeyReleased", "PosChange", "SizeChange",
84
85         "childadded", "childremoved",
86
87         "Focused", "Maximized", "Minimized", "Close",
88         "icon", "titlebar", "toback", "tofront"
89     };
90
91     // Flags //////////////////////////////////////////////////////////////////////
92
93     static final int MOUSEINSIDE  = 0x00000001;
94     static final int VISIBLE      = 0x00000002;
95     static final int PACKED       = 0x00000004;
96     static final int HSHRINK      = 0x00000008;
97     static final int VSHRINK      = 0x00000010;
98     static final int BLACK        = 0x00000020;  // for red-black code
99
100     static final int FIXED        = 0x00000040;
101     static final boolean ROWS     = true;
102     static final boolean COLS     = false;
103
104     static final int ISROOT       = 0x00000080;
105     static final int REPACK       = 0x00000100;
106     static final int REFLOW       = 0x00000200;
107     static final int RESIZE       = 0x00000400;
108     static final int RECONSTRAIN  = 0x00000800;
109     static final int ALIGN_TOP    = 0x00001000;
110     static final int ALIGN_BOTTOM = 0x00002000;
111     static final int ALIGN_LEFT   = 0x00004000;
112     static final int ALIGN_RIGHT  = 0x00008000;
113     static final int ALIGNS       = 0x0000f000;
114     static final int CURSOR       = 0x00010000;  // if true, this box has a cursor in the cursor hash; FEATURE: GC issues?
115     static final int NOCLIP       = 0x00020000;
116
117
118     // Instance Data //////////////////////////////////////////////////////////////////////
119
120     Box parent = null;
121     Box redirect = this;
122     int flags = VISIBLE | PACKED | REPACK | REFLOW | RESIZE | FIXED /* ROWS */;
123
124     private String text = null;
125     private Font font = DEFAULT_FONT; 
126     private Picture.Holder texture;
127     private short strokewidth = 1;
128     private int fillcolor = 0x00000000;
129     private int strokecolor = 0xFF000000;
130
131     // specified directly by user
132     public LENGTH minwidth = 0;
133     public LENGTH maxwidth = MAX_LENGTH;
134     public LENGTH minheight = 0;
135     public LENGTH maxheight = MAX_LENGTH;
136     private short rows = 1;
137     private short cols = 0;
138     private short rowspan = 1;
139     private short colspan = 1;
140
141     // computed during reflow
142     private short row = 0;
143     private short col = 0;
144     public LENGTH x = 0;
145     public LENGTH y = 0;
146     public LENGTH width = 0;
147     public LENGTH height = 0;
148     private LENGTH contentwidth = 0;      // == max(minwidth, textwidth, sum(child.contentwidth))
149     private LENGTH contentheight = 0;
150
151     /*
152     private VectorGraphics.VectorPath path = null;
153     private VectorGraphics.Affine transform = null;
154     private VectorGraphics.RasterPath rpath = null;
155     private VectorGraphics.Affine rtransform = null;
156     */
157
158     // Instance Methods /////////////////////////////////////////////////////////////////////
159
160     public Box getRoot() { return parent == null ? this : parent.getRoot(); }
161     public Surface getSurface() { return Surface.fromBox(getRoot()); }
162
163     // FEATURE: use cx2/cy2 format
164     /** Adds the intersection of (x,y,w,h) and the node's current actual geometry to the Surface's dirty list */
165     public void dirty() { dirty(0, 0, width, height); }
166     public void dirty(int x, int y, int w, int h) {
167         for(Box cur = this; cur != null; cur = cur.parent) {
168             if (!cur.test(NOCLIP)) {
169                 w = min(x + w, cur.width) - max(x, 0);
170                 h = min(y + h, cur.height) - max(y, 0);
171                 x = max(x, 0);
172                 y = max(y, 0);
173             }
174             if (w <= 0 || h <= 0) return;
175             if (cur.parent == null && cur.getSurface() != null) cur.getSurface().dirty(x, y, w, h);
176             x += cur.x;
177             y += cur.y;
178         }
179     }
180
181     /** update MOUSEINSIDE, check for Enter/Leave/Move */
182     void Move(int oldmousex, int oldmousey, int mousex, int mousey) { Move(oldmousex, oldmousey, mousex, mousey, false); }
183     void Move(int oldmousex, int oldmousey, int mousex, int mousey, boolean forceleave) {
184         boolean wasinside = test(MOUSEINSIDE);
185         boolean isinside = test(VISIBLE) && inside(mousex, mousey) && !forceleave;
186         if (isinside) set(MOUSEINSIDE); else clear(MOUSEINSIDE);
187         if (!wasinside && !isinside) return;
188         
189         if (isinside && test(CURSOR)) Surface.fromBox(getRoot()).cursor = (String)boxToCursor.get(this);
190         if (!wasinside && isinside && getTrap("Enter") != null) putAndTriggerTraps("Enter", T);
191         else if (wasinside && !isinside && getTrap("Leave") != null) putAndTriggerTraps("Leave", T);
192         else if (wasinside && isinside && (mousex != oldmousex || mousey != oldmousey) && getTrap("Move")!= null)
193             putAndTriggerTraps("Move", T);
194         for(Box b = getChild(treeSize() - 1); b != null; b = b.prevSibling()) {
195             b.Move(oldmousex - b.x, oldmousey - b.y, mousex - b.x, mousey - b.y, forceleave);
196             if (b.inside(mousex - b.x, mousey - b.y)) forceleave = true;
197         }
198     }
199
200
201     // Reflow ////////////////////////////////////////////////////////////////////////////////////////
202
203     // static stuff so we don't have to keep reallocating
204     private static int[] numRowsInCol = new int[65535];
205     private static LENGTH[] colWidth = new LENGTH[65535];
206     private static LENGTH[] colMaxWidth = new LENGTH[65535];
207     private static LENGTH[] rowHeight = new LENGTH[65535];
208     private static LENGTH[] rowMaxHeight = new LENGTH[65535];
209     static { for(int i=0; i<rowMaxHeight.length; i++) { rowMaxHeight[i] = MAX_LENGTH; colMaxWidth[i] = MAX_LENGTH; } }
210
211     Box nextPackedSibling() { Box b = nextSibling(); return b == null || (b.test(PACKED | VISIBLE)) ? b : b.nextPackedSibling(); }
212     Box firstPackedChild() { Box b = getChild(0); return b == null || (b.test(PACKED | VISIBLE)) ? b : b.nextPackedSibling(); }
213
214     /** only for use on the root box */
215     void reflow(int new_width, int new_height) {
216         repack();
217         /*
218         new_width = bound(max(contentwidth, minwidth), new_width, test(HSHRINK) ? max(contentwidth, minwidth) : maxwidth);
219         new_height = bound(max(contentheight, minheight), new_height, test(VSHRINK) ? max(contentheight, minheight) : maxheight);
220         */
221         resize(x, y, new_width, new_height);
222         resize_children();
223     }
224
225     /** pack the boxes into rows and columns; also computes contentwidth */
226     void repack() {
227         for(Box child = getChild(0); child != null; child = child.nextSibling()) child.repack();
228
229         //#repeat COLS/ROWS rows/cols cols/rows col/row row/col colspan/rowspan rowspan/colspan 
230         if (test(FIXED) == COLS) {
231             short r = 0;
232             for(Box child = firstPackedChild(); child != null; r++) {
233                 for(short c=0, numclear=0; child != null && c < cols; c++) {
234                     if (numRowsInCol[c] > r) { numclear = 0; continue; }
235                     if (c != 0 && c + min(cols, child.colspan) - numclear > cols) break;
236                     if (++numclear < min(cols, child.colspan)) continue;
237                     for(int i=c - numclear + 1; i <= c; i++) numRowsInCol[i] += child.rowspan;
238                     child.col = (short)(c - numclear + 1); child.row = r;
239                     rows = (short)max(rows, child.row + child.rowspan);
240                     child = child.nextPackedSibling();
241                     numclear = 0;
242                 }
243             }
244             for(int i=0; i<cols; i++) numRowsInCol[i] = 0;
245         }
246         //#end
247
248         //#repeat contentwidth/contentheight colWidth/rowHeight colspan/rowspan col/row cols/rows minwidth/minheight \
249         //        textwidth/textheight maxwidth/maxheight
250         contentwidth = 0;
251         for(Box child = firstPackedChild(); child != null; child = child.nextPackedSibling())
252             colWidth[child.col] = max(colWidth[child.col], child.contentwidth / child.colspan);
253         for(int i=0; i<cols; i++) { contentwidth += colWidth[i]; colWidth[i] = 0; }
254         contentwidth = bound(minwidth, max(font == null || text == null ? 0 : font.textwidth(text), contentwidth), maxwidth);
255         //#end               
256     }
257     
258     private void resize(LENGTH x, LENGTH y, LENGTH width, LENGTH height) {
259         // FEATURE reimplement, but we're destroying this
260         //if (x != this.x || y != this.y || width != this.width || height != this.height) {
261             (parent == null ? this : parent).dirty(this.x, this.y, this.width, this.height);
262             boolean sizechange = (this.width != width || this.height != height) && getTrap("SizeChange") != null;
263             boolean poschange = (this.x != x || this.y != y) && getTrap("PosChange") != null;
264             this.width = width; this.height = height; this.x = x; this.y = y;
265             dirty();
266             if (sizechange) try { putAndTriggerTraps("SizeChange", T); /*Surface.abort = true;*/ }
267                 catch (Exception e) { Log.log(this, e); }
268             if (poschange) try { putAndTriggerTraps("PosChange", T); /*Surface.abort = true;*/ }
269                 catch (Exception e) { Log.log(this, e); }
270             //}
271     }
272
273     private void resize_children() {
274
275         //#repeat col/row colspan/rowspan contentwidth/contentheight x/y width/height colMaxWidth/rowMaxHeight colWidth/rowHeight \
276         //        HSHRINK/VSHRINK maxwidth/maxheight cols/rows minwidth/minheight colWidth/rowHeight x_slack/y_slack
277         // PHASE 1: compute column min/max sizes
278         int x_slack = width;
279         for(int i=0; i<cols; i++) x_slack -= colWidth[i];
280         for(Box child = firstPackedChild(); child != null; child = child.nextPackedSibling())
281             for(int i=child.col; i < child.col + child.colspan; i++) {
282                 x_slack += colWidth[i];
283                 colWidth[i] = max(colWidth[i], child.contentwidth / child.colspan);
284                 x_slack -= colWidth[i];
285                 colMaxWidth[i] = min(colMaxWidth[i], child.test(HSHRINK) ? child.contentwidth : child.maxwidth) / child.colspan;
286             }
287         
288         // PHASE 2: hand out slack
289         for(int startslack = 0; x_slack > 0 && cols > 0 && startslack != x_slack;) {
290             int increment = max(1, x_slack / cols);
291             startslack = x_slack;
292             for(short col=0; col < cols; col++) {
293                 int diff = min(colMaxWidth[col], colWidth[col] + increment) - colWidth[col];
294                 x_slack -= diff;
295                 colWidth[col] += diff;
296             }
297         }   
298         //#end
299
300         // Phase 3: assign childrens' actual sizes
301         for(Box child = getChild(0); child != null; child = child.nextSibling()) {
302             if (!child.test(VISIBLE)) continue;
303             int child_width, child_height, child_x, child_y;
304             if (!child.test(PACKED)) {
305                 child_x = child.x;
306                 child_y = child.y;
307                 child_width = child.test(HSHRINK) ? child.contentwidth : min(child.maxwidth, width - child.x);
308                 child_height = child.test(VSHRINK) ? child.contentheight : min(child.maxheight, height - child.y);
309                 child_width = max(child.minwidth, child_width);
310                 child_height = max(child.minheight, child_height);
311             } else {
312                 int unbounded;
313                 //#repeat col/row colspan/rowspan contentwidth/contentheight width/height colMaxWidth/rowMaxHeight \
314                 //        child_x/child_y x/y HSHRINK/VSHRINK maxwidth/maxheight cols/rows minwidth/minheight x_slack/y_slack \
315                 //        colWidth/rowHeight child_width/child_height ALIGN_RIGHT/ALIGN_BOTTOM ALIGN_LEFT/ALIGN_TOP
316                 unbounded = 0;
317                 for(int i = child.col; i < child.col + child.colspan; i++) unbounded += colWidth[i];
318                 child_width = min(unbounded, child.test(HSHRINK) ? child.contentwidth : child.maxwidth);
319                 child_x = test(ALIGN_RIGHT) ? x_slack : test(ALIGN_LEFT) ? 0 : x_slack / 2;
320                 for(int i=0; i < child.col; i++) child_x += colWidth[i];
321                 if (child_width > unbounded) child_x -= (child_width - unbounded) / 2;
322                 //#end
323             }
324             child.resize(child_x, child_y, child_width, child_height);
325         }
326
327         // cleanup
328         for(int i=0; i<cols; i++) { colWidth[i] = 0; colMaxWidth[i] = MAX_LENGTH; }
329         for(int i=0; i<rows; i++) { rowHeight[i] = 0; rowMaxHeight[i] = MAX_LENGTH; }
330
331         for(Box child = getChild(0); child != null; child = child.nextSibling())
332             if (test(VISIBLE))
333                 child.resize_children();
334     }
335
336
337
338     // Rendering Pipeline /////////////////////////////////////////////////////////////////////
339
340     /** Renders self and children within the specified region. All rendering operations are clipped to xIn,yIn,wIn,hIn */
341     void render(int parentx, int parenty, int cx1, int cy1, int cx2, int cy2, PixelBuffer buf, VectorGraphics.Affine a) {
342         if (!test(VISIBLE)) return;
343         int globalx = parentx + (parent == null ? 0 : x);
344         int globaly = parenty + (parent == null ? 0 : y);
345
346         // intersect the x,y,w,h rendering window with ourselves; quit if it's empty
347         if (!test(NOCLIP)) {
348             cx1 = max(cx1, parent == null ? 0 : globalx);
349             cy1 = max(cy1, parent == null ? 0 : globaly);
350             cx2 = min(cx2, globalx + width);
351             cy2 = min(cy2, globaly + height);
352             if (cx2 <= cx1 || cy2 <= cy1) return;
353         }
354
355         if ((fillcolor & 0xFF000000) != 0x00000000)
356             buf.fillTrapezoid(globalx, globalx + width, globaly, globalx, globalx + width, globaly + height, fillcolor);
357
358         if (texture != null && texture.picture != null)
359             for(int x = globalx; x < cx2; x += texture.picture.getWidth())
360                 for(int y = globaly; y < cy2; y += texture.picture.getHeight())
361                     buf.drawPicture(texture.picture, x, y, cx1, cy1, cx2, cy2);
362
363         if (text != null && !text.equals("") && font != null)
364             if (font.rasterizeGlyphs(text, buf, strokecolor, globalx, globaly, cx1, cy1, cx2, cy2, null) == -1)
365                 font.rasterizeGlyphs(text, buf, strokecolor, globalx, globaly, cx1, cy1, cx2, cy2,
366                                     new Scheduler.Task() { public void perform() { Box b = Box.this; MARK_REFLOW_b; dirty(); }});
367
368         for(Box b = getChild(0); b != null; b = b.nextSibling())
369             b.render(globalx, globaly, cx1, cy1, cx2, cy2, buf, null);
370     }
371     
372     
373     // Methods to implement org.xwt.js.JS //////////////////////////////////////
374
375     public int globalToLocalX(int x) { return parent == null ? x : parent.globalToLocalX(x - this.x); }
376     public int globalToLocalY(int y) { return parent == null ? y : parent.globalToLocalY(y - this.y); }
377     public int localToGlobalX(int x) { return parent == null ? x : parent.globalToLocalX(x + this.x); }
378     public int localToGlobalY(int y) { return parent == null ? y : parent.globalToLocalY(y + this.y); }
379     
380     public Object callMethod(Object method, Object a0, Object a1, Object a2, Object[] rest, int nargs) throws JSExn {
381         if (nargs != 1 || !"indexof".equals(method)) return super.callMethod(method, a0, a1, a2, rest, nargs);
382         Box b = (Box)a0;
383         if (b.parent != this)
384             return (redirect == null || redirect == this) ?
385                 N(-1) :
386                 redirect.callMethod(method, a0, a1, a2, rest, nargs);
387         return N(b.getIndexInParent());
388     }
389
390     public Enumeration keys() { throw new Error("you cannot apply for..in to a " + this.getClass().getName()); }
391
392     protected boolean isTrappable(Object key, boolean isRead) {
393         if (key == null) return false;
394         else if (key instanceof String) {
395             // not allowed to trap box properties, and no read traps on events
396             String name = (String)key;
397             for (int i=0; i < props.length; i++) if (name.equals(props[i])) return false; 
398             if (isRead) for (int i=0; i < events.length; i++) if (name.equals(events[i])) return false; 
399         }
400
401         return true;
402     }
403
404     public Object get(Object name) throws JSExn {
405         if (name instanceof Number)
406             return redirect == null ? null : redirect == this ? getChild(toInt(name)) : redirect.get(name);
407
408         //#switch(name)
409         case "indexof": return METHOD;
410         case "text": return text;
411         case "path": throw new JSExn("cannot read from the path property");
412         case "fill": return colorToString(fillcolor);
413         case "strokecolor": return colorToString(strokecolor);
414         case "textcolor": return colorToString(strokecolor);
415         case "font": return font == null ? null : font.res;
416         case "fontsize": return font == null ? N(10) : N(font.pointsize);
417         case "strokewidth": return N(strokewidth);
418         case "align": return alignToString();
419         case "thisbox": return this;
420         case "shrink": return B(test(HSHRINK) || test(VSHRINK));
421         case "hshrink": return B(test(HSHRINK));
422         case "vshrink": return B(test(VSHRINK));
423         case "x": return (parent == null || !test(VISIBLE)) ? N(0) : N(x);
424         case "y": return (parent == null || !test(VISIBLE)) ? N(0) : N(y);
425         case "width": return N(width);
426         case "height": return N(height);
427         case "cols": return test(FIXED) == COLS ? N(cols) : N(0);
428         case "rows": return test(FIXED) == ROWS ? N(rows) : N(0);
429         case "colspan": return N(colspan);
430         case "rowspan": return N(rowspan);
431         case "noclip": return B(test(NOCLIP));
432         case "visible": return B(test(VISIBLE) && (parent == null || (parent.get("visible") == T)));
433         case "packed": return B(test(PACKED));
434         case "globalx": return N(localToGlobalX(0));
435         case "globaly": return N(localToGlobalY(0));
436         case "cursor": return test(CURSOR) ? boxToCursor.get(this) : null;
437         case "mousex": { Surface s = getSurface(); return N(s == null ? 0 : globalToLocalX(s.mousex)); }
438         case "mousey": { Surface s = getSurface(); return N(s == null ? 0 : globalToLocalY(s.mousey)); }
439         case "mouseinside": return B(test(MOUSEINSIDE));
440         case "numchildren": return redirect == null ? N(0) : redirect == this ? N(treeSize()) : redirect.get("numchildren");
441         case "minwidth": return N(minwidth);
442         case "maxwidth": return N(maxwidth);
443         case "minheight": return N(minheight);
444         case "maxheight": return N(maxheight);
445         case "redirect": return redirect == null ? null : redirect == this ? T : redirect.get("redirect");
446         case "Minimized": if (parent == null && getSurface() != null) return B(getSurface().minimized);
447         default: return super.get(name);
448         //#end
449         throw new Error("unreachable"); // unreachable
450     }
451
452     public void put(Object name, Object value) throws JSExn {
453         if (name instanceof Number) { put(toInt(name), value); return; }
454         //#switch(name)
455         case "text": CHECKSET_STRING(text); MARK_RESIZE; dirty();
456         case "strokecolor": value = N(stringToColor((String)value)); CHECKSET_INT(strokecolor); MARK_RESIZE; dirty();
457         case "textcolor": value = N(stringToColor((String)value)); CHECKSET_INT(strokecolor); MARK_RESIZE; dirty();
458         case "text": CHECKSET_STRING(text); MARK_RESIZE; dirty();
459         case "strokewidth": CHECKSET_SHORT(strokewidth); dirty();
460         case "shrink": put("hshrink", value); put("vshrink", value);
461         case "hshrink": CHECKSET_FLAG(HSHRINK); MARK_RESIZE;
462         case "vshrink": CHECKSET_FLAG(VSHRINK); MARK_RESIZE;
463         case "width": if (parent==null&&Surface.fromBox(this)!=null) { Surface.fromBox(this).setWidth(toInt(value)); } else { put("maxwidth", value); put("minwidth", value); MARK_RESIZE; }
464         case "height": if (parent == null&&Surface.fromBox(this)!=null) { Surface.fromBox(this).setHeight(toInt(value)); } else { put("maxheight", value); put("minheight", value); MARK_RESIZE; }
465         case "maxwidth": CHECKSET_INT(maxwidth); MARK_RESIZE;
466         case "minwidth": CHECKSET_INT(minwidth); MARK_RESIZE;
467         case "maxheight": CHECKSET_INT(maxheight); MARK_RESIZE;
468         case "minheight": CHECKSET_INT(minheight); MARK_RESIZE;
469         case "colspan": CHECKSET_SHORT(colspan); MARK_REPACK_parent;
470         case "rowspan": CHECKSET_SHORT(rowspan); MARK_REPACK_parent;
471         case "rows": CHECKSET_SHORT(rows); if (rows==0){set(FIXED, COLS);if(cols==0)cols=1;} else set(FIXED, ROWS); MARK_REPACK;
472         case "cols": CHECKSET_SHORT(cols); if (cols==0){set(FIXED, ROWS);if(rows==0)rows=1;} else set(FIXED, COLS); MARK_REPACK;
473         case "noclip": CHECKSET_FLAG(NOCLIP); if (parent == null) dirty(); else parent.dirty();
474         case "visible": CHECKSET_FLAG(VISIBLE); dirty(); MARK_RESIZE; dirty();
475         case "packed": CHECKSET_FLAG(PACKED); MARK_REPACK_parent;
476         case "globalx": put("x", N(globalToLocalX(toInt(value))));
477         case "globaly": put("y", N(globalToLocalY(toInt(value))));
478         case "align": clear(ALIGNS); setAlign(value == null ? "center" : value); MARK_RESIZE;
479         case "cursor": setCursor(value);
480         case "fill": setFill(value);
481         case "Press1": mouseEvent("Press1", value);
482         case "Press2": mouseEvent("Press2", value);
483         case "Press3": mouseEvent("Press3", value);
484         case "Release1": mouseEvent("Release1", value);
485         case "Release2": mouseEvent("Release2", value);
486         case "Release3": mouseEvent("Release3", value);
487         case "Click1": mouseEvent("Click1", value);
488         case "Click2": mouseEvent("Click2", value);
489         case "Click3": mouseEvent("Click3", value);
490         case "DoubleClick1": mouseEvent("DoubleClick1", value);
491         case "DoubleClick2": mouseEvent("DoubleClick2", value);
492         case "DoubleClick3": mouseEvent("DoubleClick3", value);
493         case "Minimized": if (parent == null && getSurface() != null) getSurface().minimized = toBoolean(value);  // FEATURE
494         case "Maximized": if (parent == null && getSurface() != null) getSurface().maximized = toBoolean(value);  // FEATURE
495         case "Close": if (parent == null && getSurface() != null) getSurface().dispose(true);
496         case "toback": if (parent == null && getSurface() != null && toBoolean(value)) { getSurface().toBack(); }
497         case "tofront": if (parent == null && getSurface() != null && toBoolean(value)) { getSurface().toFront(); }
498         case "redirect": if (redirect == this) redirect = (Box)value; else Log.log(this, "redirect can only be set once");
499         case "font": font = value == null ? null : Font.getFont((Res)value, font == null ? 10 : font.pointsize); MARK_RESIZE; dirty();
500         case "fontsize": font = Font.getFont(font == null ? null : font.res, toInt(value)); MARK_RESIZE; dirty();
501         case "x": if (parent==null && Surface.fromBox(this)!=null) { CHECKSET_INT(x); } else { if (test(PACKED) && parent != null) return; CHECKSET_INT(x); dirty(); MARK_RESIZE; dirty(); }
502         case "y": if (parent==null && Surface.fromBox(this)!=null) { CHECKSET_INT(y); } else { if (test(PACKED) && parent != null) return; CHECKSET_INT(y); dirty(); MARK_RESIZE; dirty(); }
503         case "KeyPressed":   return;  // prevent stuff from hitting the Hash
504         case "KeyReleased":   return; // prevent stuff from hitting the Hash
505         case "PosChange":   return;   // prevent stuff from hitting the Hash
506         case "SizeChange":   return;  // prevent stuff from hitting the Hash
507         case "childadded":   return;  // prevent stuff from hitting the Hash
508         case "childremoved": return;  // prevent stuff from hitting the Hash
509         case "thisbox": {
510             if (value != null) break;
511             if (parent != null) { parent.removeChild(parent.indexNode(this)); return; }
512             Surface surface = Surface.fromBox(this); 
513             if (surface != null) surface.dispose(true);
514         }
515         default: super.put(name, value);
516         //#end
517     }
518
519     private String alignToString() {
520         switch(flags & ALIGNS) {
521             case (ALIGN_TOP | ALIGN_LEFT): return "topleft";
522             case (ALIGN_BOTTOM | ALIGN_LEFT): return "bottomleft";
523             case (ALIGN_TOP | ALIGN_RIGHT): return "topright";
524             case (ALIGN_BOTTOM | ALIGN_RIGHT): return "bottomright";
525             case ALIGN_TOP: return "top";
526             case ALIGN_BOTTOM: return "bottom";
527             case ALIGN_LEFT: return "left";
528             case ALIGN_RIGHT: return "right";
529             case 0: return "center";
530             default: throw new Error("invalid alignment flags: " + (flags & ALIGNS));
531         }
532     }
533
534     private void setAlign(Object value) {
535         //#switch(value)
536         case "center": clear(ALIGNS);
537         case "topleft": set(ALIGN_TOP | ALIGN_LEFT);
538         case "bottomleft": set(ALIGN_BOTTOM | ALIGN_LEFT);
539         case "topright": set(ALIGN_TOP | ALIGN_RIGHT);
540         case "bottomright": set(ALIGN_BOTTOM | ALIGN_RIGHT);
541         case "top": set(ALIGN_TOP);
542         case "bottom": set(ALIGN_BOTTOM);
543         case "left": set(ALIGN_LEFT);
544         case "right": set(ALIGN_RIGHT);
545         default: Log.logJS("invalid alignment \"" + value + "\"");
546         //#end
547     }
548     
549     private void setCursor(Object value) {
550         if (value == null) { clear(CURSOR); boxToCursor.remove(this); return; }
551         if (value.equals(boxToCursor.get(this))) return;
552         set(CURSOR);
553         boxToCursor.put(this, value);
554         Surface surface = getSurface();
555         String tempcursor = surface.cursor;
556         Move(surface.mousex, surface.mousey, surface.mousex, surface.mousey);
557         if (surface.cursor != tempcursor) surface.syncCursor();
558     }
559
560     private void setFill(Object value) {
561         if (value == null) return;
562         if (value instanceof String) {
563             // FIXME check double set
564             int newfillcolor = stringToColor((String)value);
565             if (newfillcolor == fillcolor) return;
566             fillcolor = newfillcolor;
567             dirty();
568             return;
569         }
570         if (!(value instanceof Res)) return;
571         texture = Picture.fromRes((Res)value, null);
572         if (texture != null) {
573             minwidth = texture.picture.getWidth();
574             minheight = texture.picture.getHeight();
575             MARK_REFLOW;
576             dirty();
577             return;
578         }
579         texture = Picture.fromRes((Res)value, new Scheduler.Task() { public void perform() {
580             minwidth = texture.picture.getWidth();
581             minheight = texture.picture.getHeight();
582             Box b = Box.this; MARK_REFLOW_b;
583             dirty();
584         } });
585     }
586         
587     private void mouseEvent(String name, Object value) {
588         Surface surface = getSurface();
589         if (surface == null) return;
590         int mousex = globalToLocalX(surface.mousex);
591         int mousey = globalToLocalY(surface.mousey);
592         for(Box c = prevSibling(); c != null; c = c.prevSibling())
593             if (c.inside(mousex - c.x, mousey - c.y)) { c.putAndTriggerTraps(name, value); return; }
594         if (parent != null) parent.putAndTriggerTraps(name, value);
595     }
596
597     private static int stringToColor(String s) {
598         if (s == null) return 0x00000000;
599         else if (SVG.colors.get(s) != null) return 0xFF000000 | toInt(SVG.colors.get(s));
600         else if (s.length() > 0 && s.charAt(0) == '#') try {
601             // FEATURE  alpha
602             return 0xFF000000 |
603                 (Integer.parseInt(s.substring(1, 3), 16) << 16) |
604                 (Integer.parseInt(s.substring(3, 5), 16) << 8) |
605                 Integer.parseInt(s.substring(5, 7), 16);
606         } catch (NumberFormatException e) {
607             Log.log(Box.class, "invalid color " + s);
608             return 0;
609         }
610         else return 0; // FEATURE: error?
611     }
612
613     private static String colorToString(int argb) {
614         if ((argb & 0xFF000000) == 0) return null;
615         String red = Integer.toHexString((argb & 0x00FF0000) >> 16);
616         String green = Integer.toHexString((argb & 0x0000FF00) >> 8);
617         String blue = Integer.toHexString(argb & 0x000000FF);
618         if (red.length() < 2) red = "0" + red;
619         if (blue.length() < 2) blue = "0" + blue;
620         if (green.length() < 2) green = "0" + green;
621         return "#" + red + green + blue;
622     }
623
624     /** figures out what box in this subtree of the Box owns the pixel at x,y relitave to the Surface */
625     public static Box whoIs(Box cur, int x, int y) {
626
627         if (cur.parent != null) throw new Error("whoIs may only be invoked on the root box of a surface");
628         int globalx = 0;
629         int globaly = 0;
630
631         // WARNING: this method is called from the event-queueing thread -- it may run concurrently with
632         // ANY part of XWT, and is UNSYNCHRONIZED for performance reasons.  BE CAREFUL HERE.
633
634         if (!cur.test(VISIBLE)) return null;
635         if (!cur.inside(x - globalx, y - globaly)) return cur.parent == null ? cur : null;
636         OUTER: while(true) {
637             for(int i=cur.treeSize() - 1; i>=0; i--) {
638                 Box child = cur.getChild(i);
639                 if (child == null) continue;        // since this method is unsynchronized, we have to double-check
640                 globalx += child.x;
641                 globaly += child.y;
642                 if (child.test(VISIBLE) && child.inside(x - globalx, y - globaly)) { cur = child; continue OUTER; }
643                 globalx -= child.x;
644                 globaly -= child.y;
645             }
646             break;
647         }
648         return cur;
649     }
650
651
652     // Trivial Helper Methods (should be inlined) /////////////////////////////////////////
653
654     static short min(short a, short b) { if (a<b) return a; else return b; }
655     static int min(int a, int b) { if (a<b) return a; else return b; }
656     static float min(float a, float b) { if (a<b) return a; else return b; }
657
658     static short max(short a, short b) { if (a>b) return a; else return b; }
659     static int max(int a, int b) { if (a>b) return a; else return b; }
660     static float max(float a, float b) { if (a>b) return a; else return b; }
661
662     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; }
663     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; }
664     static int bound(int a, int b, int c) { if (c < b) return c; if (a > b) return a; return b; }
665     final boolean inside(int x, int y) { return test(VISIBLE) && x >= 0 && y >= 0 && x < width && y < height; }
666
667     void set(int mask) { flags |= mask; }
668     void set(int mask, boolean setclear) { if (setclear) set(mask); else clear(mask); }
669     void clear(int mask) { flags &= ~mask; }
670     boolean test(int mask) { return ((flags & mask) == mask); }
671     
672
673     // Tree Handling //////////////////////////////////////////////////////////////////////
674
675     public final int getIndexInParent() { return parent == null ? 0 : parent.indexNode(this); }
676     public final Box nextSibling() { return parent == null ? null : parent.getChild(parent.indexNode(this) + 1); }
677     public final Box prevSibling() { return parent == null ? null : parent.getChild(parent.indexNode(this) - 1); }
678     public final Box getChild(int i) {
679         if (i < 0) return null;
680         if (i >= treeSize()) return null;
681         return (Box)getNode(i);
682     }
683
684     // Tree Manipulation /////////////////////////////////////////////////////////////////////
685
686     /** remove the i^th child */
687     public void removeChild(int i) {
688         Box b = getChild(i);
689         MARK_REFLOW_b;
690         b.dirty();
691         b.clear(MOUSEINSIDE);
692         deleteNode(i);
693         b.parent = null;
694         MARK_REFLOW;
695         putAndTriggerTraps("childremoved", b);
696     }
697     
698     public void put(int i, Object value) throws JSExn {
699         if (i < 0) return;
700             
701         if (value != null && !(value instanceof Box)) {
702             if (Log.on) Log.logJS(this, "attempt to set a numerical property on a box to a non-box");
703             return;
704         }
705
706         if (redirect == null) {
707             if (value == null) putAndTriggerTraps("childremoved", getChild(i));
708             else Log.logJS(this, "attempt to add/remove children to/from a node with a null redirect");
709
710         } else if (redirect != this) {
711             if (value != null) putAndTriggerTraps("childadded", value);
712             redirect.put(i, value);
713             if (value == null) {
714                 Box b = (Box)redirect.get(new Integer(i));
715                 if (b != null) putAndTriggerTraps("childremoved", b);
716             }
717
718         } else if (value == null) {
719             if (i < 0 || i > treeSize()) return;
720             Box b = getChild(i);
721             removeChild(i);
722             putAndTriggerTraps("childremoved", b);
723
724         } else {
725             Box b = (Box)value;
726
727             // check if box being moved is currently target of a redirect
728             for(Box cur = b.parent; cur != null; cur = cur.parent)
729                 if (cur.redirect == b) {
730                     if (Log.on) Log.logJS(this, "attempt to move a box that is the target of a redirect");
731                     return;
732                 }
733
734             // check for recursive ancestor violation
735             for(Box cur = this; cur != null; cur = cur.parent)
736                 if (cur == b) {
737                     if (Log.on) Log.logJS(this, "attempt to make a node a parent of its own ancestor");
738                     if (Log.on) Log.log(this, "box == " + this + "  ancestor == " + b);
739                     return;
740                 }
741
742             if (b.parent != null) b.parent.removeChild(b.parent.indexNode(b));
743             insertNode(i, b);
744             b.parent = this;
745             
746             // need both of these in case child was already uncalc'ed
747             MARK_REFLOW_b;
748             MARK_REFLOW;
749             
750             b.dirty(); 
751             putAndTriggerTraps("childadded", b);
752         }
753     }
754
755
756     public final void putAndTriggerTraps(Object key, Object value) {
757         try {
758             super.putAndTriggerTraps(key, value);
759         } catch (JSExn jse) {
760             Log.logJS("attempt to put value " + value + " to key " + key + " on a box triggered a trap which threw:");
761             Log.logJS(jse);
762         }
763     }
764
765     public final Object getAndTriggerTraps(Object key) {
766         try {
767             return super.getAndTriggerTraps(key);
768         } catch (JSExn jse) {
769             Log.logJS("attempt to get key " + key + " on a box triggered a trap which threw:");
770             Log.logJS(jse);
771             return null;
772         }
773     }
774 }
775
776
777
778
779
780
781         /*
782         offset_x = 0;
783         if (path != null) {
784             if (rpath == null) rpath = path.realize(transform == null ? VectorGraphics.Affine.identity() : transform);
785             if ((flags & HSHRINK) != 0) contentwidth = max(contentwidth, rpath.boundingBoxWidth());
786             if ((flags & VSHRINK) != 0) contentheight = max(contentheight, rpath.boundingBoxHeight());
787             // FIXME: separate offset_x needed for the path
788         }
789         // #repeat x1/y1 x2/y2 x3/y3 x4/y4 contentwidth/contentheight left/top right/bottom
790         int x1 = transform == null ? 0 : (int)transform.multiply_px(0, 0);
791         int x2 = transform == null ? 0 : (int)transform.multiply_px(contentwidth, 0);
792         int x3 = transform == null ? contentwidth : (int)transform.multiply_px(contentwidth, contentheight);
793         int x4 = transform == null ? contentwidth : (int)transform.multiply_px(0, contentheight);
794         int left = min(min(x1, x2), min(x3, x4));
795         int right = max(max(x1, x2), max(x3, x4));
796         contentwidth = max(contentwidth, right - left);
797         offset_x = -1 * left;
798         // #end
799         */
800
801
802                     /*
803         if (path != null) {
804             if (rtransform == null) rpath = null;
805             else if (!rtransform.equalsIgnoringTranslation(a)) rpath = null;
806             else {
807                 rpath.translate((int)(a.e - rtransform.e), (int)(a.f - rtransform.f));
808                 rtransform = a.copy();
809             }
810             if (rpath == null) rpath = path.realize((rtransform = a) == null ? VectorGraphics.Affine.identity() : a);
811             if ((strokecolor & 0xff000000) != 0) rpath.stroke(buf, 1, strokecolor);
812             if ((fillcolor & 0xff000000) != 0) rpath.fill(buf, new VectorGraphics.SingleColorPaint(fillcolor));
813         }
814 */
815
816
817 /*
818             VectorGraphics.Affine a2 = VectorGraphics.Affine.translate(b.x, b.y);
819             if (transform != null) a2.multiply(transform);
820             a2.multiply(VectorGraphics.Affine.translate(offset_x, offset_y));
821             a2.multiply(a);
822 */