📄 abstractscrollable.java
字号:
package sim.util.gui;import javax.swing.*;import java.awt.*;/** AbstractScrollable is a JPanel with basic implementation of the Scrollable interface, making possible simple anonymous subclasses. */ public abstract class AbstractScrollable extends JPanel implements Scrollable { public Dimension getPreferredScrollableViewportSize() { return super.getPreferredSize(); } public int getScrollableUnitIncrement(Rectangle visibleRect, int orientation, int direction) { // twentieth a page return (visibleRect.height / 20); } public int getScrollableBlockIncrement(Rectangle visibleRect, int orientation, int direction) { // half of a page return (visibleRect.height/2); } public boolean getScrollableTracksViewportWidth() { return false; } public boolean getScrollableTracksViewportHeight() { return false; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -