|
SORTIE Java Interface
1
|
This class creates a JPanel that scrolls at a normal speed through a JScrollPane. More...
Public Member Functions | |
| Dimension | getPreferredScrollableViewportSize () |
| Get preferred size - this is nothing special. | |
| int | getScrollableBlockIncrement (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. | |
This class creates a JPanel that scrolls at a normal speed through a JScrollPane.
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: Cary Institute of Ecosystem Studies
| Dimension sortie.gui.behaviorsetup.QuickScrollingPanel.getPreferredScrollableViewportSize | ( | ) |
Get preferred size - this is nothing special.
| int sortie.gui.behaviorsetup.QuickScrollingPanel.getScrollableBlockIncrement | ( | 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 sortie.gui.behaviorsetup.QuickScrollingPanel.getScrollableTracksViewportHeight | ( | ) |
Always false.
| boolean sortie.gui.behaviorsetup.QuickScrollingPanel.getScrollableTracksViewportWidth | ( | ) |
Always false.
| int sortie.gui.behaviorsetup.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 |
1.8.2