com.openhtmltopdf.extend.OutputDevice Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openhtmltopdf-core Show documentation
Show all versions of openhtmltopdf-core Show documentation
Open HTML to PDF is a CSS 2.1 renderer written in Java. This artifact contains the core rendering and layout code.
/*
* {{{ header & license
* Copyright (c) 2006 Wisconsin Court System
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* }}}
*/
package com.openhtmltopdf.extend;
import com.openhtmltopdf.css.parser.FSColor;
import com.openhtmltopdf.css.style.CalculatedStyle;
import com.openhtmltopdf.css.style.derived.BorderPropertySet;
import com.openhtmltopdf.render.*;
import java.awt.*;
import java.awt.RenderingHints.Key;
import java.awt.geom.AffineTransform;
import java.util.List;
public interface OutputDevice {
public void setPaint(Paint paint);
public void setAlpha(int alpha);
// Required for CSS transforms.
/**
* Apply the given transform on top of the current one in the PDF graphics stream.
* This is a cumulative operation. You should popTransform after the box and children are painted.
* @return
*/
public List pushTransforms(List transforms);
public void popTransforms(List inverse);
float getAbsoluteTransformOriginX();
float getAbsoluteTransformOriginY();
// And the rest.
public void drawText(RenderingContext c, InlineText inlineText);
public void drawSelection(RenderingContext c, InlineText inlineText);
public void drawTextDecoration(RenderingContext c, LineBox lineBox);
public void drawTextDecoration(
RenderingContext c, InlineLayoutBox iB, TextDecoration decoration);
public void paintBorder(RenderingContext c, Box box);
public void paintBorder(RenderingContext c, CalculatedStyle style,
Rectangle edge, int sides);
public void paintCollapsedBorder(
RenderingContext c, BorderPropertySet border, Rectangle bounds, int side);
public void paintBackground(RenderingContext c, Box box);
public void paintBackground(
RenderingContext c, CalculatedStyle style,
Rectangle bounds, Rectangle bgImageContainer,
BorderPropertySet border);
public void paintReplacedElement(RenderingContext c, BlockBox box);
public void drawDebugOutline(RenderingContext c, Box box, FSColor color);
public void setFont(FSFont font);
public void setColor(FSColor color);
public void drawRect(int x, int y, int width, int height);
public void drawOval(int x, int y, int width, int height);
public void drawBorderLine(Shape bounds, int side, int width, boolean solid);
public void drawImage(FSImage image, int x, int y);
public void draw(Shape s);
public void fill(Shape s);
public void fillRect(int x, int y, int width, int height);
public void fillOval(int x, int y, int width, int height);
public void clip(Shape s);
public Shape getClip();
public void setClip(Shape s);
public void translate(double tx, double ty);
public void setStroke(Stroke s);
public Stroke getStroke();
public Object getRenderingHint(Key key);
public void setRenderingHint(Key key, Object value);
public boolean isSupportsSelection();
public boolean isSupportsCMYKColors();
/**
* Draw something using a Graphics2D at the given rectangle.
*/
public void drawWithGraphics(float x, float y, float width, float height, OutputDeviceGraphicsDrawer renderer);
}