Java Code Examples for java.awt.event.MouseWheelEvent#WHEEL_BLOCK_SCROLL
The following examples show how to use
java.awt.event.MouseWheelEvent#WHEEL_BLOCK_SCROLL .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ScrollPaneWheelScroller.java From Bytecoder with Apache License 2.0 | 6 votes |
public static int getIncrementFromAdjustable(Adjustable adj, MouseWheelEvent e) { if (log.isLoggable(PlatformLogger.Level.FINE)) { if (adj == null) { log.fine("Assertion (adj != null) failed"); } } int increment = 0; if (e.getScrollType() == MouseWheelEvent.WHEEL_UNIT_SCROLL) { increment = e.getUnitsToScroll() * adj.getUnitIncrement(); } else if (e.getScrollType() == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { increment = adj.getBlockIncrement() * e.getWheelRotation(); } return increment; }
Example 2
Source File: ScrollPaneWheelScroller.java From openjdk-8 with GNU General Public License v2.0 | 6 votes |
public static int getIncrementFromAdjustable(Adjustable adj, MouseWheelEvent e) { if (log.isLoggable(PlatformLogger.Level.FINE)) { if (adj == null) { log.fine("Assertion (adj != null) failed"); } } int increment = 0; if (e.getScrollType() == MouseWheelEvent.WHEEL_UNIT_SCROLL) { increment = e.getUnitsToScroll() * adj.getUnitIncrement(); } else if (e.getScrollType() == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { increment = adj.getBlockIncrement() * e.getWheelRotation(); } return increment; }
Example 3
Source File: ScrollPaneWheelScroller.java From hottub with GNU General Public License v2.0 | 6 votes |
public static int getIncrementFromAdjustable(Adjustable adj, MouseWheelEvent e) { if (log.isLoggable(PlatformLogger.Level.FINE)) { if (adj == null) { log.fine("Assertion (adj != null) failed"); } } int increment = 0; if (e.getScrollType() == MouseWheelEvent.WHEEL_UNIT_SCROLL) { increment = e.getUnitsToScroll() * adj.getUnitIncrement(); } else if (e.getScrollType() == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { increment = adj.getBlockIncrement() * e.getWheelRotation(); } return increment; }
Example 4
Source File: ScrollPaneWheelScroller.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
public static int getIncrementFromAdjustable(Adjustable adj, MouseWheelEvent e) { if (log.isLoggable(PlatformLogger.Level.FINE)) { if (adj == null) { log.fine("Assertion (adj != null) failed"); } } int increment = 0; if (e.getScrollType() == MouseWheelEvent.WHEEL_UNIT_SCROLL) { increment = e.getUnitsToScroll() * adj.getUnitIncrement(); } else if (e.getScrollType() == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { increment = adj.getBlockIncrement() * e.getWheelRotation(); } return increment; }
Example 5
Source File: ScrollPaneWheelScroller.java From jdk8u_jdk with GNU General Public License v2.0 | 6 votes |
public static int getIncrementFromAdjustable(Adjustable adj, MouseWheelEvent e) { if (log.isLoggable(PlatformLogger.Level.FINE)) { if (adj == null) { log.fine("Assertion (adj != null) failed"); } } int increment = 0; if (e.getScrollType() == MouseWheelEvent.WHEEL_UNIT_SCROLL) { increment = e.getUnitsToScroll() * adj.getUnitIncrement(); } else if (e.getScrollType() == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { increment = adj.getBlockIncrement() * e.getWheelRotation(); } return increment; }
Example 6
Source File: ScrollPaneWheelScroller.java From dragonwell8_jdk with GNU General Public License v2.0 | 6 votes |
public static int getIncrementFromAdjustable(Adjustable adj, MouseWheelEvent e) { if (log.isLoggable(PlatformLogger.Level.FINE)) { if (adj == null) { log.fine("Assertion (adj != null) failed"); } } int increment = 0; if (e.getScrollType() == MouseWheelEvent.WHEEL_UNIT_SCROLL) { increment = e.getUnitsToScroll() * adj.getUnitIncrement(); } else if (e.getScrollType() == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { increment = adj.getBlockIncrement() * e.getWheelRotation(); } return increment; }
Example 7
Source File: ScrollPaneWheelScroller.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
public static int getIncrementFromAdjustable(Adjustable adj, MouseWheelEvent e) { if (log.isLoggable(PlatformLogger.Level.FINE)) { if (adj == null) { log.fine("Assertion (adj != null) failed"); } } int increment = 0; if (e.getScrollType() == MouseWheelEvent.WHEEL_UNIT_SCROLL) { increment = e.getUnitsToScroll() * adj.getUnitIncrement(); } else if (e.getScrollType() == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { increment = adj.getBlockIncrement() * e.getWheelRotation(); } return increment; }
Example 8
Source File: ScrollPaneWheelScroller.java From jdk8u-jdk with GNU General Public License v2.0 | 6 votes |
public static int getIncrementFromAdjustable(Adjustable adj, MouseWheelEvent e) { if (log.isLoggable(PlatformLogger.Level.FINE)) { if (adj == null) { log.fine("Assertion (adj != null) failed"); } } int increment = 0; if (e.getScrollType() == MouseWheelEvent.WHEEL_UNIT_SCROLL) { increment = e.getUnitsToScroll() * adj.getUnitIncrement(); } else if (e.getScrollType() == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { increment = adj.getBlockIncrement() * e.getWheelRotation(); } return increment; }
Example 9
Source File: ScrollPaneWheelScroller.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
public static int getIncrementFromAdjustable(Adjustable adj, MouseWheelEvent e) { if (log.isLoggable(PlatformLogger.Level.FINE)) { if (adj == null) { log.fine("Assertion (adj != null) failed"); } } int increment = 0; if (e.getScrollType() == MouseWheelEvent.WHEEL_UNIT_SCROLL) { increment = e.getUnitsToScroll() * adj.getUnitIncrement(); } else if (e.getScrollType() == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { increment = adj.getBlockIncrement() * e.getWheelRotation(); } return increment; }
Example 10
Source File: ListHelper.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
static boolean doWheelScroll(XVerticalScrollbar vsb, XHorizontalScrollbar hsb, MouseWheelEvent e) { XScrollbar scroll = null; int wheelRotation; // Determine which, if any, sb to scroll if (vsb != null) { scroll = vsb; } else if (hsb != null) { scroll = hsb; } else { // Neither scrollbar is showing return false; } wheelRotation = e.getWheelRotation(); // Check if scroll is necessary if ((wheelRotation < 0 && scroll.getValue() > scroll.getMinimum()) || (wheelRotation > 0 && scroll.getValue() < scroll.getMaximum()) || wheelRotation != 0) { int type = e.getScrollType(); int incr; if (type == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { incr = wheelRotation * scroll.getBlockIncrement(); } else { // type is WHEEL_UNIT_SCROLL incr = e.getUnitsToScroll() * scroll.getUnitIncrement(); } scroll.setValue(scroll.getValue() + incr); return true; } return false; }
Example 11
Source File: ListHelper.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
static boolean doWheelScroll(XVerticalScrollbar vsb, XHorizontalScrollbar hsb, MouseWheelEvent e) { XScrollbar scroll = null; int wheelRotation; // Determine which, if any, sb to scroll if (vsb != null) { scroll = vsb; } else if (hsb != null) { scroll = hsb; } else { // Neither scrollbar is showing return false; } wheelRotation = e.getWheelRotation(); // Check if scroll is necessary if ((wheelRotation < 0 && scroll.getValue() > scroll.getMinimum()) || (wheelRotation > 0 && scroll.getValue() < scroll.getMaximum()) || wheelRotation != 0) { int type = e.getScrollType(); int incr; if (type == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { incr = wheelRotation * scroll.getBlockIncrement(); } else { // type is WHEEL_UNIT_SCROLL incr = e.getUnitsToScroll() * scroll.getUnitIncrement(); } scroll.setValue(scroll.getValue() + incr); return true; } return false; }
Example 12
Source File: ListHelper.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
static boolean doWheelScroll(XVerticalScrollbar vsb, XHorizontalScrollbar hsb, MouseWheelEvent e) { XScrollbar scroll = null; int wheelRotation; // Determine which, if any, sb to scroll if (vsb != null) { scroll = vsb; } else if (hsb != null) { scroll = hsb; } else { // Neither scrollbar is showing return false; } wheelRotation = e.getWheelRotation(); // Check if scroll is necessary if ((wheelRotation < 0 && scroll.getValue() > scroll.getMinimum()) || (wheelRotation > 0 && scroll.getValue() < scroll.getMaximum()) || wheelRotation != 0) { int type = e.getScrollType(); int incr; if (type == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { incr = wheelRotation * scroll.getBlockIncrement(); } else { // type is WHEEL_UNIT_SCROLL incr = e.getUnitsToScroll() * scroll.getUnitIncrement(); } scroll.setValue(scroll.getValue() + incr); return true; } return false; }
Example 13
Source File: JBinaryViewer.java From freeinternals with Apache License 2.0 | 5 votes |
@Override public void mouseWheelMoved(final MouseWheelEvent e) { switch (e.getScrollType()) { case MouseWheelEvent.WHEEL_UNIT_SCROLL: JBinaryViewer.this.vBar.setValue( JBinaryViewer.this.vBar.getValue() + e.getUnitsToScroll()); break; case MouseWheelEvent.WHEEL_BLOCK_SCROLL: break; default: break; } }
Example 14
Source File: ListHelper.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 5 votes |
static boolean doWheelScroll(XVerticalScrollbar vsb, XHorizontalScrollbar hsb, MouseWheelEvent e) { XScrollbar scroll = null; int wheelRotation; // Determine which, if any, sb to scroll if (vsb != null) { scroll = vsb; } else if (hsb != null) { scroll = hsb; } else { // Neither scrollbar is showing return false; } wheelRotation = e.getWheelRotation(); // Check if scroll is necessary if ((wheelRotation < 0 && scroll.getValue() > scroll.getMinimum()) || (wheelRotation > 0 && scroll.getValue() < scroll.getMaximum()) || wheelRotation != 0) { int type = e.getScrollType(); int incr; if (type == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { incr = wheelRotation * scroll.getBlockIncrement(); } else { // type is WHEEL_UNIT_SCROLL incr = e.getUnitsToScroll() * scroll.getUnitIncrement(); } scroll.setValue(scroll.getValue() + incr); return true; } return false; }
Example 15
Source File: ListHelper.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
static boolean doWheelScroll(XVerticalScrollbar vsb, XHorizontalScrollbar hsb, MouseWheelEvent e) { XScrollbar scroll = null; int wheelRotation; // Determine which, if any, sb to scroll if (vsb != null) { scroll = vsb; } else if (hsb != null) { scroll = hsb; } else { // Neither scrollbar is showing return false; } wheelRotation = e.getWheelRotation(); // Check if scroll is necessary if ((wheelRotation < 0 && scroll.getValue() > scroll.getMinimum()) || (wheelRotation > 0 && scroll.getValue() < scroll.getMaximum()) || wheelRotation != 0) { int type = e.getScrollType(); int incr; if (type == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { incr = wheelRotation * scroll.getBlockIncrement(); } else { // type is WHEEL_UNIT_SCROLL incr = e.getUnitsToScroll() * scroll.getUnitIncrement(); } scroll.setValue(scroll.getValue() + incr); return true; } return false; }
Example 16
Source File: ListHelper.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
static boolean doWheelScroll(XVerticalScrollbar vsb, XHorizontalScrollbar hsb, MouseWheelEvent e) { XScrollbar scroll = null; int wheelRotation; // Determine which, if any, sb to scroll if (vsb != null) { scroll = vsb; } else if (hsb != null) { scroll = hsb; } else { // Neither scrollbar is showing return false; } wheelRotation = e.getWheelRotation(); // Check if scroll is necessary if ((wheelRotation < 0 && scroll.getValue() > scroll.getMinimum()) || (wheelRotation > 0 && scroll.getValue() < scroll.getMaximum()) || wheelRotation != 0) { int type = e.getScrollType(); int incr; if (type == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { incr = wheelRotation * scroll.getBlockIncrement(); } else { // type is WHEEL_UNIT_SCROLL incr = e.getUnitsToScroll() * scroll.getUnitIncrement(); } scroll.setValue(scroll.getValue() + incr); return true; } return false; }
Example 17
Source File: ListHelper.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
static boolean doWheelScroll(XVerticalScrollbar vsb, XHorizontalScrollbar hsb, MouseWheelEvent e) { XScrollbar scroll = null; int wheelRotation; // Determine which, if any, sb to scroll if (vsb != null) { scroll = vsb; } else if (hsb != null) { scroll = hsb; } else { // Neither scrollbar is showing return false; } wheelRotation = e.getWheelRotation(); // Check if scroll is necessary if ((wheelRotation < 0 && scroll.getValue() > scroll.getMinimum()) || (wheelRotation > 0 && scroll.getValue() < scroll.getMaximum()) || wheelRotation != 0) { int type = e.getScrollType(); int incr; if (type == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { incr = wheelRotation * scroll.getBlockIncrement(); } else { // type is WHEEL_UNIT_SCROLL incr = e.getUnitsToScroll() * scroll.getUnitIncrement(); } scroll.setValue(scroll.getValue() + incr); return true; } return false; }
Example 18
Source File: ListHelper.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
static boolean doWheelScroll(XVerticalScrollbar vsb, XHorizontalScrollbar hsb, MouseWheelEvent e) { XScrollbar scroll = null; int wheelRotation; // Determine which, if any, sb to scroll if (vsb != null) { scroll = vsb; } else if (hsb != null) { scroll = hsb; } else { // Neither scrollbar is showing return false; } wheelRotation = e.getWheelRotation(); // Check if scroll is necessary if ((wheelRotation < 0 && scroll.getValue() > scroll.getMinimum()) || (wheelRotation > 0 && scroll.getValue() < scroll.getMaximum()) || wheelRotation != 0) { int type = e.getScrollType(); int incr; if (type == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { incr = wheelRotation * scroll.getBlockIncrement(); } else { // type is WHEEL_UNIT_SCROLL incr = e.getUnitsToScroll() * scroll.getUnitIncrement(); } scroll.setValue(scroll.getValue() + incr); return true; } return false; }
Example 19
Source File: ListHelper.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
static boolean doWheelScroll(XVerticalScrollbar vsb, XHorizontalScrollbar hsb, MouseWheelEvent e) { XScrollbar scroll = null; int wheelRotation; // Determine which, if any, sb to scroll if (vsb != null) { scroll = vsb; } else if (hsb != null) { scroll = hsb; } else { // Neither scrollbar is showing return false; } wheelRotation = e.getWheelRotation(); // Check if scroll is necessary if ((wheelRotation < 0 && scroll.getValue() > scroll.getMinimum()) || (wheelRotation > 0 && scroll.getValue() < scroll.getMaximum()) || wheelRotation != 0) { int type = e.getScrollType(); int incr; if (type == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { incr = wheelRotation * scroll.getBlockIncrement(); } else { // type is WHEEL_UNIT_SCROLL incr = e.getUnitsToScroll() * scroll.getUnitIncrement(); } scroll.setValue(scroll.getValue() + incr); return true; } return false; }
Example 20
Source File: ListHelper.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
static boolean doWheelScroll(XVerticalScrollbar vsb, XHorizontalScrollbar hsb, MouseWheelEvent e) { XScrollbar scroll = null; int wheelRotation; // Determine which, if any, sb to scroll if (vsb != null) { scroll = vsb; } else if (hsb != null) { scroll = hsb; } else { // Neither scrollbar is showing return false; } wheelRotation = e.getWheelRotation(); // Check if scroll is necessary if ((wheelRotation < 0 && scroll.getValue() > scroll.getMinimum()) || (wheelRotation > 0 && scroll.getValue() < scroll.getMaximum()) || wheelRotation != 0) { int type = e.getScrollType(); int incr; if (type == MouseWheelEvent.WHEEL_BLOCK_SCROLL) { incr = wheelRotation * scroll.getBlockIncrement(); } else { // type is WHEEL_UNIT_SCROLL incr = e.getUnitsToScroll() * scroll.getUnitIncrement(); } scroll.setValue(scroll.getValue() + incr); return true; } return false; }