X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2FBox.java.pp;h=09035f9c5dd758a35999c35e6ec0448480e67dcf;hb=5e8485ac88b45693b5cdb8e70f346b92732eb91f;hp=7a4fc728099dc0f9a63efe83aeee3e68c5ae5437;hpb=f4ff7c16a3b69784da7f66f6ff1be899b4a5f508;p=org.ibex.core.git diff --git a/src/org/xwt/Box.java.pp b/src/org/xwt/Box.java.pp index 7a4fc72..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,17 +130,26 @@ 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 SVG.Paint fill = null; - //private SVG.Paint stroke = 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; public Picture image; // will disappear - private int fillcolor = 0x00000000; // will become SVG.Paint - private int strokecolor = 0xFF000000; // will become SVG.Paint + private int fillcolor = 0x00000000; // will become VectorGraphics.Paint + private int strokecolor = 0xFF000000; // will become VectorGraphics.Paint + private int textcolor = 0xFF000000; // will become VectorGraphics.Paint private String cursor = null; // the cursor for this box @@ -212,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 @@ -238,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 @@ -256,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()); } } } @@ -264,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; } @@ -872,49 +908,17 @@ public final class Box extends JS.Scope { void put(String name, Box b, Object value) { put(b, value); } static { - //#repeat fill/stroke fillcolor/strokecolor - specialBoxProperties.put("fill", new SpecialBoxProperty() { - public Object get(Box b) { - if ((b.fillcolor & 0xFF000000) == 0) return null; - String red = Integer.toHexString((b.fillcolor & 0x00FF0000) >> 16); - String green = Integer.toHexString((b.fillcolor & 0x0000FF00) >> 8); - String blue = Integer.toHexString(b.fillcolor & 0x000000FF); - if (red.length() < 2) red = "0" + red; - if (blue.length() < 2) blue = "0" + blue; - if (green.length() < 2) green = "0" + green; - return "#" + red + green + blue; - } - public void put(Box b, Object value) { - int newcolor = b.fillcolor; - String s = value == null ? null : value.toString(); - if (value == null) newcolor = 0x00000000; - else if (s.length() > 0 && s.charAt(0) == '#') - try { - newcolor = 0xFF000000 | - (Integer.parseInt(s.substring(1, 3), 16) << 16) | - (Integer.parseInt(s.substring(3, 5), 16) << 8) | - Integer.parseInt(s.substring(5, 7), 16); - } catch (NumberFormatException e) { - Log.log(this, "invalid color " + s); - return; - } - else if (org.xwt.translators.SVG.colors.get(s) != null) - newcolor = 0xFF000000 | ((Integer)org.xwt.translators.SVG.colors.get(s)).intValue(); - if (newcolor == b.fillcolor) return; - b.fillcolor = newcolor; - b.dirty(); - } + specialBoxProperties.put("fill", new ColorBoxProperty() { + public int getColor(Box b) { return b.fillcolor; } + public void putColor(Box b, int argb) { b.fillcolor = argb; } }); - //#end - - specialBoxProperties.put("color", new SpecialBoxProperty() { - public Object get(Box b) { return b.get("fill"); } - public void put(Box b, Object value) { b.put("fill", value); } + specialBoxProperties.put("textcolor", new ColorBoxProperty() { + public int getColor(Box b) { return b.textcolor; } + public void putColor(Box b, int argb) { b.textcolor = argb; } }); - - specialBoxProperties.put("textcolor", new SpecialBoxProperty() { - public Object get(Box b) { return b.get("stroke"); } - public void put(Box b, Object value) { b.put("stroke", value); } + specialBoxProperties.put("strokecolor", new ColorBoxProperty() { + public int getColor(Box b) { return b.strokecolor; } + public void putColor(Box b, int argb) { b.strokecolor = argb; } }); specialBoxProperties.put("text", new SpecialBoxProperty() { @@ -951,17 +955,76 @@ public final class Box extends JS.Scope { b.dirty(); } }); - specialBoxProperties.put("font", new SpecialBoxProperty() { - public Object get(Box b) { return b.font; } + specialBoxProperties.put("transform", new SpecialBoxProperty() { public void put(Box b, Object value) { - // FIXME: translate value into a resource if it is a string - b.font = value == null ? null : (Res)value; + String t = value.toString().trim(); + b.transform = VectorGraphics.Affine.identity(); + while (t.length() > 0) { + if (t.startsWith("skewX(")) { + // FIXME + + } else if (t.startsWith("shear(")) { + // FIXME: nonstandard; remove this + b.transform.multiply(VectorGraphics.Affine.shear(Float.parseFloat(t.substring(t.indexOf('(') + 1, t.indexOf(')'))))); + + } else if (t.startsWith("skewY(")) { + // FIXME + + } else if (t.startsWith("rotate(")) { + String sub = t.substring(t.indexOf('(') + 1, t.indexOf(')')); + if (sub.indexOf(',') != -1) { + float angle = Float.parseFloat(sub.substring(0, sub.indexOf(','))); + sub = sub.substring(sub.indexOf(',') + 1); + float cx = Float.parseFloat(sub.substring(0, sub.indexOf(','))); + sub = sub.substring(sub.indexOf(',') + 1); + float cy = Float.parseFloat(sub); + b.transform.multiply(VectorGraphics.Affine.translate(cx, cy)); + b.transform.multiply(VectorGraphics.Affine.rotate(angle)); + b.transform.multiply(VectorGraphics.Affine.translate(-1 * cx, -1 * cy)); + } else { + b.transform.multiply(VectorGraphics.Affine.rotate(Float.parseFloat(t.substring(t.indexOf('(') + 1, t.indexOf(')'))))); + } + + } else if (t.startsWith("translate(")) { + String sub = t.substring(t.indexOf('(') + 1, t.indexOf(')')); + if (sub.indexOf(',') > -1) { + b.transform.multiply(VectorGraphics.Affine.translate(Float.parseFloat(t.substring(t.indexOf('(') + 1, t.indexOf(','))), + Float.parseFloat(t.substring(t.indexOf(',') + 1, t.indexOf(')'))))); + } else { + b.transform.multiply(VectorGraphics.Affine.translate(Float.parseFloat(t.substring(t.indexOf('(') + 1, t.indexOf(','))), 0)); + } + + } else if (t.startsWith("flip(")) { + String which = t.substring(t.indexOf('(') + 1, t.indexOf(')')); + b.transform.multiply(VectorGraphics.Affine.flip(which.equals("horizontal"), which.equals("vertical"))); + + } else if (t.startsWith("scale(")) { + String sub = t.substring(t.indexOf('(') + 1, t.indexOf(')')); + if (sub.indexOf(',') > -1) { + b.transform.multiply(VectorGraphics.Affine.scale(Float.parseFloat(t.substring(t.indexOf('(') + 1, t.indexOf(','))), + Float.parseFloat(t.substring(t.indexOf(',') + 1, t.indexOf(')'))))); + } else { + b.transform.multiply(VectorGraphics.Affine.scale(Float.parseFloat(t.substring(t.indexOf('(') + 1, t.indexOf(','))), + Float.parseFloat(t.substring(t.indexOf('(') + 1, t.indexOf(','))))); + } + + } else if (t.startsWith("matrix(")) { + // FIXME: is this mapped right? + float d[] = new float[6]; + StringTokenizer st = new StringTokenizer(t, ",", false); + for(int i=0; i<6; i++) + d[i] = Float.parseFloat(st.nextToken()); + b.transform.multiply(new VectorGraphics.Affine(d[0], d[1], d[2], d[3], d[4], d[5])); + } + t = t.substring(t.indexOf(')') + 1).trim(); + } MARK_FOR_REFLOW_b; - b.flags |= FONT_CHANGED_FLAG; b.dirty(); - } }); - - specialBoxProperties.put("transform", new SpecialBoxProperty() { + } + public Object get(Box b) { return b.transform.toString(); } + }); + + specialBoxProperties.put("font", new SpecialBoxProperty() { public Object get(Box b) { return b.font; } public void put(Box b, Object value) { // FIXME: translate value into a resource if it is a string @@ -982,7 +1045,7 @@ public final class Box extends JS.Scope { } }); specialBoxProperties.put("strokewidth", new SpecialBoxProperty() { - public Object get(Box b) { return b.strokewidth; } + public Object get(Box b) { return new Integer(b.strokewidth); } public void put(Box b, Object value) { if (b.strokewidth == stoi(value)) return; b.strokewidth = stoi(value); @@ -1023,10 +1086,6 @@ public final class Box extends JS.Scope { MARK_FOR_REFLOW_b; } }); - //FIXME - specialBoxProperties.put("static", new SpecialBoxProperty() { - }); - specialBoxProperties.put("shrink", new SpecialBoxProperty() { public Object get(Box b) { return (((b.flags & HSHRINK_FLAG) != 0) || ((b.flags & VSHRINK_FLAG) != 0)) ? Boolean.TRUE : Boolean.FALSE; } public void put(Box b, Object value) { b.put("hshrink", value); b.put("vshrink", value); } @@ -1052,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(); @@ -1120,15 +1179,15 @@ public final class Box extends JS.Scope { b.dirty(); } }); - specialBoxProperties.put("invisible", new SpecialBoxProperty() { + specialBoxProperties.put("visible", new SpecialBoxProperty() { public Object get(Box b) { for (Box cur = b; cur != null; cur = cur.parent) { - if ((cur.flags & INVISIBLE_FLAG) != 0) return Boolean.TRUE; } - return Boolean.FALSE; + if ((cur.flags & INVISIBLE_FLAG) != 0) return Boolean.FALSE; } + return Boolean.TRUE; } public void put(Box b, Object value) { - if (stob(value) == ((b.flags & INVISIBLE_FLAG) != 0)) return; - if (stob(value)) b.flags |= INVISIBLE_FLAG; else b.flags &= ~INVISIBLE_FLAG; + if (!stob(value) == ((b.flags & INVISIBLE_FLAG) != 0)) return; + if (!stob(value)) b.flags |= INVISIBLE_FLAG; else b.flags &= ~INVISIBLE_FLAG; if (b.parent == null) { if (b.surface != null) b.surface.setInvisible((b.flags & INVISIBLE_FLAG) != 0); } else { @@ -1138,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; } }); @@ -1384,6 +1443,41 @@ public final class Box extends JS.Scope { */ }); } + + private static abstract class ColorBoxProperty extends SpecialBoxProperty { + public abstract int getColor(Box b); + public abstract void putColor(Box b, int argb); + public Object get(Box b) { + if ((getColor(b) & 0xFF000000) == 0) return null; + String red = Integer.toHexString((getColor(b) & 0x00FF0000) >> 16); + String green = Integer.toHexString((getColor(b) & 0x0000FF00) >> 8); + String blue = Integer.toHexString(getColor(b) & 0x000000FF); + if (red.length() < 2) red = "0" + red; + if (blue.length() < 2) blue = "0" + blue; + if (green.length() < 2) green = "0" + green; + return "#" + red + green + blue; + } + public void put(Box b, Object value) { + int newcolor = getColor(b); + String s = value == null ? null : value.toString(); + if (value == null) newcolor = 0x00000000; + else if (s.length() > 0 && s.charAt(0) == '#') + try { + newcolor = 0xFF000000 | + (Integer.parseInt(s.substring(1, 3), 16) << 16) | + (Integer.parseInt(s.substring(3, 5), 16) << 8) | + Integer.parseInt(s.substring(5, 7), 16); + } catch (NumberFormatException e) { + Log.log(this, "invalid color " + s); + return; + } + else if (org.xwt.translators.SVG.colors.get(s) != null) + newcolor = 0xFF000000 | ((Integer)org.xwt.translators.SVG.colors.get(s)).intValue(); + if (newcolor == getColor(b)) return; + putColor(b, newcolor); + b.dirty(); + } + } } /** helper that converts a String to a boolean according to JavaScript coercion rules */