⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 more.html

📁 JSP中文介绍,对于菜鸟有用
💻 HTML
📖 第 1 页 / 共 2 页
字号:
    graphics2D.draw(carets[1]);  }}private class HitTestMouseListener     extends MouseAdapter {  public void mouseClicked(MouseEvent e) {    Point2D origin = computeLayoutOrigin();    float clickX = (float) (e.getX() - origin.getX());    float clickY = (float) (e.getY() - origin.getY());    TextHitInfo currentHit =       textLayout.hitTestChar(clickX,       insertionIndex = currentHit.getInsertionIndex();    repaint();  }}</PRE><A NAME=HIGHLIGHT></A><H3>Selection Highlighting</H3>A <CODE>TextLayout</CODE> object supports highlighting theentire length or portion of a text string on the screen. In thisexample, the text string draws with caret at thebeginning of the line. The end user can drag the mouse fromthere or click somewhere else and drag to highlight the characters. The code uses the<CODE>TextLayout.hitTestChar.</CODE> and<CODE>TextLayout.getLogicalHighlightShape</CODE> to compute the endpoint and get a <CODE>Shape</CODE> that represents the highlight region.<P>Here is the complete <A HREF="./Code/SelectionSample.java">SelectionSample.java</A> source code.<P><CENTER><IMG SRC="./Art/Selection.gif"></CENTER><PRE>public void paint(Graphics g) {  Graphics2D graphics2D = (Graphics2D) g;  Point2D origin = computeLayoutOrigin();  graphics2D.translate(origin.getX(), origin.getY());  boolean haveCaret = anchorEnd == activeEnd;  if (!haveCaret) {    Shape highlight =       textLayout.getLogicalHighlightShape(      anchorEnd, activeEnd);    graphics2D.setColor(HIGHLIGHT_COLOR);    graphics2D.fill(highlight);  }  graphics2D.setColor(TEXT_COLOR);  extLayout.draw(graphics2D, 0, 0);  if (haveCaret) {    Shape[] carets =       textLayout.getCaretShapes(anchorEnd);    graphics2D.setColor(STRONG_CARET_COLOR);    graphics2D.draw(carets[0]);    if (carets[1] != null) {      graphics2D.setColor(WEAK_CARET_COLOR);      graphics2D.draw(carets[1]);    }  } }private class SelectionMouseMotionListener     extends MouseMotionAdapter {  public void mouseDragged(MouseEvent e) {    Point2D origin = computeLayoutOrigin();    float clickX = (float) (e.getX() - origin.getX());    float clickY = (float) (e.getY() - origin.getY());    TextHitInfo position =       textLayout.hitTestChar(clickX, clickY);    int newActiveEnd = position.getInsertionIndex();    if (activeEnd != newActiveEnd) {      activeEnd = newActiveEnd;      repaint();    }  }}private class SelectionMouseListener     extends MouseAdapter {  public void mousePressed(MouseEvent e) {    Point2D origin = computeLayoutOrigin();    float clickX = (float) (e.getX() - origin.getX());    float clickY = (float) (e.getY() - origin.getY());    TextHitInfo position =       textLayout.hitTestChar(clickX, clickY);    anchorEnd = position.getInsertionIndex();    activeEnd = anchorEnd;    repaint();  }}</PRE>	<A NAME=CARET></A><H3>Moving the Caret</H3>A <CODE>TextLayout</CODE> object supports moving through thetext string on the display one character at a time when theend user presses the left and right arrow keys. In this nextexample, an insertion offset is initially set to 0 and movedby calling <CODE>TextLayout.getNextRightHit</CODE> and <CODE>TextLayout.getNextLeftHit</CODE> as appropriate in responseto left and right arrow key presses.<P>Here is the complete <A HREF="./Code/ArrowKeySample.java">ArrowKeySample.java</A> source code.<P><CENTER><IMG SRC="./Art/Arrow.gif"></CENTER><PRE>public void paint(Graphics g) {  Graphics2D graphics2D = (Graphics2D) g;  Point2D origin = computeLayoutOrigin();  graphics2D.translate(origin.getX(), origin.getY());  textLayout.draw(graphics2D, 0, 0);  Shape[] carets =     textLayout.getCaretShapes(insertionIndex);  graphics2D.setColor(STRONG_CARET_COLOR);  graphics2D.draw(carets[0]);  if (carets[1] != null) {    graphics2D.setColor(WEAK_CARET_COLOR);    graphics2D.draw(carets[1]);  } } private class ArrowKeyListener extends KeyAdapter {   private void handleArrowKey(boolean rightArrow) {     TextHitInfo newPosition;     if (rightArrow) {       newPosition =          textLayout.getNextRightHit(insertionIndex);     }     else {       newPosition =          textLayout.getNextLeftHit(insertionIndex);     }    if (newPosition != null) {      insertionIndex = newPosition.getInsertionIndex();      repaint();    }  }  public void keyPressed(KeyEvent e) {    int keyCode = e.getKeyCode();    if (keyCode == KeyEvent.VK_LEFT ||                   keyCode == KeyEvent.VK_RIGHT) {      handleArrowKey(keyCode == KeyEvent.VK_RIGHT);    }  }</PRE></FONT></TD></TR></TABLE><!-- ================ --><!-- End Main Content --><!-- ================ --></FONT></TD></TR></TABLE><!-- Copyright Insert --><BR CLEAR="ALL"><FORM ACTION="/cgi-bin/search.cgi" METHOD="POST"><TABLE WIDTH="100%" CELLPADDING="0" BORDER="0" CELLSPACING="5">     <TR>    <TD VALIGN="TOP">	    <P ALIGN=CENTER>    <FONT SIZE="-1" COLOR="#999999" FACE="Verdana, Arial, Helvetica, sans-serif">    [ This page was updated: <!-- new date --> 12-Nov-99 ]</font></P>    </TD>  </TR>    <TR>    <TD BGCOLOR="#CCCCCC">    <IMG SRC="/images/pixel.gif" HEIGHT="1" WIDTH="1" ALT=""></TD>  </TR>    <TR>    <TD>    <CENTER>    <FONT SIZE="-2" FACE="Verdana, Arial, Helvetica, sans-serif">    <A HREF="http://java.sun.com/products/">Products &amp; APIs</A> |     <A HREF="/developer/index.html">Developer Connection</A> |     <A HREF="/developer/infodocs/index.shtml">Docs &amp; Training</A> |     <A HREF="/developer/support/index.html">Online Support</A><BR>    <A HREF="/developer/community/index.html">Community Discussion</A> |    <A HREF="http://java.sun.com/industry/">Industry News</A> |     <A HREF="http://java.sun.com/solutions">Solutions Marketplace</A> |     <A HREF="http://java.sun.com/casestudies">Case Studies</A>    </FONT>    </CENTER>    </TD>  </TR>    <TR>    <TD BGCOLOR="#CCCCCC">    <IMG SRC="/images/pixel.gif" HEIGHT="1" WIDTH="1" ALT=""></TD>  </TR>  <TR>    <TD ALIGN="CENTER">    <FONT SIZE="-2" FACE="Verdana, Arial, Helvetica, sans-serif">    <A HREF="http://java.sun.com/docs/glossary.html">Glossary</A> -     <A HREF="http://java.sun.com/applets/">Applets</A> -     <A HREF="http://java.sun.com/docs/books/tutorial/">Tutorial</A> -     <A HREF="http://java.sun.com/jobs/">Employment</A> -     <A HREF="http://java.sun.com/nav/business/">Business &amp; Licensing</A> -     <A HREF="http://java.sun.com/javastore/">Java Store</A> -    <A HREF="http://java.sun.com/casestudies/">Java in the Real World</A>    </FONT>    </TD>  </TR>  <TR>    <TD>    <CENTER>    <FONT SIZE="-2" FACE="Verdana, Arial, Helvetica, sans-serif">    <a href="/siteinfo/faq.html">FAQ</a> |    <a href="/feedback/index.html">Feedback</a> |     <a href="http://www.dynamicdiagrams.net/mapa/cgi-bin/help.tcl?db=javasoft&dest=http://java.sun.com/">Map</a> |     <A HREF="http://java.sun.com/a-z/index.html">A-Z Index</A>    </FONT>    </CENTER>    </TD>  </TR>    <TR>    <TD>    <TABLE WIDTH="100%" CELLPADDING="0" BORDER="0" CELLSPACING="0">      <TR>        <TD WIDTH="50%">        <FONT SIZE="-2" FACE="Verdana, Arial, Helvetica, sans-serif">        For more information on Java technology<BR>        and other software from Sun Microsystems, call:<BR>        </FONT>        <FONT SIZE="-1" FACE="Verdana, Arial, Helvetica, sans-serif">        (800) 786-7638<BR></FONT>        <FONT SIZE="-2" FACE="Verdana, Arial, Helvetica, sans-serif">        Outside the U.S. and Canada, dial your country's         <A HREF="http://www.att.com/business_traveler/attdirecttollfree/">AT&amp;T&nbsp;Direct&nbsp;Access&nbsp;Number</A> first.<BR>        </FONT>        </TD>        <TD ALIGN="RIGHT" WIDTH="50%">        <A HREF="http://www.sun.com"><IMG SRC="/images/lgsun.gif" width="64" height="30" border="0" ALT="Sun Microsystems, Inc."></A><BR>        <FONT SIZE="-2" FACE="Verdana, Arial, Helvetica, sans-serif">        Copyright &copy; 1995-99        <A HREF="http://www.sun.com">Sun Microsystems, Inc.</A><BR>        All Rights Reserved.         <a href="http://www.sun.com/share/text/SMICopyright.html">Legal Terms</a>.         <A HREF="http://www.sun.com/privacy/">Privacy&nbsp;Policy</A>.        </FONT>        </TD>      </TR>    </TABLE>	    </TD>  </TR> </TABLE></FORM><!-- End Copyright Insert --></BODY></HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -