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