📄 basicscrollpaneui.java
字号:
/* BasicScrollPaneUI.java Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING. If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library. Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule. An independent module is a module which is not derived fromor based on this library. If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so. If you do not wish to do so, delete thisexception statement from your version. */package javax.swing.plaf.basic;import java.awt.Dimension;import java.awt.Graphics;import java.awt.Point;import java.awt.event.MouseWheelEvent;import java.awt.event.MouseWheelListener;import java.beans.PropertyChangeEvent;import java.beans.PropertyChangeListener;import javax.swing.JComponent;import javax.swing.JScrollBar;import javax.swing.JScrollPane;import javax.swing.JViewport;import javax.swing.LookAndFeel;import javax.swing.ScrollPaneConstants;import javax.swing.ScrollPaneLayout;import javax.swing.event.ChangeEvent;import javax.swing.event.ChangeListener;import javax.swing.plaf.ComponentUI;import javax.swing.plaf.ScrollPaneUI;public class BasicScrollPaneUI extends ScrollPaneUI implements ScrollPaneConstants{ /** * Listens for changes in the state of the horizontal scrollbar's model and * updates the scrollpane accordingly. * * @author Roman Kennke (kennke@aicas.com) */ public class HSBChangeListener implements ChangeListener { /** * Receives notification when the state of the horizontal scrollbar * model has changed. * * @param event the change event */ public void stateChanged(ChangeEvent event) { JScrollBar hsb = scrollpane.getHorizontalScrollBar(); JViewport vp = scrollpane.getViewport(); Point viewPosition = vp.getViewPosition(); int xpos = hsb.getValue(); if (xpos != viewPosition.x) { viewPosition.x = xpos; vp.setViewPosition(viewPosition); } viewPosition.y = 0; JViewport columnHeader = scrollpane.getColumnHeader(); if (columnHeader != null && !columnHeader.getViewPosition().equals(viewPosition)) columnHeader.setViewPosition(viewPosition); } } /** * Listens for changes in the state of the vertical scrollbar's model and * updates the scrollpane accordingly. * * @author Roman Kennke (kennke@aicas.com) */ public class VSBChangeListener implements ChangeListener { /** * Receives notification when the state of the vertical scrollbar * model has changed. * * @param event the change event */ public void stateChanged(ChangeEvent event) { JScrollBar vsb = scrollpane.getVerticalScrollBar(); JViewport vp = scrollpane.getViewport(); Point viewPosition = vp.getViewPosition(); int ypos = vsb.getValue(); if (ypos != viewPosition.y) { viewPosition.y = ypos; vp.setViewPosition(viewPosition); } viewPosition.x = 0; JViewport rowHeader = scrollpane.getRowHeader(); if (rowHeader != null && !rowHeader.getViewPosition().equals(viewPosition)) rowHeader.setViewPosition(viewPosition); } } /** * Listens for changes of the viewport's extent size and updates the * scrollpane accordingly. * * @author Roman Kennke (kennke@aicas.com) */ public class ViewportChangeHandler implements ChangeListener { /** * Receives notification when the view's size, position or extent size * changes. When the extents size has changed, this method calls * {@link BasicScrollPaneUI#syncScrollPaneWithViewport()} to adjust the * scrollbars extents as well. * * @param event the change event */ public void stateChanged(ChangeEvent event) { JViewport vp = scrollpane.getViewport(); JScrollBar hsb = scrollpane.getHorizontalScrollBar(); JScrollBar vsb = scrollpane.getVerticalScrollBar(); syncScrollPaneWithViewport(); } } /** * Listens for property changes on the scrollpane and update the view * accordingly. * * @author Roman Kennke (kennke@aicas.com) */ public class PropertyChangeHandler implements PropertyChangeListener { /** * Receives notification when any of the scrollpane's bound property * changes. This method calls the appropriate update method on the * <code>ScrollBarUI</code>. * * @param e the property change event * * @see BasicScrollPaneUI#updateColumnHeader(PropertyChangeEvent) * @see BasicScrollPaneUI#updateRowHeader(PropertyChangeEvent) * @see BasicScrollPaneUI#updateScrollBarDisplayPolicy(PropertyChangeEvent) * @see BasicScrollPaneUI#updateViewport(PropertyChangeEvent) */ public void propertyChange(PropertyChangeEvent e) { String propName = e.getPropertyName(); if (propName.equals("viewport")) updateViewport(e); else if (propName.equals("rowHeader")) updateRowHeader(e); else if (propName.equals("columnHeader")) updateColumnHeader(e); else if (propName.equals("horizontalScrollBarPolicy") || e.getPropertyName().equals("verticalScrollBarPolicy")) updateScrollBarDisplayPolicy(e); else if (propName.equals("verticalScrollBar")) { JScrollBar oldSb = (JScrollBar) e.getOldValue(); oldSb.getModel().removeChangeListener(vsbChangeListener); JScrollBar newSb = (JScrollBar) e.getNewValue(); newSb.getModel().addChangeListener(vsbChangeListener); } else if (propName.equals("horizontalScrollBar")) { JScrollBar oldSb = (JScrollBar) e.getOldValue(); oldSb.getModel().removeChangeListener(hsbChangeListener); JScrollBar newSb = (JScrollBar) e.getNewValue(); newSb.getModel().addChangeListener(hsbChangeListener); } } } /** * Listens for mouse wheel events and update the scrollpane accordingly. * * @author Roman Kennke (kennke@aicas.com) * * @since 1.4 */ protected class MouseWheelHandler implements MouseWheelListener { /** * Receives notification whenever the mouse wheel is moved. * * @param event the mouse wheel event */ public void mouseWheelMoved(MouseWheelEvent event) { // TODO: Implement this properly. } } /** The Scrollpane for which the UI is provided by this class. */ protected JScrollPane scrollpane; /** * The horizontal scrollbar listener. */ protected ChangeListener hsbChangeListener; /** * The vertical scrollbar listener. */ protected ChangeListener vsbChangeListener; /** * The viewport listener. */ protected ChangeListener viewportChangeListener; /** * The scrollpane property change listener. */ protected PropertyChangeListener spPropertyChangeListener; /** * The mousewheel listener for the scrollpane.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -