Examples of VerticalAlignmentProcessor


Examples of org.jfree.layouting.renderer.process.valign.VerticalAlignmentProcessor


    // This aligns all direct childs. Once that is finished, we have to
    // check, whether possibly existing inner-paragraphs are still valid
    // or whether moving them violated any of the inner-pagebreak constraints.
    final VerticalAlignmentProcessor processor = new VerticalAlignmentProcessor();

    final ComputedLayoutProperties blp = inlineRenderBox.getComputedLayoutProperties();
    final long insetTop = (blp.getBorderTop() + blp.getPaddingTop());

    final long contentAreaY1 = inlineRenderBox.getY() + insetTop;
    final RenderLength lineHeight = inlineRenderBox.getLineHeight();
    final ComputedLayoutProperties clp = inlineRenderBox.getComputedLayoutProperties();
    final RenderLength bcw = clp.getBlockContextWidth();
    processor.align (boxAlignContext, contentAreaY1,
        lineHeight.resolve(bcw.resolve(0)));
  }
View Full Code Here

Examples of org.jfree.layouting.renderer.process.valign.VerticalAlignmentProcessor


    // This aligns all direct childs. Once that is finished, we have to
    // check, whether possibly existing inner-paragraphs are still valid
    // or whether moving them violated any of the inner-pagebreak constraints.
    final VerticalAlignmentProcessor processor = new VerticalAlignmentProcessor();

    final ComputedLayoutProperties blp = inlineRenderBox.getComputedLayoutProperties();
    final long insetTop = (blp.getBorderTop() + blp.getPaddingTop());

    final long contentAreaY1 = inlineRenderBox.getY() + insetTop;
    final RenderLength lineHeight = inlineRenderBox.getLineHeight();
    final ComputedLayoutProperties clp = inlineRenderBox.getComputedLayoutProperties();
    final RenderLength bcw = clp.getBlockContextWidth();
    processor.align (boxAlignContext, contentAreaY1,
        lineHeight.resolve(bcw.resolve(0)));
  }
View Full Code Here

Examples of org.jfree.layouting.renderer.process.valign.VerticalAlignmentProcessor


    // This aligns all direct childs. Once that is finished, we have to
    // check, whether possibly existing inner-paragraphs are still valid
    // or whether moving them violated any of the inner-pagebreak constraints.
    final VerticalAlignmentProcessor processor = new VerticalAlignmentProcessor();

    final ComputedLayoutProperties blp = inlineRenderBox.getComputedLayoutProperties();
    final long insetTop = (blp.getBorderTop() + blp.getPaddingTop());

    final long contentAreaY1 = inlineRenderBox.getY() + insetTop;
    final RenderLength lineHeight = inlineRenderBox.getLineHeight();
    final ComputedLayoutProperties clp = inlineRenderBox.getComputedLayoutProperties();
    final RenderLength bcw = clp.getBlockContextWidth();
    processor.align (boxAlignContext, contentAreaY1,
        lineHeight.resolve(bcw.resolve(0)));
  }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.layout.process.valign.VerticalAlignmentProcessor

  private VerticalAlignmentProcessor verticalAlignmentProcessor;

  public RevalidateAllAxisLayoutStep(final OutputProcessorMetaData metaData)
  {
    this.metaData = metaData;
    this.verticalAlignmentProcessor = new VerticalAlignmentProcessor();
  }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.layout.process.valign.VerticalAlignmentProcessor

  private boolean complexText;
  private boolean strictTextProcessing;

  public RevalidateAllAxisLayoutStep()
  {
    this.verticalAlignmentProcessor = new VerticalAlignmentProcessor();
  }
View Full Code Here

Examples of org.pentaho.reporting.engine.classic.core.layout.process.valign.VerticalAlignmentProcessor

  public InfiniteMajorAxisLayoutStep()
  {
    super(false);
    this.breakState = new MajorAxisParagraphBreakState();
    this.processor = new VerticalAlignmentProcessor();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.