X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2Forg%2Fxwt%2FBox.java.pp;h=73524f70ae4a5e1e1c11ba6ad06d762b51b88a1a;hb=2f02c1815b096a837b7ee70eb6d775ee959525c8;hp=554b2874df72bcf4cd166bc732d89a2f217590a5;hpb=d1db5780c2fe79cf7acaa71508358d410aec7b96;p=org.ibex.core.git diff --git a/src/org/xwt/Box.java.pp b/src/org/xwt/Box.java.pp index 554b287..73524f7 100644 --- a/src/org/xwt/Box.java.pp +++ b/src/org/xwt/Box.java.pp @@ -92,6 +92,7 @@ public final class Box extends JS.Scope { static int TILE_FLAG = 0x00000020; static int FONT_CHANGED_FLAG = 0x00000040; // set when font changes, cleared during repack static int ISROOT_FLAG = 0x00000080; + static int NOCLIP_FLAG = 0x00000100; // Geometry //////////////////////////////////////////////////////////////////////////// @@ -102,10 +103,10 @@ public final class Box extends JS.Scope { //#define MIN_LENGTH Integer.MIN_VALUE // always correct (set directly by user) - LENGTH minwidth = 0; - LENGTH minheight = 0; - LENGTH maxwidth = MAX_LENGTH; - LENGTH maxheight = MAX_LENGTH; + public LENGTH minwidth = 0; + public LENGTH minheight = 0; + public LENGTH maxwidth = MAX_LENGTH; + public LENGTH maxheight = MAX_LENGTH; private LENGTH hpad = 0; private LENGTH vpad = 0; private String text = null; @@ -133,13 +134,15 @@ public final class Box extends JS.Scope { // Rendering Properties /////////////////////////////////////////////////////////// - //private SVG.VP path = null; - //private SVG.Paint fill = null; - //private SVG.Paint stroke = null; + private VectorGraphics.VectorPath path = null; + private VectorGraphics.Affine transform = null; + //private VectorGraphics.Paint fill = null; + //private VectorGraphics.Paint stroke = null; + int strokewidth = 1; - private Picture image; // will disappear - private int fillcolor = 0x00000000; // will become SVG.Paint - private int strokecolor = 0xFF000000; // will become SVG.Paint + public Picture image; // will disappear + private int fillcolor = 0x00000000; // will become VectorGraphics.Paint + private int strokecolor = 0xFF000000; // will become VectorGraphics.Paint private String cursor = null; // the cursor for this box @@ -147,13 +150,18 @@ public final class Box extends JS.Scope { // Instance Methods ///////////////////////////////////////////////////////////////////// /** Adds the intersection of (x,y,w,h) and the node's current actual geometry to the Surface's dirty list */ - public final void dirty() { dirty(0, 0, width, height); } + public final void dirty() { + if ((flags & NOCLIP_FLAG) != 0 && parent != null) parent.dirty(); + else dirty(0, 0, width, height); + } public final void dirty(int x, int y, int w, int h) { for(Box cur = this; cur != null; cur = cur.parent) { - w = min(x + w, cur.width) - max(x, 0); - h = min(y + h, cur.height) - max(y, 0); - x = max(x, 0); - y = max(y, 0); + if ((flags & NOCLIP_FLAG) == 0) { + w = min(x + w, cur.width) - max(x, 0); + h = min(y + h, cur.height) - max(y, 0); + x = max(x, 0); + y = max(y, 0); + } if (w <= 0 || h <= 0) return; if (cur.parent == null && cur.surface != null) cur.surface.dirty(x, y, w, h); x += cur.x; @@ -196,10 +204,11 @@ public final class Box extends JS.Scope { // Reflow //////////////////////////////////////////////////////////////////////////////////////// - void reflow() { + void reflow() { reflow(width, height); } + void reflow(int new_width, int new_height) { repack(); if (Surface.abort) return; - resize(x, y, width, height); + resize(x, y, new_width, new_height); } /** Checks if the Box's size has changed, dirties it if necessary, and makes sure childrens' sizes are up to date */ @@ -208,6 +217,10 @@ public final class Box extends JS.Scope { 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; } @@ -266,12 +279,16 @@ public final class Box extends JS.Scope { for(int col=0; col> 16); @@ -918,13 +911,13 @@ public final class Box extends JS.Scope { //#end specialBoxProperties.put("color", new SpecialBoxProperty() { - public Object get(Box b) { return b.get("fillcolor"); } - public void put(Box b, Object value) { b.put("fillcolor", value); } + public Object get(Box b) { return b.get("fill"); } + public void put(Box b, Object value) { b.put("fill", value); } }); specialBoxProperties.put("textcolor", new SpecialBoxProperty() { - public Object get(Box b) { return b.get("strokecolor"); } - public void put(Box b, Object value) { b.put("strokecolor", value); } + public Object get(Box b) { return b.get("stroke"); } + public void put(Box b, Object value) { b.put("stroke", value); } }); specialBoxProperties.put("text", new SpecialBoxProperty() { @@ -952,6 +945,83 @@ public final class Box extends JS.Scope { b.dirty(); } }); + specialBoxProperties.put("path", new SpecialBoxProperty() { + public Object get(Box b) { throw new JS.Exn("cannot read from the path property"); } + public void put(Box b, Object value) { + String t = value == null ? "null" : value.toString(); + b.path = value == null ? null : VectorGraphics.parseVectorPath(value.toString()); + MARK_FOR_REFLOW_b; + b.dirty(); + } }); + + specialBoxProperties.put("transform", new SpecialBoxProperty() { + public void put(Box b, Object 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(); + } + b.dirty(); + } + 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) { @@ -972,6 +1042,14 @@ public final class Box extends JS.Scope { b.dirty(); } }); + specialBoxProperties.put("strokewidth", new SpecialBoxProperty() { + 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); + b.dirty(); + } }); + specialBoxProperties.put("thisbox", new SpecialBoxProperty() { public Object get(Box b) { return b; } public void put(Box b, Object value) { @@ -1006,10 +1084,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); } @@ -1094,6 +1168,15 @@ public final class Box extends JS.Scope { b.dirty(); } }); + specialBoxProperties.put("noclip", new SpecialBoxProperty() { + public Object get(Box b) { return ((b.flags & NOCLIP_FLAG) != 0) ? Boolean.TRUE : Boolean.FALSE; } + public void put(Box b, Object value) { + if (((b.flags & NOCLIP_FLAG) != 0) == stob(value)) return; + if (stob(value)) b.flags |= NOCLIP_FLAG; else b.flags &= ~NOCLIP_FLAG; + MARK_FOR_REFLOW_b; + b.dirty(); + } }); + specialBoxProperties.put("invisible", new SpecialBoxProperty() { public Object get(Box b) { for (Box cur = b; cur != null; cur = cur.parent) { @@ -1126,6 +1209,7 @@ public final class Box extends JS.Scope { public Object get(Box b) { return b.image == null ? null : ImageDecoder.imageToNameMap.get(b.image); } */ public void put(Box b, Object value) { + //if (image != null) System.out.println("hit"); if (value == null) { b.image = null; } else if (value instanceof Res) { @@ -1133,8 +1217,8 @@ public final class Box extends JS.Scope { } else { // FIXME } - b.minwidth = b.image == null ? 0 : b.image.getWidth(); - b.minheight = b.image == null ? 0 : b.image.getHeight(); + b.minwidth = min(b.maxwidth, max(b.minwidth, b.image == null ? 0 : b.image.getWidth())); + b.minheight = min(b.maxheight, max(b.minheight, b.image == null ? 0 : b.image.getHeight())); MARK_FOR_REFLOW_b; b.dirty(); } @@ -1177,10 +1261,6 @@ public final class Box extends JS.Scope { }); //#end - specialBoxProperties.put("xwt", new SpecialBoxProperty() { - public Object get(Box b) { return XWT.singleton; } - }); - specialBoxProperties.put("mouseinside", new SpecialBoxProperty() { public Object get(Box b) { return ((b.flags & MOUSEINSIDE_FLAG) != 0) ? Boolean.TRUE : Boolean.FALSE; } @@ -1321,7 +1401,16 @@ public final class Box extends JS.Scope { //#end specialBoxProperties.put("redirect", new SpecialBoxProperty() { - public void put(Box b, Object value) { } + public void put(Box b, Object value) { + if (b.redirect != b) Log.log(this, "cannot change the redirect of a box once it is set"); + else if (value == null) b.redirect = null; + else { + Box b2 = (Box)value; + while(b2 != b && b2 != null) b2 = b2.parent; + if (b2 == null) Log.log(this, "a box's redirect must be one of its descendants"); + b.redirect = (Box)value; + } + } public Object get(Box b) { if (b.redirect == null) return null; if (b.redirect == b) return Boolean.TRUE;