亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
成人av先锋影音| 偷拍亚洲欧洲综合| 欧美日韩高清在线播放| 久久不见久久见免费视频7| 欧美激情一区二区三区在线| 欧美性大战久久久久久久蜜臀| 狠狠色伊人亚洲综合成人| 亚洲欧洲成人精品av97| 日韩午夜激情电影| 色94色欧美sute亚洲线路一ni | 国产三级精品视频| 欧美艳星brazzers| 国产91露脸合集magnet| 日韩精品欧美成人高清一区二区| 亚洲一区二区三区精品在线| 欧美精品一区二区三区蜜桃视频 | 亚洲免费观看高清完整版在线观看熊| 538在线一区二区精品国产| 成人aa视频在线观看| 蜜臀av性久久久久蜜臀aⅴ流畅| 亚洲色图在线播放| 久久精品夜夜夜夜久久| 91精品在线观看入口| 91久久香蕉国产日韩欧美9色| 懂色一区二区三区免费观看| 麻豆成人在线观看| 午夜精品久久久久久久99水蜜桃| 综合激情网...| 久久免费国产精品| 日韩欧美一级片| 欧美另类videos死尸| 色菇凉天天综合网| 波多野结衣精品在线| 国产乱码精品1区2区3区| 蜜桃av噜噜一区| 日韩精品一二三区| 亚洲电影你懂得| 一区二区三区日韩精品视频| 亚洲色图.com| 日韩美女久久久| 国产精品国产a| 国产精品日韩成人| 国产欧美日韩三区| 国产亚洲精品免费| 久久色在线观看| 久久综合色婷婷| 2020国产精品自拍| 精品盗摄一区二区三区| 精品少妇一区二区三区视频免付费| 67194成人在线观看| 欧美日韩国产精选| 欧美精品高清视频| 7777精品伊人久久久大香线蕉| 欧美视频在线不卡| 欧美日韩精品欧美日韩精品| 欧美日韩精品一区二区在线播放| 欧美日韩在线精品一区二区三区激情 | 中文无字幕一区二区三区| 精品国产乱码91久久久久久网站| 日韩免费视频一区| 精品国产一区二区三区久久影院| 精品久久久久香蕉网| 久久久欧美精品sm网站| 国产无人区一区二区三区| 欧美极品少妇xxxxⅹ高跟鞋| 国产精品久久久久久久久果冻传媒| 国产精品视频一二| 一区二区欧美在线观看| 亚洲成人动漫在线免费观看| 免费成人在线观看| 国产精华液一区二区三区| 福利视频网站一区二区三区| 91香蕉国产在线观看软件| 国产日产精品一区| **欧美大码日韩| 亚洲国产精品欧美一二99| 亚洲第四色夜色| 免费观看日韩av| 国产69精品久久777的优势| 91美女片黄在线观看91美女| 欧美日韩亚洲高清一区二区| 精品国产凹凸成av人网站| 欧美激情一二三区| 亚洲夂夂婷婷色拍ww47| 免费成人小视频| 成人av影视在线观看| 欧美色图免费看| 久久久综合网站| 尤物av一区二区| 久久国产精品一区二区| 粉嫩av一区二区三区在线播放 | 日韩电影网1区2区| 国产精品一区二区三区四区 | 日韩一区二区视频| 国产精品污网站| 亚洲高清不卡在线| 国产传媒日韩欧美成人| 在线观看日韩av先锋影音电影院| 这里只有精品免费| 国产精品黄色在线观看| 日日摸夜夜添夜夜添亚洲女人| 成人自拍视频在线观看| 欧美日韩亚洲综合一区二区三区| 久久精品在这里| 性感美女久久精品| 波多野结衣在线一区| 5566中文字幕一区二区电影| 亚洲欧洲精品一区二区三区不卡| 日韩电影在线一区二区三区| caoporn国产一区二区| 51精品国自产在线| 亚洲图片你懂的| 国产真实精品久久二三区| 精品视频全国免费看| 欧美高清在线一区二区| 久久精品国产亚洲一区二区三区| 色成人在线视频| 中文av一区特黄| 久久99国产精品久久| 欧美日韩精品一区二区三区| 国产精品三级在线观看| 精品一区二区在线播放| 国产精品传媒入口麻豆| 久久99国产精品久久99| 欧美精品1区2区3区| 17c精品麻豆一区二区免费| 国产馆精品极品| 91精品国产欧美一区二区18| 亚洲自拍偷拍欧美| av动漫一区二区| 亚洲国产高清aⅴ视频| 韩国精品一区二区| 日韩一级黄色大片| 性久久久久久久久久久久| 欧洲av一区二区嗯嗯嗯啊| 日韩伦理av电影| 9l国产精品久久久久麻豆| 国产欧美一区二区精品忘忧草| 韩国av一区二区三区| 欧美电影免费提供在线观看| 日韩不卡免费视频| 欧美乱妇一区二区三区不卡视频| 亚洲主播在线播放| 在线看国产日韩| 麻豆国产精品视频| 国产精品人人做人人爽人人添| 91国在线观看| 91麻豆精品国产91久久久久| 亚洲va欧美va人人爽| 欧美最猛黑人xxxxx猛交| 综合久久给合久久狠狠狠97色| 99国产精品99久久久久久| 国产精品久久久久久久久免费丝袜| 国产剧情av麻豆香蕉精品| 久久久久国产精品厨房| 国产成人啪午夜精品网站男同| 国产欧美精品一区二区色综合 | 日本高清不卡一区| 亚洲日本免费电影| 欧美午夜在线观看| 日本视频一区二区| 精品国产第一区二区三区观看体验 | 国产日本一区二区| 99国产精品久久| 亚洲一二三专区| 91.xcao| 国产一区在线精品| 国产精品久久久久久久裸模| 久久尤物电影视频在线观看| 国产不卡免费视频| 亚洲人成在线播放网站岛国| 欧美午夜电影网| 蜜桃在线一区二区三区| 久久久精品国产免大香伊| 97se狠狠狠综合亚洲狠狠| 亚洲第一成人在线| 欧美videos中文字幕| 99久久国产综合精品麻豆| 亚洲成av人片在线| 久久欧美一区二区| 99久久99久久综合| 亚洲国产你懂的| 精品日韩欧美在线| 国产乱码精品一区二区三| 一区二区三区电影在线播| 欧美日韩久久一区二区| 国产一区二区视频在线| 国产精品少妇自拍| 日本韩国欧美国产| 中文字幕一区二区不卡| 欧美剧情电影在线观看完整版免费励志电影 | 国产夫妻精品视频| 亚洲黄色性网站| 欧美一级高清片| 成人一级黄色片| 亚洲成人自拍一区| 国产欧美精品国产国产专区| 欧美自拍偷拍午夜视频| 毛片基地黄久久久久久天堂| 亚洲特级片在线|