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