亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? printabledocument.java

?? 共有164個java源程序
?? JAVA
字號:
/* * Copyright (c) 2000 David Flanagan.  All rights reserved. * This code is from the book Java Examples in a Nutshell, 2nd Edition. * It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or implied. * You may study, use, and modify it for any non-commercial purpose. * You may distribute it non-commercially as long as you retain this notice. * For a commercial use license, or to purchase the book (recommended), * visit http://www.davidflanagan.com/javaexamples2. */package com.davidflanagan.examples.print;import java.awt.*;import java.awt.print.*;import java.awt.geom.*;import java.awt.font.*;import javax.swing.*;import javax.swing.text.*;import java.util.*;/** * This class implements the Pageable and Printable interfaces and allows * the contents of any JTextComponent to be printed using the java.awt.print * printing API. **/public class PrintableDocument implements Pageable, Printable {    View root;              // The root View to be printed    PageFormat format;      // Paper plus page orientation    double scalefactor;     // How much to scale before printing    int numPages;           // How many pages in the document    double printX, printY;  // coordinates of upper-left of print area    double printWidth;      // Width of the printable area    double printHeight;     // Height of the printable area    Rectangle drawRect;     // The rectangle in which the document is painted    // How lenient are we with the bottom margin in widow/orphan prevention?    static final double MARGIN_ADJUST = .97;    // The font we use for printing page numbers    static final Font headerFont = new Font("Serif", Font.PLAIN, 12);    /**     * This constructor allows printing the contents of any JTextComponent     * using a default PageFormat and a default scale factor.  The default     * scale factor is .75 because the default fonts are overly large.     */    public PrintableDocument(JTextComponent textComponent) {	this(textComponent, new PageFormat(), .75);    }    /**      * This constructor allows the contents of any JTextComponent to be     * printed, using any specified PageFormat object and any scaling factor.     **/    public PrintableDocument(JTextComponent textComponent, PageFormat format,			     double scalefactor)    {	// Remember the page format, and ask it for the printable area	this.format = format;	this.scalefactor = scalefactor;	this.printX = format.getImageableX()/scalefactor;	this.printY = format.getImageableY()/scalefactor;	this.printWidth = format.getImageableWidth()/scalefactor;	this.printHeight = format.getImageableHeight()/scalefactor;	double paperWidth = format.getWidth()/scalefactor;	// Get the document and its root Element from the text component	Document document = textComponent.getDocument();	Element rootElement = document.getDefaultRootElement();	// Get the EditorKit and its ViewFactory from the text component	EditorKit editorKit =textComponent.getUI().getEditorKit(textComponent);	ViewFactory viewFactory = editorKit.getViewFactory();	// Use the ViewFactory to create a root View object for the document	// This is the object we'll print.  	root = viewFactory.create(rootElement);	// The Swing text architecture requires us to call setParent() on	// our root View before we use it for anything.  In order to do this,	// we need a View object that can serve as the parent.  We use a 	// custom implementation defined below.	root.setParent(new ParentView(root, viewFactory, textComponent));	// Tell the view how wide the page is; it has to format itself	// to fit within this width.  The height doesn't really matter here	root.setSize((float)printWidth, (float)printHeight);	// Now that the view has formatted itself for the specified width,	// Ask it how tall it is.  	double documentHeight = root.getPreferredSpan(View.Y_AXIS);	// Set up the rectangle that tells the view where to draw itself	// We'll use it in other methods of this class.	drawRect = new Rectangle(0, 0, (int)printWidth, (int)documentHeight);	// Now if the document is taller than one page, we have to 	// figure out where the page breaks are.	if (documentHeight > printHeight) paginate(root, drawRect);	// Once we've broken it into pages, figure out how many pages.	numPages = pageLengths.size() + 1;    }    // This is the starting offset of the page we're currently working on    double pageStart = 0;        /**     * This method loops through the children of the specified view,     * recursing as necessary, and inserts pages breaks when needed.     * It makes a rudimentary attempt to avoid "widows" and "orphans".     **/    protected void paginate(View v, Rectangle2D allocation) {	// Figure out how tall this view is, and tell it to allocate	// that space among its children	double myheight = v.getPreferredSpan(View.Y_AXIS);	v.setSize((float)printWidth, (float)myheight);	// Now loop through each of the children	int numkids = v.getViewCount();	for(int i = 0; i < numkids; i++) {	    View kid = v.getView(i);  // this is the child we're working with	    // Figure out its size and location	    Shape kidshape = v.getChildAllocation(i, allocation);	    if (kidshape == null) continue;	    Rectangle2D kidbox = kidshape.getBounds2D();	    // This is the Y coordinate of the bottom of the child	    double kidpos = kidbox.getY() + kidbox.getHeight() - pageStart;	   	    // If this is the first child of a group, then we want to ensure	    // that it doesn't get left by itself at the bottom of a page.	    // I.e. we want to prevent "widows"	    if ((numkids > 1) && (i == 0)) {		// If it is not near the end of the page, then just move		// on to the next child		if (kidpos < printY + printHeight*MARGIN_ADJUST) continue;		// Otherwise, the child is near the bottom of the page, so		// break the page before this child and place this child on		// the new page.		breakPage(kidbox.getY());		continue;	    }	    // If this is the last child of a group, we don't want it to	    // appear by itself at the top of a new page, so allow it to	    // squeeze past the bottom margin if necessary.  This helps to	    // prevent "orphans"	    if ((numkids > 1) && (i == numkids-1)) {		// If it fits normally, just move on to the next one		if (kidpos < printY + printHeight) continue;		// Otherwise, if it fits with extra space, then break the		// page at the end of the group		if (kidpos < printY + printHeight/MARGIN_ADJUST) {		    breakPage(allocation.getY() + allocation.getHeight());		    continue;		}	    }	    // If the child is not the first or last of a group, then we use	    // the bottom margin strictly.  If the child fits on the page,	    // then move on to the next child.	    if (kidpos < printY+printHeight) continue;	    // If we get here, the child doesn't fit on this page.  If it has	    // no children, then break the page before this child and continue.	    if (kid.getViewCount() == 0) {		breakPage(kidbox.getY());		continue;	    }	    // If we get here, then the child did not fit on the page, but it	    // has kids of its own, so recurse to see if any of those kids	    // will fit on the page.	    paginate(kid, kidbox);	}    }    // For a document of n pages, this list stores the lengths of pages     // 0 through n-2.  The last page is assumed to have a full length    ArrayList pageLengths = new ArrayList();    // For a document of n pages, this list stores the starting offset of    // pages 1 through n-1.  The offset of page 0 is always 0    ArrayList pageOffsets = new ArrayList();    /**      * Break a page at the specified Y coordinate.  Store the necessary     * information into the pageLengths and pageOffsets lists     **/    void breakPage(double y) {	double pageLength = y-pageStart-printY;	pageStart = y-printY;	pageLengths.add(new Double(pageLength));	pageOffsets.add(new Double(pageStart));    }    /** Return the number of pages. This is a Pageable method.   */    public int getNumberOfPages() { return numPages; }    /**      * Return the PageFormat object for the specified page.  This is a     * Pageable method. This implementation uses the computed length of the     * page in the returned PageFormat object.  The PrinterJob will use this     * as a clipping region, which will prevent extraneous parts of the     * document from being drawn in the top and bottom margins.     **/    public PageFormat getPageFormat(int pagenum) {	// On the last page, just return the user-specified page format	if (pagenum == numPages-1) return format;	// Otherwise, look up the height of this page and return an	// appropriate PageFormat.	double pageLength = ((Double)pageLengths.get(pagenum)).doubleValue();	PageFormat f = (PageFormat) format.clone();	Paper p = f.getPaper();	if (f.getOrientation() == PageFormat.PORTRAIT)	    p.setImageableArea(printX*scalefactor, printY*scalefactor,			       printWidth*scalefactor, pageLength*scalefactor);	else 	    p.setImageableArea(printY*scalefactor, printX*scalefactor,			       pageLength*scalefactor, printWidth*scalefactor);	f.setPaper(p);	return f;    }    /**     * This Pageable method returns the Printable object for the specified     * page.  Since this class implements both Pageable and Printable, it just     * returns this.     **/    public Printable getPrintable(int pagenum) { return this; }    /**     * This is the basic Printable method that prints a specified page     **/    public int print(Graphics g, PageFormat format, int pageIndex) {	// Return an error code on attempts to print past the end of the doc	if (pageIndex >= numPages) return NO_SUCH_PAGE;	// Cast the Graphics object so we can use Java2D operations	Graphics2D g2 = (Graphics2D)g;		// Translate to accomodate the top and left margins	g2.translate(format.getImageableX(), format.getImageableY());		// Scale the page by the specified scaling factor	g2.scale(scalefactor, scalefactor);	// Display a page number centered in the area of the top margin.	// Set a new clipping region so we can draw into the top margin	// But remember the original clipping region so we can restore it	if (pageIndex > 0) {	    Shape originalClip = g.getClip();	    g.setClip(new Rectangle(0, (int)-printY,				    (int)printWidth, (int)printY));	    // Compute the header to display, measure it, then display it	    String numString = "- " + (pageIndex+1) + " -";	    // Get string and font measurements	    FontRenderContext frc = g2.getFontRenderContext();	    Rectangle2D numBounds = headerFont.getStringBounds(numString, frc);	    LineMetrics metrics = headerFont.getLineMetrics(numString, frc);	    g.setFont(headerFont);    // Set the font	    g.setColor(Color.black);  // Print with black ink	    g.drawString(numString,   // Display the string			 (int)((printWidth-numBounds.getWidth())/2),			 (int)(-(printY-numBounds.getHeight())/2 +			       metrics.getAscent()));	    g.setClip(originalClip);  // Restore the clipping region	}	// Get the staring position and length of the page within the document	double pageStart = 0.0, pageLength = printHeight;	if (pageIndex > 0)	    pageStart = ((Double)pageOffsets.get(pageIndex-1)).doubleValue();	if (pageIndex < numPages-1)	    pageLength = ((Double)pageLengths.get(pageIndex)).doubleValue();	// Scroll so that the appropriate part of the document is lined up	// with the upper-left corner of the page	g2.translate(0.0, -pageStart);	// Now paint the entire document.  Because of the clipping region,	// only the desired portion of the document will actually be drawn on	// this sheet of paper.	root.paint(g, drawRect);	// Finally return a success code	return PAGE_EXISTS;    }    /**      * This inner class is a concrete implementation of View, with a      * couple of key method implementations.  An instance of this class     * is used as the parent of the root View object we want to print     **/    static class ParentView extends View {	ViewFactory viewFactory; // The ViewFactory for the hierarchy of views	Container container;     // The Container for the hierarchy of views	public ParentView(View v, ViewFactory viewFactory, Container container)	{	    super(v.getElement());	    this.viewFactory = viewFactory;	    this.container = container;	}	// These methods return key pieces of information required by	// the View hierarchy.	public ViewFactory getViewFactory() { return viewFactory; }	public Container getContainer() { return container; }	// These methods are abstract in View, so we've got to provide	// dummy implementations of them here, even though they're never used.	public void paint(Graphics g, Shape allocation) {}	public float getPreferredSpan(int axis) { return 0.0f; }	public int viewToModel(float x,float y,Shape a,Position.Bias[] bias) {	    return 0;	}	public Shape modelToView(int pos, Shape a, Position.Bias b)	    throws BadLocationException {	    return a;	}    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕一区不卡| 国产精品国产三级国产| 日本成人在线看| 777色狠狠一区二区三区| 午夜精品久久久久久久| 欧美成人一区二区三区在线观看| 美女国产一区二区三区| 久久婷婷色综合| 岛国精品一区二区| 亚洲精品欧美综合四区| 欧美日韩在线播| 欧美大白屁股肥臀xxxxxx| 51精品视频一区二区三区| 天堂成人国产精品一区| 欧美一级一级性生活免费录像| 日本va欧美va欧美va精品| 2021中文字幕一区亚洲| 99久久精品国产麻豆演员表| 夜夜操天天操亚洲| 欧美大尺度电影在线| 99久久久久免费精品国产| 性久久久久久久久久久久| 久久综合久久综合久久| 成人av网在线| 五月天激情小说综合| 精品国产免费久久| 色综合色狠狠天天综合色| 日韩av一区二| 国产精品免费aⅴ片在线观看| 欧美日韩一级二级| 成人小视频免费观看| 亚洲一区二区在线视频| 国产午夜精品久久久久久久| 欧美精选在线播放| 自拍偷拍欧美激情| 日本精品一区二区三区四区的功能| 亚洲韩国精品一区| 国产清纯在线一区二区www| 欧美日韩精品欧美日韩精品一| 国产成人一级电影| 蜜乳av一区二区| 艳妇臀荡乳欲伦亚洲一区| 国产农村妇女毛片精品久久麻豆| 欧美视频三区在线播放| 成人av网址在线观看| 精品亚洲成a人| 日韩vs国产vs欧美| 夜夜爽夜夜爽精品视频| ㊣最新国产の精品bt伙计久久| 欧美成人福利视频| 欧美日韩和欧美的一区二区| 91麻豆免费在线观看| 国产精品原创巨作av| 精品在线视频一区| 性做久久久久久免费观看| 亚洲男同性视频| 国产精品久久久久久久久动漫| 久久精品99国产精品日本| 国产精品三级av| 久久久国产午夜精品| 日韩精品一区二区三区视频播放| 欧洲av在线精品| 91国产免费观看| 99国产精品久久久久| 麻豆91免费观看| 日本伊人午夜精品| 亚洲第一福利一区| 午夜精品久久一牛影视| 亚洲亚洲人成综合网络| 亚洲一区二区视频| 亚洲成av人片在线| 亚洲va韩国va欧美va| 五月激情六月综合| 日韩va欧美va亚洲va久久| 天堂va蜜桃一区二区三区| 午夜精品福利一区二区三区av | 欧美性大战久久久久久久| 色哟哟日韩精品| 欧美午夜电影在线播放| 欧美日韩激情一区二区三区| 欧美酷刑日本凌虐凌虐| 69久久夜色精品国产69蝌蚪网| 91精品一区二区三区在线观看| 欧美精品视频www在线观看| 欧美嫩在线观看| 精品国产3级a| 日本一区免费视频| 国产精品高潮久久久久无| 亚洲精品国产一区二区三区四区在线| 亚洲三级免费电影| 午夜精品一区二区三区免费视频| 日本欧美在线看| 国产真实乱子伦精品视频| 国产成人无遮挡在线视频| 91丝袜美女网| 欧美日韩午夜在线| 精品久久一区二区| 亚洲欧洲性图库| 午夜精品成人在线视频| 久久国产视频网| 成人国产精品视频| 欧美日韩午夜影院| 久久综合九色综合欧美就去吻| 日本一区二区久久| 亚洲大型综合色站| 国产精品1024久久| 欧美在线观看视频一区二区| 精品久久久久久久一区二区蜜臀| 中文字幕精品—区二区四季| 亚洲综合色视频| 国产一区二区三区免费在线观看| 色综合久久九月婷婷色综合| 91精品国产福利在线观看| 久久精品一区二区三区不卡 | 日韩国产高清在线| 国产一区二区三区在线观看精品| 欧美在线你懂的| 精品国产一区二区三区久久久蜜月 | 久久色在线视频| 一区二区三区免费| 国产精品99久久久| 欧美日韩国产色站一区二区三区| 国产日产精品1区| 日韩激情视频网站| 色一情一伦一子一伦一区| 精品国产免费人成在线观看| 亚洲一区二区五区| 成人高清免费观看| 91精品国产综合久久久蜜臀粉嫩| 国产日韩精品视频一区| 免费高清在线视频一区·| 99热99精品| 日本一区二区三区四区| 日韩和欧美一区二区三区| 91在线观看地址| 欧美激情在线观看视频免费| 蜜桃在线一区二区三区| 欧美性欧美巨大黑白大战| 国产精品色眯眯| 国产精品一区二区三区四区| 日韩三级免费观看| 亚洲成人激情社区| 欧洲一区在线电影| 亚洲免费av在线| 粉嫩一区二区三区在线看| 欧美xingq一区二区| 日韩电影在线一区| 欧美精品三级日韩久久| 一区二区三区日韩欧美| 97成人超碰视| 中文字幕一区二区三区蜜月| 国产精品亚洲а∨天堂免在线| 日韩免费成人网| 美女性感视频久久| 欧美一区二区日韩| 免费在线观看一区二区三区| 欧美日韩dvd在线观看| 性做久久久久久免费观看欧美| 欧洲色大大久久| 亚洲成人av一区二区| 欧美日韩国产综合久久| 性做久久久久久免费观看 | 日韩一区二区三区三四区视频在线观看 | 91精品国产综合久久小美女| 视频一区二区三区入口| 欧美日韩国产综合久久 | 毛片一区二区三区| 欧美一区二区福利在线| 久久爱www久久做| 欧美mv日韩mv| 国产成人三级在线观看| 国产精品三级视频| 91麻豆.com| 亚洲 欧美综合在线网络| 91精品国产一区二区人妖| 免费一级片91| 国产日产欧产精品推荐色| 99国产麻豆精品| 亚洲成人资源网| 精品国产一区二区三区av性色| 国产精品538一区二区在线| 国产精品久久午夜夜伦鲁鲁| 91免费在线视频观看| 亚洲国产你懂的| 欧美成人三级电影在线| 成人一二三区视频| 亚洲精品视频在线观看网站| 欧美日韩的一区二区| 久久99精品久久久| 国产精品久久久久久久久久免费看 | 欧美mv和日韩mv国产网站| 国产成人av自拍| 一区二区成人在线视频| 91精品国产综合久久国产大片| 精品一区二区三区免费| 中文字幕一区二区视频| 欧美卡1卡2卡| 成人福利视频网站| 亚洲成a人在线观看| 久久久精品蜜桃|