Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* {{{ header & license
* Copyright (c) 2004, 2005 Joshua Marinacci
*
* 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.greenpepper.shaded.com.openhtmltopdf.layout;
import java.awt.Font;
import java.awt.HeadlessException;
import java.awt.Rectangle;
import java.awt.Toolkit;
import java.text.BreakIterator;
import java.util.HashMap;
import java.util.Locale;
import java.util.Map;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import com.greenpepper.shaded.com.openhtmltopdf.context.StyleReference;
import com.greenpepper.shaded.com.openhtmltopdf.css.style.CalculatedStyle;
import com.greenpepper.shaded.com.openhtmltopdf.css.style.EmptyStyle;
import com.greenpepper.shaded.com.openhtmltopdf.css.value.FontSpecification;
import com.greenpepper.shaded.com.openhtmltopdf.extend.FSCanvas;
import com.greenpepper.shaded.com.openhtmltopdf.extend.FSTextBreaker;
import com.greenpepper.shaded.com.openhtmltopdf.extend.FSTextTransformer;
import com.greenpepper.shaded.com.openhtmltopdf.extend.FontContext;
import com.greenpepper.shaded.com.openhtmltopdf.extend.FontResolver;
import com.greenpepper.shaded.com.openhtmltopdf.extend.NamespaceHandler;
import com.greenpepper.shaded.com.openhtmltopdf.extend.ReplacedElementFactory;
import com.greenpepper.shaded.com.openhtmltopdf.extend.TextRenderer;
import com.greenpepper.shaded.com.openhtmltopdf.extend.UserAgentCallback;
import com.greenpepper.shaded.com.openhtmltopdf.render.Box;
import com.greenpepper.shaded.com.openhtmltopdf.render.FSFont;
import com.greenpepper.shaded.com.openhtmltopdf.render.FSFontMetrics;
import com.greenpepper.shaded.com.openhtmltopdf.render.RenderingContext;
import com.greenpepper.shaded.com.openhtmltopdf.simple.extend.FormSubmissionListener;
import com.greenpepper.shaded.com.openhtmltopdf.swing.AWTFontResolver;
import com.greenpepper.shaded.com.openhtmltopdf.swing.Java2DTextRenderer;
import com.greenpepper.shaded.com.openhtmltopdf.swing.SwingReplacedElementFactory;
import com.greenpepper.shaded.com.openhtmltopdf.util.ThreadCtx;
import com.greenpepper.shaded.com.openhtmltopdf.util.XRLog;
/**
* The SharedContext stores pseudo global variables.
* Originally, it was reusable, but it is now recommended that the developer
* use a new instance for every run.
*/
public class SharedContext {
/**
* @deprecated Belongs in Java2D renderer.
*/
@Deprecated
private final static float DEFAULT_DPI = 72;
/**
* @deprecated Belongs in Java2D renderer.
*/
@Deprecated
private final static int DEFAULT_DOTS_PER_PIXEL = 1;
/**
* @deprecated Belongs in Java2D renderer.
*/
@Deprecated
private final static boolean DEFAULT_INTERACTIVE = true;
private final static int MM__PER__CM = 10;
private final static float CM__PER__IN = 2.54F;
private TextRenderer textRenderer;
private String media;
private UserAgentCallback uac;
private boolean interactive = DEFAULT_INTERACTIVE;
private Map idMap;
/**
* Used to adjust fonts, ems, points, into screen resolution.
* Internal program dots per inch.
*/
private float dpi;
/**
* Internal program dots per pixel.
*/
private int dotsPerPixel = DEFAULT_DOTS_PER_PIXEL;
/**
* dpi in a more usable way
* Internal program dots per mm (probably a fraction).
*/
private float mmPerDot;
private boolean print;
private Map styleMap;
private ReplacedElementFactory replacedElementFactory;
private Rectangle tempCanvas;
protected FontResolver fontResolver;
protected StyleReference css;
protected boolean debug_draw_boxes;
protected boolean debug_draw_line_boxes;
protected boolean debug_draw_inline_boxes;
protected boolean debug_draw_font_metrics;
protected FSCanvas canvas;
private NamespaceHandler namespaceHandler;
private Float defaultPageHeight;
private Float defaultPageWidth;
private boolean defaultPageSizeIsInches;
private String replacementText = "#";
private FSTextBreaker lineBreaker = new UrlAwareLineBreakIterator(BreakIterator.getLineInstance(Locale.US));
private FSTextBreaker characterBreaker = new TextUtil.DefaultCharacterBreaker(BreakIterator.getCharacterInstance(Locale.US));
private FSTextTransformer _unicodeToLowerTransformer = new TextUtil.DefaultToLowerTransformer(Locale.US);
private FSTextTransformer _unicodeToUpperTransformer = new TextUtil.DefaultToUpperTransformer(Locale.US);
private FSTextTransformer _unicodeToTitleTransformer = new TextUtil.DefaultToTitleTransformer();
public SharedContext() {
}
/**
* Constructor for the Context object
* @deprecated This stuff should go in the renderers of a specific device.
*/
@Deprecated
public SharedContext(UserAgentCallback uac) {
fontResolver = new AWTFontResolver();
replacedElementFactory = new SwingReplacedElementFactory();
setMedia("screen");
this.uac = uac;
setCss(new StyleReference(uac));
XRLog.render("Using CSS implementation from: " + getCss().getClass().getName());
setTextRenderer(new Java2DTextRenderer());
try {
setDPI(Toolkit.getDefaultToolkit().getScreenResolution());
} catch (HeadlessException e) {
setDPI(DEFAULT_DPI);
}
}
/**
* Constructor for the Context object
* @deprecated This stuff should go in the renderers of a specific device.
*/
@Deprecated
public SharedContext(UserAgentCallback uac, FontResolver fr, ReplacedElementFactory ref, TextRenderer tr, float dpi) {
fontResolver = fr;
replacedElementFactory = ref;
setMedia("screen");
this.uac = uac;
setCss(new StyleReference(uac));
XRLog.render("Using CSS implementation from: " + getCss().getClass().getName());
setTextRenderer(tr);
setDPI(dpi);
}
public void setFormSubmissionListener(FormSubmissionListener fsl) {
replacedElementFactory.setFormSubmissionListener(fsl);
}
public LayoutContext newLayoutContextInstance() {
LayoutContext c = new LayoutContext(this);
return c;
}
public RenderingContext newRenderingContextInstance() {
RenderingContext c = new RenderingContext(this);
return c;
}
/* =========== Font stuff ============== */
/**
* Gets the fontResolver attribute of the Context object
*
* @return The fontResolver value
*/
public FontResolver getFontResolver() {
return fontResolver;
}
public void flushFonts() {
fontResolver.flushCache();
}
/**
* The media for this context
*/
public String getMedia() {
return media;
}
public TextRenderer getTextRenderer() {
return textRenderer;
}
public boolean debugDrawBoxes() {
return debug_draw_boxes;
}
public boolean debugDrawLineBoxes() {
return debug_draw_line_boxes;
}
public boolean debugDrawInlineBoxes() {
return debug_draw_inline_boxes;
}
public boolean debugDrawFontMetrics() {
return debug_draw_font_metrics;
}
public void setDebug_draw_boxes(boolean debug_draw_boxes) {
this.debug_draw_boxes = debug_draw_boxes;
}
public void setDebug_draw_line_boxes(boolean debug_draw_line_boxes) {
this.debug_draw_line_boxes = debug_draw_line_boxes;
}
public void setDebug_draw_inline_boxes(boolean debug_draw_inline_boxes) {
this.debug_draw_inline_boxes = debug_draw_inline_boxes;
}
public void setDebug_draw_font_metrics(boolean debug_draw_font_metrics) {
this.debug_draw_font_metrics = debug_draw_font_metrics;
}
public StyleReference getCss() {
return css;
}
public void setCss(StyleReference css) {
this.css = css;
}
public FSCanvas getCanvas() {
return canvas;
}
public void setCanvas(FSCanvas canvas) {
this.canvas = canvas;
}
public void setTempCanvas(Rectangle rect) {
this.tempCanvas = rect;
}
public Rectangle getFixedRectangle() {
//Uu.p("this = " + canvas);
if (getCanvas() == null) {
return this.tempCanvas;
} else {
Rectangle rect = getCanvas().getFixedRectangle();
rect.translate(getCanvas().getX(), getCanvas().getY());
return rect;
}
}
public void setNamespaceHandler(NamespaceHandler nh) {
namespaceHandler = nh;
}
public NamespaceHandler getNamespaceHandler() {
return namespaceHandler;
}
public void addBoxId(String id, Box box) {
if (idMap == null) {
idMap = new HashMap();
}
idMap.put(id, box);
}
public Box getBoxById(String id) {
if (idMap == null) {
idMap = new HashMap();
}
return idMap.get(id);
}
public void removeBoxId(String id) {
if (idMap != null) {
idMap.remove(id);
}
}
public Map getIdMap() {
return idMap;
}
/**
* Sets the textRenderer attribute of the RenderingContext object
*
* @param textRenderer The new textRenderer value
*/
public void setTextRenderer(TextRenderer textRenderer) {
this.textRenderer = textRenderer;
}
/**
* Set the current media type. This is usually something like screen
* or print . See the
* media section of the CSS 2.1 spec for more information on media
* types.
*
* @param media The new media value
*/
public void setMedia(String media) {
this.media = media;
}
/**
* Gets the uac attribute of the RenderingContext object
*
* @return The uac value (user agent).
* @deprecated Use getUserAgentCallback instead for clearer code.
*/
@Deprecated
public UserAgentCallback getUac() {
return uac;
}
public UserAgentCallback getUserAgentCallback() {
return uac;
}
public void setUserAgentCallback(UserAgentCallback userAgentCallback) {
StyleReference styleReference = getCss();
if (styleReference != null) {
styleReference.setUserAgentCallback(userAgentCallback);
}
uac = userAgentCallback;
}
/**
* Gets the dPI attribute of the RenderingContext object
*
* @return The dPI value
*/
public float getDPI() {
return this.dpi;
}
/**
* Sets the effective DPI (Dots Per Inch) of the screen. You should normally
* never need to override the dpi, as it is already set to the system
* default by Toolkit.getDefaultToolkit().getScreenResolution()
* You can override the value if you want to scale EVERYTHING.
*
* @param dpi The new dPI value
*/
public void setDPI(float dpi) {
this.dpi = dpi;
this.mmPerDot = (CM__PER__IN * MM__PER__CM) / dpi;
}
/**
* Gets the dPI attribute in a more useful form of the RenderingContext object
*
* @return The dPI value
*/
public float getMmPerDotParent() {
return this.mmPerDot;
}
public FSFont getFont(FontSpecification spec) {
return getFontResolver().resolveFont(this, spec);
}
//strike-through offset should always be half of the height of lowercase x...
//and it is defined even for fonts without 'x'!
public float getXHeight(FontContext fontContext, FontSpecification fs) {
FSFont font = getFontResolver().resolveFont(this, fs);
FSFontMetrics fm = getTextRenderer().getFSFontMetrics(fontContext, font, " ");
float sto = fm.getStrikethroughOffset();
return fm.getAscent() - 2 * Math.abs(sto) + fm.getStrikethroughThickness();
}
/**
* Gets the baseURL attribute of the RenderingContext object
*
* @return The baseURL value
*/
public String getBaseURL() {
return uac.getBaseURL();
}
/**
* Sets the baseURL attribute of the RenderingContext object
*
* @param url The new baseURL value
*/
public void setBaseURL(String url) {
uac.setBaseURL(url);
}
/**
* Returns true if the currently set media type is paged. Currently returns
* true only for print , projection , and embossed ,
* handheld , and tv . See the media section of the CSS
* 2.1 spec for more information on media types.
*
* @return The paged value
*/
public boolean isPaged() {
if (media.equals("print")) {
return true;
}
if (media.equals("projection")) {
return true;
}
if (media.equals("embossed")) {
return true;
}
if (media.equals("handheld")) {
return true;
}
if (media.equals("tv")) {
return true;
}
return false;
}
public boolean isInteractive() {
return interactive;
}
public void setInteractive(boolean interactive) {
this.interactive = interactive;
}
public boolean isPrint() {
return print;
}
public void setPrint(boolean print) {
this.print = print;
if (print) {
setMedia("print");
} else {
setMedia("screen");
}
}
/**
* Adds or overrides a font mapping, meaning you can associate a particular
* font with a particular string. For example, the following would load a
* font out of the cool.ttf file and associate it with the name CoolFont
* :
*
* Font font = Font.createFont(Font.TRUETYPE_FONT,
* new FileInputStream("cool.ttf");
* setFontMapping("CoolFont", font);
*
* You could then put the following css in your page
*
* p { font-family: CoolFont Arial sans-serif; }
*
* You can also override existing font mappings, like replacing Arial with
* Helvetica.
*
* @param name The new font name
* @param font The actual Font to map
* @deprecated Definitely shouldn't use this method as it only applies for
* Java2D font resolver. Instead call getFontResolver, cast and use font adding
* methods on that.
*/
@Deprecated
public void setFontMapping(String name, Font font) {
FontResolver resolver = getFontResolver();
if (resolver instanceof AWTFontResolver) {
((AWTFontResolver)resolver).setFontMapping(name, font);
}
}
public void setFontResolver(FontResolver resolver) {
fontResolver = resolver;
}
/**
* Get the internal dots measurement per CSS pixel.
* @return
*/
public int getDotsPerPixel() {
return dotsPerPixel;
}
/**
* Set the internal dots measurement per CSS pixel.
* @param dotsPerPixel
*/
public void setDotsPerPixel(int dotsPerPixel) {
this.dotsPerPixel = dotsPerPixel;
}
public CalculatedStyle getStyle(Element e) {
return getStyle(e, false);
}
public CalculatedStyle getStyle(Element e, boolean restyle) {
if (styleMap == null) {
styleMap = new HashMap(1024, 0.75f);
}
CalculatedStyle result = null;
if (! restyle) {
result = styleMap.get(e);
}
if (result == null) {
Node parent = e.getParentNode();
CalculatedStyle parentCalculatedStyle;
if (parent instanceof Document) {
parentCalculatedStyle = new EmptyStyle();
} else {
parentCalculatedStyle = getStyle((Element)parent, false);
}
result = parentCalculatedStyle.deriveStyle(getCss().getCascadedStyle(e, restyle));
styleMap.put(e, result);
}
return result;
}
public void reset() {
styleMap = null;
idMap = null;
replacedElementFactory.reset();
}
public ReplacedElementFactory getReplacedElementFactory() {
return replacedElementFactory;
}
public void setReplacedElementFactory(ReplacedElementFactory ref) {
if (ref == null) {
throw new NullPointerException("replacedElementFactory may not be null");
}
if (this.replacedElementFactory != null) {
this.replacedElementFactory.reset();
}
this.replacedElementFactory = ref;
}
public void removeElementReferences(Element e) {
String id = namespaceHandler.getID(e);
if (id != null && id.length() > 0) {
removeBoxId(id);
}
if (styleMap != null) {
styleMap.remove(e);
}
getCss().removeStyle(e);
getReplacedElementFactory().remove(e);
if (e.hasChildNodes()) {
NodeList children = e.getChildNodes();
for (int i = 0; i < children.getLength(); i++) {
Node child = children.item(i);
if (child.getNodeType() == Node.ELEMENT_NODE) {
removeElementReferences((Element)child);
}
}
}
}
/**
* Stores a default page width.
* @return default page width or null.
* @see {@link #isDefaultPageSizeInches()}
*/
public Float getDefaultPageWidth() {
return this.defaultPageWidth;
}
/**
* Stores a default page height.
* @return default page height or null.
* @see {@link #isDefaultPageSizeInches()}
*/
public Float getDefaultPageHeight() {
return this.defaultPageHeight;
}
/**
* If not, consider it as mm.
* @return
*/
public boolean isDefaultPageSizeInches() {
return this.defaultPageSizeIsInches;
}
/**
* The replacement text to be used if a character cannot be
* renderered by the current or fallback fonts.
* @return
*/
public String getReplacementText() {
return this.replacementText;
}
public void setReplacementText(String replacement) {
this.replacementText = replacement;
}
/**
* Set the default page dimensions. These may be overridden in CSS.
* If not set in CSS and null here, A4 will be used.
* @param pageWidth
* @param pageHeight
*/
public void setDefaultPageSize(Float pageWidth, Float pageHeight, boolean isInches) {
this.defaultPageWidth = pageWidth;
this.defaultPageHeight = pageHeight;
this.defaultPageSizeIsInches = isInches;
}
public FSTextBreaker getLineBreaker() {
return lineBreaker;
}
public void setLineBreaker(FSTextBreaker breaker) {
this.lineBreaker = breaker;
}
public FSTextBreaker getCharacterBreaker() {
return characterBreaker;
}
public void setCharacterBreaker(FSTextBreaker breaker) {
this.characterBreaker = breaker;
}
/**
* This registers the shared context with a thread local so it
* can be used anywhere. It should be matched with a call to
* {@link #removeFromThread()} when the run is complete.
*/
public void registerWithThread() {
ThreadCtx.get().setSharedContext(this);
}
/**
* This removes the shared context from a thread local to avoid memory leaks.
*/
public void removeFromThread() {
ThreadCtx.get().setSharedContext(null);
}
public FSTextTransformer getUnicodeToLowerTransformer() {
return this._unicodeToLowerTransformer;
}
public FSTextTransformer getUnicodeToUpperTransformer() {
return this._unicodeToUpperTransformer;
}
public FSTextTransformer getUnicodeToTitleTransformer() {
return this._unicodeToTitleTransformer;
}
public void setUnicodeToLowerTransformer(FSTextTransformer tr) {
this._unicodeToLowerTransformer = tr;
}
public void setUnicodeToUpperTransformer(FSTextTransformer tr) {
this._unicodeToUpperTransformer = tr;
}
public void setUnicodeToTitleTransformer(FSTextTransformer tr) {
this._unicodeToTitleTransformer = tr;
}
}
/*
*
* $Log$
* Revision 1.46 2009/05/08 12:22:30 pdoubleya
* Merge Vianney's SWT branch to trunk. Passes regress.verify and browser still works :).
*
* Revision 1.42 2008/01/22 00:29:24 peterbrant
* Need to propagate changes to user agent in SharedContext to containing StyleReference
*
* Revision 1.41 2007/08/19 22:22:52 peterbrant
* Merge R8pbrant changes to HEAD
*
* Revision 1.39.2.2 2007/08/07 17:06:30 peterbrant
* Implement named pages / Implement page-break-before/after: left/right / Experiment with efficient selection
*
* Revision 1.39.2.1 2007/07/04 14:12:33 peterbrant
* Permit a custom user agent with rendering to PDF
*
* Revision 1.39 2007/05/26 19:04:13 peterbrant
* Implement support for removing all references to a particular Element (in order to support limited dynamic DOM changes)
*
* Revision 1.38 2007/04/16 20:56:49 pdoubleya
* New image rendering based on PDF rendering approach. Hacked small change in SharedContext which is dependent on panel for sizing, currently.
*
* Revision 1.37 2007/04/02 17:08:36 peterbrant
* Improve method name
*
* Revision 1.36 2007/04/02 16:56:20 peterbrant
* Maintain ReplacedElementFactory across layout runs (to allow component caching to work) / Add reset() to ReplacedElementFactory to allow implementations to clean up after navigating away from a page
*
* Revision 1.35 2007/03/17 22:55:51 peterbrant
* Remove distinction between box IDs and named anchors
*
* Revision 1.34 2007/02/22 15:30:43 peterbrant
* Internal links should be able to target block boxes too (plus other minor cleanup)
*
* Revision 1.33 2007/02/20 17:07:13 peterbrant
* Clean up ex calculation
*
* Revision 1.32 2007/02/07 16:33:35 peterbrant
* Initial commit of rewritten table support and associated refactorings
*
* Revision 1.31 2006/08/29 17:29:10 peterbrant
* Make Style object a thing of the past
*
* Revision 1.30 2006/08/27 00:35:38 peterbrant
* Initial commit of (initial) R7 work
*
* Revision 1.29 2006/03/01 00:42:52 peterbrant
* Provide ability to remove named anchors
*
* Revision 1.28 2006/02/28 01:31:36 peterbrant
* Add ability to define PDF bookmarks in header
*
* Revision 1.27 2006/02/02 19:25:20 peterbrant
* Fix (silly) field name mistake
*
* Revision 1.26 2006/02/02 13:04:34 peterbrant
* Make "dots" the fundamental unit of measure, pixels are now some number of dots
*
* Revision 1.25 2006/02/01 01:30:12 peterbrant
* Initial commit of PDF work
*
* Revision 1.24 2006/01/27 01:15:30 peterbrant
* Start on better support for different output devices
*
* Revision 1.23 2006/01/01 02:38:15 peterbrant
* Merge more pagination work / Various minor cleanups
*
* Revision 1.22 2005/12/28 00:50:49 peterbrant
* Continue ripping out first try at pagination / Minor method name refactoring
*
* Revision 1.21 2005/12/21 02:36:26 peterbrant
* - Calculate absolute positions incrementally (prep work for pagination)
* - Light cleanup
* - Fix bug where floats nested in floats could cause the outer float to be positioned in the wrong place
*
* Revision 1.20 2005/12/07 20:34:46 peterbrant
* Remove unused fields/methods from RenderingContext / Paint line content using absolute coords (preparation for relative inline layers)
*
* Revision 1.19 2005/11/08 01:53:49 tobega
* Corrected x-height and line-through by taking StrikethroughThickness into account.
*
* Revision 1.18 2005/10/27 00:09:01 tobega
* Sorted out Context into RenderingContext and LayoutContext
*
* Revision 1.17 2005/09/29 21:34:03 joshy
* minor updates to a lot of files. pulling in more incremental rendering code.
* fixed another resize bug
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.16 2005/09/27 23:48:39 joshy
* first merge of basicpanel reworking and incremental layout. more to come.
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.15 2005/07/18 17:53:32 joshy
* fixed anchor jumping
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.14 2005/07/02 07:26:59 joshy
* better support for jumping to anchor tags
* also some testing for the resize issue
* need to investigate making the history remember document position.
*
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.13 2005/06/22 23:48:45 tobega
* Refactored the css package to allow a clean separation from the core.
*
* Revision 1.12 2005/06/16 07:24:51 tobega
* Fixed background image bug.
* Caching images in browser.
* Enhanced LinkListener.
* Some house-cleaning, playing with Idea's code inspection utility.
*
* Revision 1.11 2005/05/08 14:36:57 tobega
* Refactored away the need for having a context in a CalculatedStyle
*
* Revision 1.10 2005/03/24 23:12:56 pdoubleya
* EmptyStyle now takes SC in constructor.
*
* Revision 1.9 2005/01/29 20:19:24 pdoubleya
* Clean/reformat code. Removed commented blocks, checked copyright.
*
* Revision 1.8 2005/01/13 00:48:46 tobega
* Added preparation of values for a form submission
*
* Revision 1.7 2005/01/08 11:55:17 tobega
* Started massaging the extension interfaces
*
* Revision 1.6 2005/01/05 17:56:35 tobega
* Reduced memory more, especially by using WeakHashMap for caching Mappers. Look over other caching to use similar schemes (cache when memory available).
*
* Revision 1.5 2005/01/05 01:10:15 tobega
* Went wild with code analysis tool. removed unused stuff. Lucky we have CVS...
*
* Revision 1.4 2005/01/02 12:22:19 tobega
* Cleaned out old layout code
*
* Revision 1.3 2005/01/02 01:00:09 tobega
* Started sketching in code for handling replaced elements in the NamespaceHandler
*
* Revision 1.2 2005/01/01 08:09:20 tobega
* Now using entirely static methods for render. Need to implement table. Need to clean.
*
* Revision 1.1 2004/12/29 10:39:33 tobega
* Separated current state Context into LayoutContext and the rest into SharedContext.
*
* Revision 1.40 2004/12/29 07:35:38 tobega
* Prepared for cloned Context instances by encapsulating fields
*
* Revision 1.39 2004/12/28 01:48:23 tobega
* More cleaning. Magically, the financial report demo is starting to look reasonable, without any effort being put on it.
*
* Revision 1.38 2004/12/27 09:40:47 tobega
* Moved more styling to render stage. Now inlines have backgrounds and borders again.
*
* Revision 1.37 2004/12/27 07:43:31 tobega
* Cleaned out border from box, it can be gotten from current style. Is it maybe needed for dynamic stuff?
*
* Revision 1.36 2004/12/16 17:22:25 joshy
* minor code cleanup
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.35 2004/12/16 17:10:41 joshy
* fixed box bug
*
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.34 2004/12/14 02:28:48 joshy
* removed some comments
* some bugs with the backgrounds still
*
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.33 2004/12/14 01:56:23 joshy
* fixed layout width bugs
* fixed extra border on document bug
*
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.32 2004/12/13 15:15:57 joshy
* fixed bug where inlines would pick up parent styles when they aren't supposed to
* fixed extra Xx's in printed text
* added conf boolean to turn on box outlines
*
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.31 2004/12/12 03:32:58 tobega
* Renamed x and u to avoid confusing IDE. But that got cvs in a twist. See if this does it
*
* Revision 1.30 2004/12/11 23:36:48 tobega
* Progressing on cleaning up layout and boxes. Still broken, won't even compile at the moment. Working hard to fix it, though.
*
* Revision 1.29 2004/12/11 18:18:10 tobega
* Still broken, won't even compile at the moment. Working hard to fix it, though. Replace the StyleReference interface with our only concrete implementation, it was a bother changing in two places all the time.
*
* Revision 1.28 2004/12/10 06:51:02 tobega
* Shamefully, I must now check in painfully broken code. Good news is that Layout is much nicer, and we also handle :before and :after, and do :first-line better than before. Table stuff must be brought into line, but most needed is to fix Render. IMO Render should work with Boxes and Content. If Render goes for a node, that is wrong.
*
* Revision 1.27 2004/12/05 05:22:35 joshy
* fixed NPEs in selection listener
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.26 2004/12/02 15:50:58 joshy
* added debugging
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.25 2004/12/01 14:02:52 joshy
* modified media to use the value from the rendering context
* added the inline-block box
* - j
*
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.24 2004/11/30 20:28:27 joshy
* support for multiple floats on a single line.
*
*
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.23 2004/11/28 23:29:02 tobega
* Now handles media on Stylesheets, still need to handle at-media-rules. The media-type should be set in Context.media (set by default to "screen") before calling setContext on StyleReference.
*
* Revision 1.22 2004/11/18 14:12:44 joshy
* added whitespace test
* cleaned up some code, spacing, and comments
*
*
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.21 2004/11/18 02:58:06 joshy
* collapsed the font resolver and font resolver test into one class, and removed
* the other
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.20 2004/11/17 14:58:18 joshy
* added actions for font resizing
*
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.19 2004/11/16 07:25:12 tobega
* Renamed HTMLPanel to BasicPanel
*
* Revision 1.18 2004/11/14 21:33:47 joshy
* new font rendering interface support
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.17 2004/11/14 16:40:58 joshy
* refactored layout factory
*
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.16 2004/11/14 06:26:39 joshy
* added better detection for width problems. should avoid most
* crashes
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.15 2004/11/12 22:02:00 joshy
* initial support for mouse copy selection
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.14 2004/11/12 17:05:24 joshy
* support for fixed positioning
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.13 2004/11/12 02:54:38 joshy
* removed more dead code
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.11 2004/11/12 02:47:33 joshy
* moved baseurl to rendering context
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.9 2004/11/10 17:28:54 joshy
* initial support for anti-aliased text w/ minium
*
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.8 2004/11/09 00:36:08 joshy
* fixed more text alignment
* added menu item to show font metrics
*
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.7 2004/11/08 16:56:51 joshy
* added first-line pseudo-class support
*
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.6 2004/11/03 23:54:33 joshy
* added hamlet and tables to the browser
* more support for absolute layout
* added absolute layout unit tests
* removed more dead code and moved code into layout factory
*
*
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.5 2004/11/03 15:17:04 joshy
* added intial support for absolute positioning
*
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.4 2004/11/02 20:44:55 joshy
* put in some prep work for float support
* removed some dead debugging code
* moved isBlock code to LayoutFactory
*
* Issue number:
* Obtained from:
* Submitted by:
* Reviewed by:
*
* Revision 1.3 2004/10/23 13:46:46 pdoubleya
* Re-formatted using JavaStyle tool.
* Cleaned imports to resolve wildcards except for common packages (java.io, java.util, etc).
* Added CVS log comments at bottom.
*
*
*/