Inherits javax::swing::JPanel.
Public Member Functions | |
java.awt.Dimension | getPreferredScrollableViewportSize () |
Get preferred size - this is nothing special. | |
int | getScrollableBlockIncrement (java.awt.Rectangle r, int orientation, int direction) |
Scrolls 75% of the visible pane when paging up or down. | |
boolean | getScrollableTracksViewportHeight () |
Always false. | |
boolean | getScrollableTracksViewportWidth () |
Always false. | |
int | getScrollableUnitIncrement (java.awt.Rectangle r, int orientation, int direction) |
Causes scrolling to go 20 pixels at a time when scrolling continuously. | |
Static Package Attributes | |
static final long | serialVersionUID = 1 |
The default scrolling increment for a JPanel is 1 pixel at a time, which is wicked slow. This boosts that number to make scrolling faster.
Copyright: Copyright (c) Charles D. Canham 2003
Company: Institute of Ecosystem Studies
java.awt.Dimension javawrapper.QuickScrollingPanel.getPreferredScrollableViewportSize | ( | ) |
Get preferred size - this is nothing special.
int javawrapper.QuickScrollingPanel.getScrollableBlockIncrement | ( | java.awt.Rectangle | r, | |
int | orientation, | |||
int | direction | |||
) |
Scrolls 75% of the visible pane when paging up or down.
r | Rectangle Ignored | |
orientation | int Ignored | |
direction | int Ignored |
boolean javawrapper.QuickScrollingPanel.getScrollableTracksViewportHeight | ( | ) |
Always false.
boolean javawrapper.QuickScrollingPanel.getScrollableTracksViewportWidth | ( | ) |
Always false.
int javawrapper.QuickScrollingPanel.getScrollableUnitIncrement | ( | java.awt.Rectangle | r, | |
int | orientation, | |||
int | direction | |||
) |
Causes scrolling to go 20 pixels at a time when scrolling continuously.
r | Rectangle Ignored | |
orientation | int Ignored | |
direction | int Ignored |
final long javawrapper.QuickScrollingPanel.serialVersionUID = 1 [static, package] |