Example usage for com.google.gwt.canvas.dom.client Context2d setTextBaseline

List of usage examples for com.google.gwt.canvas.dom.client Context2d setTextBaseline

Introduction

In this page you can find the example usage for com.google.gwt.canvas.dom.client Context2d setTextBaseline.

Prototype

public final void setTextBaseline(TextBaseline baseline) 

Source Link

Document

Sets the text baseline.

Usage

From source file:com.badlogic.gdx.backends.gwt.GwtApplicationCustom.java

License:Apache License

public PreloaderCallback getPreloaderCallback() {
    final Canvas canvas = Canvas.createIfSupported();
    canvas.setWidth("100%");
    canvas.setHeight("100%");
    getRootPanel().add(canvas);/* w  w  w  .j  a  va  2  s  .  c  om*/
    final Context2d context = canvas.getContext2d();
    context.setTextAlign(TextAlign.CENTER);
    context.setTextBaseline(TextBaseline.MIDDLE);
    context.setFont("18pt Calibri");

    return new PreloaderCallback() {
        @Override
        public void done() {
            context.fillRect(0, 0, 300, 40);
        }

        @Override
        public void loaded(String file, int loaded, int total) {
            System.out.println("loaded " + file + "," + loaded + "/" + total);
            //            String color = Pixmap.make(30, 30, 30, 1);
            //            context.setFillStyle(color);
            //            context.setStrokeStyle(color);
            context.fillRect(0, 0, 300, 70);
            //            color = Pixmap.make(200, 200, 200, (((TimeUtils.nanoTime() - loadStart) % 1000000000) / 1000000000f));
            //            context.setFillStyle(color);
            //            context.setStrokeStyle(color);
            context.fillRect(0, 0, 300 * (loaded / (float) total) * 0.97f, 70);

            //            context.setFillStyle(Pixmap.make(50, 50, 50, 1));
            context.fillText("loading", 300 / 2, 70 / 2);
        }

        @Override
        public void error(String file) {
            System.out.println("error: " + file);
        }
    };
}

From source file:com.java33.vizpres.client.view.visualization.CanvasViz.java

License:Open Source License

/**
 * Renders the percent data values using the Canvas 2D API as horizontal
 * bars with a text label./*from w  w  w.j a  v  a2s .  c o  m*/
 *
 * @param values Is the list of values to render.
 */
@Override
public void setData(final List<PercentValue> values) {
    if (canvas != null) {
        final Context2d ctx = canvas.getContext2d();
        ctx.clearRect(0, 0, width, height);
        ctx.setTextBaseline(Context2d.TextBaseline.TOP);
        if (values != null) {
            final int n = values.size();
            for (int i = 0; i < n; i += 1) {
                final int rowY = i * ROW_HEIGHT;
                final int percent = values.get(i).percentage;
                final double barWidth = (double) (percent * width) / 100.0;
                ctx.setFillStyle("#ff6600");
                ctx.fillRect(0, rowY, barWidth, BAR_HEIGHT);
                ctx.setFillStyle("#ffffff");
                ctx.fillText(Integer.toString(percent), 4, rowY + TEXT_HEIGHT / 2);
            }
        }
    }
}

From source file:com.sencha.gxt.chart.client.draw.engine.Canvas2d.java

License:sencha.com license

/**
 * In the Canvas2d class, this method does more or less what renderSprite does in SVG and VML - it
 * actually renders the sprite to the dom.
 * @param sprite the sprite to draw// w w w . j a v  a  2s.c  o  m
 */
protected void append(Sprite sprite) {
    if (sprite.isHidden() || sprite.getOpacity() == 0) {
        return;
    }
    Context2d ctx = getContext();
    ctx.save();
    //set global stuff, fill, stroke, clip, etc

    //clip - deal with translation or normal rectangle
    if (sprite.getClipRectangle() != null) {
        PreciseRectangle clip = sprite.getClipRectangle();
        if (sprite.getScaling() != null || sprite.getTranslation() != null || sprite.getRotation() != null) {
            PathSprite transPath = new PathSprite(new RectangleSprite(clip));
            transPath = transPath.map(sprite.transformMatrix());
            appendPath(ctx, transPath);
        } else {
            ctx.beginPath();
            ctx.rect(clip.getX(), clip.getY(), clip.getWidth(), clip.getHeight());
            ctx.closePath();
        }
        ctx.clip();
    }

    if (sprite.getScaling() != null || sprite.getTranslation() != null || sprite.getRotation() != null
            || (component.isViewBox() && viewbox != null)) {
        Matrix matrix = sprite.transformMatrix();
        if (matrix != null) {
            //TODO consider replacing this transform call with three distinct calls to translate/scale/rotate if cheaper
            ctx.transform(matrix.get(0, 0), matrix.get(1, 0), matrix.get(0, 1), matrix.get(1, 1),
                    matrix.get(0, 2), matrix.get(1, 2));
        }
        if (component.isViewBox() && viewbox != null) {
            double size = Math.min(getWidth() / viewbox.getWidth(), getHeight() / viewbox.getHeight());

            ctx.scale(size, size);
            ctx.translate(-viewbox.getX(), -viewbox.getY());
        }
    }

    //TODO see about caching colors via the dirty flag? If we don't use a color/gradient for a pass or three, dump it
    double opacity = Double.isNaN(sprite.getOpacity()) ? 1.0 : sprite.getOpacity();
    PreciseRectangle untransformedBbox = sprite.getPathSprite().dimensions();
    if (sprite.getStroke() != null && sprite.getStroke() != Color.NONE && sprite.getStrokeWidth() != 0) {
        ctx.setLineWidth(Double.isNaN(sprite.getStrokeWidth()) ? 1.0 : sprite.getStrokeWidth());
        ctx.setStrokeStyle(getColor(sprite.getStroke(), untransformedBbox));//TODO read bbox from cache
    }
    if (sprite.getFill() != null && sprite.getFill() != Color.NONE) {
        ctx.setFillStyle(getColor(sprite.getFill(), untransformedBbox));//TODO read bbox from cache
    }

    if (sprite instanceof PathSprite) {
        appendPath(ctx, (PathSprite) sprite);
    } else if (sprite instanceof TextSprite) {
        TextSprite text = (TextSprite) sprite;
        //TODO style and weight
        ctx.setFont(text.getFontSize() + "px " + text.getFont());
        ctx.setTextAlign(getTextAlign(text.getTextAnchor()));
        ctx.setTextBaseline(getTextBaseline(text.getTextBaseline()));
        ctx.fillText(text.getText(), text.getX(), text.getY());
    } else if (sprite instanceof RectangleSprite) {
        RectangleSprite rect = (RectangleSprite) sprite;
        if (Double.isNaN(rect.getRadius()) || rect.getRadius() == 0) {
            if (sprite.getFill() != null && sprite.getFill() != Color.NONE) {
                ctx.setGlobalAlpha(
                        Double.isNaN(sprite.getFillOpacity()) ? opacity : opacity * sprite.getFillOpacity());
                ctx.fillRect(rect.getX(), rect.getY(), rect.getWidth(), rect.getHeight());
            }
            if (sprite.getStroke() != null && sprite.getStroke() != Color.NONE
                    && sprite.getStrokeWidth() != 0) {
                ctx.setGlobalAlpha(Double.isNaN(sprite.getStrokeOpacity()) ? opacity
                        : opacity * sprite.getStrokeOpacity());
                ctx.strokeRect(rect.getX(), rect.getY(), rect.getWidth(), rect.getHeight());
            }
        } else {
            appendPath(ctx, rect.getPathSprite());
        }
    } else if (sprite instanceof CircleSprite) {
        CircleSprite circle = (CircleSprite) sprite;
        ctx.beginPath();
        ctx.arc(circle.getCenterX(), circle.getCenterY(), circle.getRadius(), 0, 2 * Math.PI);
        ctx.closePath();
        if (sprite.getFill() != null && sprite.getFill() != Color.NONE) {
            ctx.setGlobalAlpha(
                    Double.isNaN(sprite.getFillOpacity()) ? opacity : opacity * sprite.getFillOpacity());
            ctx.fill();
        }
        if (sprite.getStroke() != null && sprite.getStroke() != Color.NONE && sprite.getStrokeWidth() != 0) {
            ctx.setGlobalAlpha(
                    Double.isNaN(sprite.getStrokeOpacity()) ? opacity : opacity * sprite.getStrokeOpacity());
            ctx.stroke();
        }
    } else if (sprite instanceof EllipseSprite) {
        appendPath(ctx, sprite.getPathSprite());
    } else if (sprite instanceof ImageSprite) {
        ImageSprite image = (ImageSprite) sprite;
        ImageElement elt = Document.get().createImageElement();
        elt.setSrc(image.getResource().getSafeUri().asString());
        ctx.drawImage(elt, image.getX(), image.getY(), image.getWidth(), image.getHeight());
    }

    ctx.restore();

    if (!REDRAW_ALL) {
        renderedBbox.put(sprite, getBBox(sprite));
    }

    sprite.clearDirtyFlags();
}

From source file:playn.html.HtmlTextLayout.java

License:Apache License

void configContext(Context2d ctx) {
    Font font = getFont(format);//  ww  w. j a va 2 s  .  c  o m
    String style = "";
    switch (font.style()) {
    case BOLD:
        style = "bold";
        break;
    case ITALIC:
        style = "italic";
        break;
    case BOLD_ITALIC:
        style = "bold italic";
        break;
    }

    ctx.setFont(style + " " + font.size() + "px " + font.name());
    ctx.setTextBaseline(Context2d.TextBaseline.TOP);
}

From source file:playn.html.OldHtmlTextLayout.java

License:Apache License

void configContext(Context2d ctx) {
    HtmlFont font = getFont(format);/*  w w w .  ja v a 2  s  .  c o  m*/
    String style = "";
    switch (font.style()) {
    case BOLD:
        style = "bold";
        break;
    case ITALIC:
        style = "italic";
        break;
    case BOLD_ITALIC:
        style = "bold italic";
        break;
    default:
        break; // nada
    }

    ctx.setFont(style + " " + font.size() + "px " + font.name());
    ctx.setTextBaseline(Context2d.TextBaseline.TOP);
}