-
Bug
-
Resolution: Fixed
-
P4
-
1.1.2
-
1.1.6
-
sparc
-
solaris_2.5.1
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2016762 | 1.2.0 | Xianfa Deng | P4 | Resolved | Fixed | 1.2beta3 |
Name: joT67522 Date: 09/02/97
1. Construct a scrollbar, and add it to your panel; add
yourself as an AdjustmentListener.
2. Do ctl-left-mouse in the scrollbar trough.
3. The adjustmentValueChanged() method isn't called.
NOTE: in Motif, these are the XmCR_TO_TOP and XmCR_TO_BOTTOM
events.
class WGFrameSummaryData extends Panel
implements JCSelectListener,
AdjustmentListener
{
...
_sb = new Scrollbar();
_sb.addAdjustmentListener(this);
setLayout(new BorderLayout());
...
add(_sb, "East");
}
...
public void adjustmentValueChanged(AdjustmentEvent e)
{
// NOTE: to-top and to-bottem events are not supplied!
System.out.println("adjustmentValueChanged() " + e.getAdjustmentType());
System.out.println("\t"+e.getValue());
}
company - Wandel & Goltermann , email - ###@###.###
======================================================================
- backported by
-
JDK-2016762 Ctrl-click in Scrollbar moves slider to top/bottom but no event is generated.
-
- Resolved
-