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