JDK-4356268 : MouseEvent constants for MouseWheel support
  • Type: Enhancement
  • Component: client-libs
  • Sub-Component: java.awt
  • Affected Version: 1.4.0
  • Priority: P3
  • Status: Closed
  • Resolution: Fixed
  • OS: solaris_7
  • CPU: sparc
  • Submitted: 2000-07-25
  • Updated: 2000-08-10
  • Resolved: 2000-08-10
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
1.4.0 betaFixed
Related Reports
Relates :  
Relates :  
Description
In order to support mice with wheels in Java, 1 new constant (MOUSE_WHEEL) must be added to the java.awt.MouseEvent class, and 1 constant value (MOUSE_LAST) needs to be changed.  These changes were left out of the original CCC request (4289845: Mouse Wheel Support).

105c105
<     public static final int MOUSE_LAST          = 506;
---
>     public static final int MOUSE_LAST          = 507;

151,157d150
>      * The "mouse wheel" event.  This is the only MouseWheelEvent. 
>      * It occurs when a mouse equipped with a wheel has it's wheel rotated.
>      * @since 1.4
>      */
>     public static final int MOUSE_WHEEL = 7 + MOUSE_FIRST; //Event.MOUSE_WHEEL
>


Comments
CONVERTED DATA BugTraq+ Release Management Values COMMIT TO FIX: merlin-beta FIXED IN: merlin-beta INTEGRATED IN: merlin-beta
14-06-2004

EVALUATION Implementation of this RFE will be trivial. brent.christian@eng 2000-07-31 Approved by the CCC on 31 Jul, 2000. Already putback with RFE 4289845. brent.christian@eng 2000-08-10
31-07-2000