From: megacz Date: Fri, 30 Jan 2004 07:38:59 +0000 (+0000) Subject: 2003/10/07 20:37:25 X-Git-Tag: RC3~491 X-Git-Url: http://git.megacz.com/?p=org.ibex.core.git;a=commitdiff_plain;h=5e8485ac88b45693b5cdb8e70f346b92732eb91f 2003/10/07 20:37:25 darcs-hash:20040130073859-2ba56-bcb664508b5b0290b6dbfcd389a50fa4e7393576.gz --- diff --git a/src/org/xwt/Box.java.pp b/src/org/xwt/Box.java.pp index 931171c..09035f9 100644 --- a/src/org/xwt/Box.java.pp +++ b/src/org/xwt/Box.java.pp @@ -86,7 +86,7 @@ public final class Box extends JS.Scope { short flags = 0; static int MOUSEINSIDE_FLAG = 0x00000001; static int INVISIBLE_FLAG = 0x00000002; - static int ABSOLUTE_FLAG = 0x00000004; + static int NOTPACKED_FLAG = 0x00000004; static int HSHRINK_FLAG = 0x00000008; static int VSHRINK_FLAG = 0x00000010; static int TILE_FLAG = 0x00000020; @@ -130,12 +130,18 @@ public final class Box extends JS.Scope { private int col = 0; // FEATURE use a short private LENGTH contentwidth = 0; // == max(minwidth, textwidth+pad, sum(child.contentwidth) + pad) private LENGTH contentheight = 0; + private LENGTH offset_x = 0; + private LENGTH offset_y = 0; // Rendering Properties /////////////////////////////////////////////////////////// private VectorGraphics.VectorPath path = null; private VectorGraphics.Affine transform = null; + + private VectorGraphics.RasterPath rpath = null; + private VectorGraphics.Affine rtransform = null; + //private VectorGraphics.Paint fill = null; //private VectorGraphics.Paint stroke = null; int strokewidth = 1; @@ -215,15 +221,7 @@ public final class Box extends JS.Scope { /** Checks if the Box's size has changed, dirties it if necessary, and makes sure childrens' sizes are up to date */ void repack() { if (!needs_reflow) return; - if (numChildren() == 0) { - contentwidth = max(textwidth + 2 * hpad, minwidth); - contentheight = max(textheight + 2 * vpad, minheight); - if (path != null) { - contentwidth = max(contentwidth, path.boundingBoxWidth()); - contentheight = max(contentheight, path.boundingBoxHeight()); - } - return; - } + contentwidth = contentheight = 0; // --- Phase 0 ---------------------------------------------------------------------- // recurse @@ -241,10 +239,10 @@ public final class Box extends JS.Scope { // assign children to their row/column positions (assuming constrained columns) if ((rows == 0 && cols == 0) || (rows != 0 && cols != 0)) throw new Error("rows == " + rows + " cols == " + cols); //#repeat x/y y/x width/height col/row row/col cols/rows rows/cols colspan/rowspan rowspan/colspan colWidth/rowHeight numRowsInCol/numColsInRow INNER/INNER2 maxwidth/maxheight minwidth/minheight contentwidth/contentheight colMaxWidth/rowMaxHeight OUTER/OUTER2 INNER/INNER2 - if (rows == 0) { + if (rows == 0 && numChildren() != 0) { int[] numRowsInCol = new int[cols]; // the number of cells occupied in each column Box child = getChild(0); - for(; child != null && (((child.flags & ABSOLUTE_FLAG) != 0) || ((child.flags & INVISIBLE_FLAG) != 0)); child = child.nextSibling()); + for(; child != null && (((child.flags & NOTPACKED_FLAG) != 0) || ((child.flags & INVISIBLE_FLAG) != 0)); child = child.nextSibling()); OUTER: for(int row=0; child != null; row++) { for(int col=0; child != null && col < cols;) { INNER: while(true) { // scan across the row, looking for an unoccupied gap at least as wide as the child @@ -259,7 +257,7 @@ public final class Box extends JS.Scope { child.row = row; col += min(cols, child.colspan); child = child.nextSibling(); - for(; child != null && (((child.flags & ABSOLUTE_FLAG) != 0) || ((child.flags & INVISIBLE_FLAG) != 0)); child = child.nextSibling()); + for(; child != null && (((child.flags & NOTPACKED_FLAG) != 0) || ((child.flags & INVISIBLE_FLAG) != 0)); child = child.nextSibling()); } } } @@ -267,26 +265,44 @@ public final class Box extends JS.Scope { // --- Phase 2 ---------------------------------------------------------------------- // compute the min/max sizes of the columns and rows and set our contentwidth - //#repeat x/y y/x width/height col/row cols/rows colspan/rowspan colWidth/rowHeight maxwidth/maxheight minwidth/minheight contentwidth/contentheight colMaxWidth/rowMaxHeight numCols/numRows hpad/vpad - contentwidth = 2 * hpad; - int numCols = cols; - if (numCols == 0) + if (numChildren() != 0) { + //#repeat x/y y/x width/height col/row cols/rows colspan/rowspan colWidth/rowHeight maxwidth/maxheight minwidth/minheight contentwidth/contentheight colMaxWidth/rowMaxHeight numCols/numRows hpad/vpad + contentwidth = 2 * hpad; + int numCols = cols; + if (numCols == 0) + for(Box child = getChild(0); child != null; child = child.nextSibling()) + numCols = max(numCols, child.col + child.colspan); + LENGTH[] colWidth = new LENGTH[numCols]; for(Box child = getChild(0); child != null; child = child.nextSibling()) - numCols = max(numCols, child.col + child.colspan); - LENGTH[] colWidth = new LENGTH[numCols]; - for(Box child = getChild(0); child != null; child = child.nextSibling()) - if (!(((child.flags & ABSOLUTE_FLAG) != 0) || ((child.flags & INVISIBLE_FLAG) != 0))) - colWidth[child.col] = max(colWidth[child.col], child.contentwidth / child.colspan); - for(int col=0; colb) return a; else return b; } + static final float max(float a, float b) { if (a>b) return a; else return b; } 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; } 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; } static final int bound(int a, int b, int c) { if (c < b) return c; if (a > b) return a; return b; } @@ -986,6 +1018,7 @@ public final class Box extends JS.Scope { } t = t.substring(t.indexOf(')') + 1).trim(); } + MARK_FOR_REFLOW_b; b.dirty(); } public Object get(Box b) { return b.transform.toString(); } @@ -1078,7 +1111,7 @@ public final class Box extends JS.Scope { return new Integer(b.x); } public void put(Box b, Object value) { - if (!((b.flags & ABSOLUTE_FLAG) != 0)) return; + if (!((b.flags & NOTPACKED_FLAG) != 0)) return; int x = stoi(value); if (x == b.x) return; b.dirty(); @@ -1164,12 +1197,12 @@ public final class Box extends JS.Scope { } }}); - specialBoxProperties.put("absolute", new SpecialBoxProperty() { - public Object get(Box b) { return ((b.flags & ABSOLUTE_FLAG) != 0) ? Boolean.TRUE : Boolean.FALSE; } + specialBoxProperties.put("packed", new SpecialBoxProperty() { + public Object get(Box b) { return ((b.flags & NOTPACKED_FLAG) != 0) ? Boolean.TRUE : Boolean.FALSE; } public void put(Box b, Object value) { - if (stob(value) == ((b.flags & ABSOLUTE_FLAG) != 0)) return; - if (stob(value)) b.flags |= ABSOLUTE_FLAG; else b.flags &= ~ABSOLUTE_FLAG; - if ((b.flags & ABSOLUTE_FLAG) != 0) { b.x = 0; b.y = 0; } + if (stob(value) == ((b.flags & NOTPACKED_FLAG) == 0)) return; + if (!stob(value)) b.flags |= NOTPACKED_FLAG; else b.flags &= ~NOTPACKED_FLAG; + if ((b.flags & NOTPACKED_FLAG) != 0) { b.x = 0; b.y = 0; } if (b.parent != null) MARK_FOR_REFLOW_b_parent; } }); diff --git a/src/org/xwt/Template.java b/src/org/xwt/Template.java index 338771d..207f859 100644 --- a/src/org/xwt/Template.java +++ b/src/org/xwt/Template.java @@ -128,8 +128,8 @@ public class Template { for(int i=0; keys != null && i