Uses of Interface
org.eclipse.nebula.paperclips.core.Print
-
Packages that use Print Package Description org.eclipse.nebula.paperclips.core Core classes for creating printable documents.org.eclipse.nebula.paperclips.core.border org.eclipse.nebula.paperclips.core.grid org.eclipse.nebula.paperclips.core.grid.internal org.eclipse.nebula.paperclips.core.internal org.eclipse.nebula.paperclips.core.page org.eclipse.nebula.paperclips.core.text org.eclipse.nebula.paperclips.snippets org.eclipse.nebula.paperclips.widgets SWT controls for viewing Prints on-screen. -
-
Uses of Print in org.eclipse.nebula.paperclips.core
Classes in org.eclipse.nebula.paperclips.core that implement Print Modifier and Type Class Description classAlignPrintA wrapper print that aligns its target vertically and/or horizontally.classBackgroundPrintA decorator that paints a background color behind it's target.classBigPrintA wrapper for prints whose minimum size is too large to fit on one page.classBreakPrintA print which inserts a page break (or a column break, if inside a ColumnPrint).classColumnPrintA wrapper Print which splits its child print into multiple columns.classDebugPrintDeprecated.Reminder to remove references to DebugPrint when you're done debugging a print job.classEmptyPrintA Print which displays nothing but takes up space.classImagePrintA Print for displaying images.classLayerPrintA Print which displays its child Prints on top each other.classLinePrintA Print for drawing horizontal and vertical lines.classNoBreakPrintA print wrapper which prevents its target from being broken into multiple pieces when printed.classRotatePrintA decorator print that rotates it's target by increments of 90 degrees.classScalePrintA decorator print that scales it's target larger or smaller.classSeriesPrintA Print which displays its child prints in series.classSidewaysPrintA decorator print that rotates it's target by increments of 90 degrees.Fields in org.eclipse.nebula.paperclips.core declared as Print Modifier and Type Field Description private PrintPrintJob. document(package private) PrintAlignPrint. target(package private) PrintBackgroundPrint. targetprivate PrintBigPrint. target(package private) PrintColumnPrint. targetprivate PrintDebugPrint. targetDeprecated.private PrintNoBreakPrint. targetprivate PrintRotatePrint. target(package private) PrintScalePrint. targetprivate PrintSidewaysPrint. targetFields in org.eclipse.nebula.paperclips.core with type parameters of type Print Modifier and Type Field Description (package private) java.util.List<Print>SeriesPrint. itemsMethods in org.eclipse.nebula.paperclips.core that return Print Modifier and Type Method Description PrintPrintJob. getDocument()Returns the document to be printed.Print[]SeriesPrint. getItems()Returns an array of items in the series.PrintAlignPrint. getTarget()Returns the wrapped print being alignedPrintBackgroundPrint. getTarget()Returns the wrapped print to which the background color is being applied.PrintBigPrint. getTarget()Returns the wrapped print which is being split across pages.PrintColumnPrint. getTarget()Returns the target print being split into columns.PrintLayerEntry. getTarget()Returns the target print of this entry.PrintNoBreakPrint. getTarget()Returns the print which will not be broken across pages.PrintRotatePrint. getTarget()Returns the print to be rotated.PrintScalePrint. getTarget()Returns the print being scaled.PrintSidewaysPrint. getTarget()Returns the print to be rotated.Methods in org.eclipse.nebula.paperclips.core with parameters of type Print Modifier and Type Method Description voidLayerPrint. add(Print print)Adds the given Print to this LayerPrint using the default alignment.voidLayerPrint. add(Print print, int align)Adds the given Print to this LayerPrint using the specified alignment.voidSeriesPrint. add(Print item)Adds the given print to this SeriesPrint.voidSeriesPrint. add(Print[] items)Adds the given prints to this SeriesPrint.Constructors in org.eclipse.nebula.paperclips.core with parameters of type Print Constructor Description AlignPrint(Print target, int hAlign, int vAlign)Constructs a new AlignPrint.BackgroundPrint(Print target, org.eclipse.swt.graphics.RGB background)Constructs a BackgroundPrint with the given target and background color.BigIterator(Print target, org.eclipse.swt.graphics.Device device, org.eclipse.swt.graphics.GC gc)BigPrint(Print target)Constructs a BigPrint.ColumnPrint(Print target, int columns, int spacing)Constructs a ColumnPrint with the given target, number of columns, and column spacing (expressed in points).ColumnPrint(Print target, int columns, int spacing, boolean compressed)Constructs a ColumnPrint with the given target, column count, column spacing, and compression.DebugPrint(Print target)Deprecated.NoBreakPrint(Print target)Constructs a NoBreakPrint with the given target.PrintJob(java.lang.String name, Print document)Constructs a PrintJob for the given document.RotateIterator(Print target, int angle, org.eclipse.swt.graphics.Device device, org.eclipse.swt.graphics.GC gc)RotatePrint(Print target)Constructs a RotatePrint that rotates it's target 90 degrees counter-clockwise.RotatePrint(Print target, int angle)Constructs a RotatePrint.ScalePrint(Print target)Constructs a ScalePrint which scales down it's target to print at it's preferred size.ScalePrint(Print target, java.lang.Double scale)Constructs a ScalePrint which scales it's target by the given factor.SidewaysIterator(Print target, int angle, org.eclipse.swt.graphics.Device device, org.eclipse.swt.graphics.GC gc)SidewaysPrint(Print target)Constructs a SidewaysPrint that rotates it's target 90 degrees counter-clockwise.SidewaysPrint(Print target, int angle)Constructs a SidewaysPrint. -
Uses of Print in org.eclipse.nebula.paperclips.core.border
Classes in org.eclipse.nebula.paperclips.core.border that implement Print Modifier and Type Class Description classBorderPrintA decorator that draws a border around the target print.Fields in org.eclipse.nebula.paperclips.core.border declared as Print Modifier and Type Field Description (package private) PrintBorderPrint. targetMethods in org.eclipse.nebula.paperclips.core.border that return Print Modifier and Type Method Description PrintBorderPrint. getTarget()Returns the wrapped print to which the border is being applied.Constructors in org.eclipse.nebula.paperclips.core.border with parameters of type Print Constructor Description BorderPrint(Print target, Border border)Constructs a BorderPrint with the given target and border. -
Uses of Print in org.eclipse.nebula.paperclips.core.grid
Classes in org.eclipse.nebula.paperclips.core.grid that implement Print Modifier and Type Class Description classGridPrintA Print which arranges child prints into a grid.Methods in org.eclipse.nebula.paperclips.core.grid that return Print Modifier and Type Method Description PrintGridCell. getContent()Returns the content print of the cell.Methods in org.eclipse.nebula.paperclips.core.grid with parameters of type Print Modifier and Type Method Description voidGridPrint. add(int hAlignment, int vAlignment, Print cell)Adds the Print to the grid body, using the given colspan and alignment.voidGridPrint. add(int hAlignment, int vAlignment, Print cell, int colspan)Adds the Print to the grid body, using the given colspan and alignment.voidGridPrint. add(int hAlignment, Print cell)Adds the Print to the grid body, using the given colspan and alignment.voidGridPrint. add(int hAlignment, Print cell, int colspan)Adds the Print to the grid body, using the given colspan and alignment.private intGridPrint. add(java.util.List<java.util.List<GridCell>> rows, int startColumn, int hAlignment, int vAlignment, Print cellContents, int colspan)voidGridPrint. add(Print cell)Adds the Print to the grid body, with the default alignment and a colspan of 1.voidGridPrint. add(Print cell, int colspan)Adds the Print to the grid body, with the given colspan and the default alignment.voidGridPrint. addFooter(int hAlignment, int vAlignment, Print cell)Adds the Print to the grid footer, using the given colspan and alignment.voidGridPrint. addFooter(int hAlignment, int vAlignment, Print cell, int colspan)Adds the Print to the grid footer, using the given colspan and alignment.voidGridPrint. addFooter(int hAlignment, Print cell)Adds the Print to the grid footer, using the given colspan and alignment.voidGridPrint. addFooter(int hAlignment, Print cell, int colspan)Adds the Print to the grid footer, using the given colspan and alignment.voidGridPrint. addFooter(Print cell)Adds the Print to the grid footer, with the default alignment and a colspan of 1.voidGridPrint. addFooter(Print cell, int colspan)Adds the Print to the grid footer, with the given colspan and the default alignment.voidGridPrint. addHeader(int hAlignment, int vAlignment, Print cell)Adds the Print to the grid header, using the given alignment.voidGridPrint. addHeader(int hAlignment, int vAlignment, Print cell, int colspan)Adds the Print to the grid header, using the given colspan and alignment.voidGridPrint. addHeader(int hAlignment, Print cell)Adds the Print to the grid header, using the given alignment.voidGridPrint. addHeader(int hAlignment, Print cell, int colspan)Adds the Print to the grid header, using the given colspan and alignment.voidGridPrint. addHeader(Print cell)Adds the Print to the grid header, with default alignment and a colspan of 1.voidGridPrint. addHeader(Print cell, int colspan)Adds the Print to the grid header, with the given colspan and the default alignment. -
Uses of Print in org.eclipse.nebula.paperclips.core.grid.internal
Fields in org.eclipse.nebula.paperclips.core.grid.internal declared as Print Modifier and Type Field Description private PrintGridCellImpl. targetMethods in org.eclipse.nebula.paperclips.core.grid.internal that return Print Modifier and Type Method Description PrintGridCellImpl. getContent()Constructors in org.eclipse.nebula.paperclips.core.grid.internal with parameters of type Print Constructor Description GridCellImpl(int hAlignment, int vAlignment, Print target, int colspan)This constructor is only here for compatibility reasons and is not intented to be used by clients. -
Uses of Print in org.eclipse.nebula.paperclips.core.internal
Fields in org.eclipse.nebula.paperclips.core.internal declared as Print Modifier and Type Field Description private PrintLayerEntryImpl. targetMethods in org.eclipse.nebula.paperclips.core.internal that return Print Modifier and Type Method Description PrintLayerEntryImpl. getTarget()Constructors in org.eclipse.nebula.paperclips.core.internal with parameters of type Print Constructor Description LayerEntryImpl(Print target, int align)Create a new layer entry. -
Uses of Print in org.eclipse.nebula.paperclips.core.page
Classes in org.eclipse.nebula.paperclips.core.page that implement Print Modifier and Type Class Description classPageNumberPrintDisplays the page number and page count within the context of aPagePrint.classPagePrintA decorator Print which displays page headers and footers around a document body, with page numbering capabilities.Fields in org.eclipse.nebula.paperclips.core.page declared as Print Modifier and Type Field Description (package private) PrintPagePrint. bodyprivate PrintSimplePageDecoration. printMethods in org.eclipse.nebula.paperclips.core.page that return Print Modifier and Type Method Description PrintPageDecoration. createPrint(PageNumber pageNumber)Returns a decorator Print for the page with the given page number, or null if no decoration is provided for the given page.PrintPageNumberPageDecoration. createPrint(PageNumber pageNumber)PrintSimplePageDecoration. createPrint(PageNumber pageNumber)PrintPagePrint. getBody()Returns the page body.Methods in org.eclipse.nebula.paperclips.core.page with parameters of type Print Modifier and Type Method Description private PrintPiecePageIterator. getDecorationPrintPiece(Print decoration, int width, int height)voidPagePrint. setBody(Print body)Sets the page body to the argument.Constructors in org.eclipse.nebula.paperclips.core.page with parameters of type Print Constructor Description PagePrint(PageDecoration header, int headerGap, Print body)Constructs a PagePrint with the given header and body.PagePrint(PageDecoration header, int headerGap, Print body, int footerGap, PageDecoration footer)Constructs a PagePrint with the given body, header and footer.PagePrint(PageDecoration header, Print body)Constructs a PagePrint with the given header and body.PagePrint(PageDecoration header, Print body, PageDecoration footer)Constructs a PagePrint with the given body, header and footer.PagePrint(Print body)Constructs a PagePrint with the given body.PagePrint(Print body, int footerGap, PageDecoration footer)Constructs a PagePrint with the given body, header and footer.PagePrint(Print body, PageDecoration footer)Constructs a PagePrint with the given body and footer.SimplePageDecoration(Print print)Constructs a BasicPageDecoration. -
Uses of Print in org.eclipse.nebula.paperclips.core.text
Classes in org.eclipse.nebula.paperclips.core.text that implement Print Modifier and Type Class Description classLineBreakPrintA class for adding line breaks corresponding to a particular font size.classStyledTextPrintA class for printing styled text.classTextPrintA Print for displaying text.Fields in org.eclipse.nebula.paperclips.core.text with type parameters of type Print Modifier and Type Field Description private java.util.List<Print>StyledTextPrint. elementsMethods in org.eclipse.nebula.paperclips.core.text with parameters of type Print Modifier and Type Method Description StyledTextPrintStyledTextPrint. append(Print element)Appends the given element to the document.Constructors in org.eclipse.nebula.paperclips.core.text with parameters of type Print Constructor Description StyledTextIterator(Print[] elements, org.eclipse.swt.graphics.Device device, org.eclipse.swt.graphics.GC gc) -
Uses of Print in org.eclipse.nebula.paperclips.snippets
Methods in org.eclipse.nebula.paperclips.snippets that return Print Modifier and Type Method Description static PrintPagePrintExample. createBody()static PrintSnippet1. createCell(org.eclipse.swt.graphics.Image image, java.lang.String text, int align)static PrintAlignPrintExample. createPrint()static PrintBreakPrintExample. createPrint()static PrintColumnPrintExample. createPrint()static PrintGridPrintCellClippingAllowClipFirstRow. createPrint()static PrintGridPrintCellClippingExample. createPrint()static PrintGridPrintExample. createPrint()static PrintGridPrintVerticalAlignmentExample. createPrint()static PrintImageCaptureExample. createPrint()Returns a sample printstatic PrintNoBreakPrintExample. createPrint()static PrintPagePrintExample. createPrint()static PrintSnippet1. createPrint(org.eclipse.swt.widgets.Table table)static PrintSnippet2. createPrint()static PrintSnippet3. createPrint()static PrintSnippet4. createPrint()static PrintSnippet5. createPrint()static PrintSnippet6. createPrint()static PrintSnippet7. createPrint()static PrintSnippet8. createPrint()static PrintStyledTextPrintExample. createPrint()static PrintTutorialExample2. createPrint() -
Uses of Print in org.eclipse.nebula.paperclips.widgets
Fields in org.eclipse.nebula.paperclips.widgets declared as Print Modifier and Type Field Description private PrintPrintViewer. printMethods in org.eclipse.nebula.paperclips.widgets that return Print Modifier and Type Method Description PrintPrintViewer. getPrint()Returns the Print being displayed.Methods in org.eclipse.nebula.paperclips.widgets with parameters of type Print Modifier and Type Method Description voidPrintViewer. setPrint(Print print)Sets the Print to be displayed.
-