This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 22776 - Views on Debugger window are not switchable by shortcuts
Summary: Views on Debugger window are not switchable by shortcuts
Status: CLOSED FIXED
Alias: None
Product: debugger
Classification: Unclassified
Component: Code (show other bugs)
Version: 3.x
Hardware: PC Linux
: P3 blocker (vote)
Assignee: issues@debugger
URL:
Keywords: A11Y, UI
: 25747 (view as bug list)
Depends on:
Blocks:
 
Reported: 2002-04-25 10:17 UTC by Milan Kubec
Modified: 2003-06-30 17:29 UTC (History)
2 users (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Milan Kubec 2002-04-25 10:17:31 UTC
Views on Debugger Window should be switchable by
shortcuts. And also visibility modifier buttons
should use shortcuts, the same case is in Auto
Comment tool where the same buttons are used with
shortcuts (Alt+<number>).
Comment 1 Milan Kubec 2002-05-03 08:50:23 UTC
OK, changing to defect, since it's actally Accessibility defect.
Comment 2 Jan Jancura 2002-07-19 09:01:28 UTC
*** Issue 25747 has been marked as a duplicate of this issue. ***
Comment 3 Jan Jancura 2002-07-19 12:45:21 UTC
fixed in the main trunk - trivial change

cvs diff -r 1.8 -r 1.9 ModifiersFilterPanel.java (in directory
E:\DEV\trunk\nb_all\debuggercore\src\org\netbeans\modules\debugger\support\java\)
Index: ModifiersFilterPanel.java
===================================================================
RCS file:
/cvs/debuggercore/src/org/netbeans/modules/debugger/support/java/ModifiersFilterPanel.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -r1.8 -r1.9
70a71
>         jtbPublic.setMnemonic (JavaDebugger.getString
("CTL_Public_modifier_mnemonic").charAt (0));
80a82
>         jtbProtected.setMnemonic (JavaDebugger.getString
("CTL_Protected_modifier_mnemonic").charAt (0));
90a93
>         jtbPrivate.setMnemonic (JavaDebugger.getString
("CTL_Private_modifier_mnemonic").charAt (0));
100a104
>         jtbPackagePrivate.setMnemonic (JavaDebugger.getString
("CTL_Package_private_modifier_mnemonic").charAt (0));
110a115
>         jtbStatic.setMnemonic (JavaDebugger.getString
("CTL_Static_modifier_mnemonic").charAt (0));
127a133
>         jtbInherited.setMnemonic (JavaDebugger.getString
("CTL_Inherited_modifier_mnemonic").charAt (0));

*****CVS exited normally with code 1*****

cvs diff -r 1.10 -r 1.13 ToolbarView.java (in directory
E:\DEV\trunk\nb_all\debuggercore\src\org\netbeans\modules\debugger\support\nodes\)
Index: ToolbarView.java
===================================================================
RCS file:
/cvs/debuggercore/src/org/netbeans/modules/debugger/support/nodes/ToolbarView.java,v
retrieving revision 1.10
retrieving revision 1.13
diff -r1.10 -r1.13
77,79d76
<             toolBar.setLayout (
<                 new java.awt.FlowLayout (java.awt.FlowLayout.LEFT, 0, 0)
<             );
94c91
<             "/org/netbeans/core/resources/variables.gif" // NOI18N
---
>            
"/org/netbeans/modules/debugger/resources/watchesView/Varianle.gif" //
NOI18N
192a190
>         char m = '1';
214a213,215
>             b.setMnemonic (m);
>             m++;
>             if (m == ('9' + 1)) m = 'a';

*****CVS exited normally with code 1*****
Comment 5 Tomas Pavek 2002-07-19 14:26:40 UTC
Reviewed. Looks good.
Comment 6 Jan Jancura 2002-07-22 13:13:43 UTC
fixed in release34
Comment 7 Milan Kubec 2002-10-17 10:57:51 UTC
Verified.
Comment 8 Quality Engineering 2003-06-30 17:29:33 UTC
Resolved for 3.3.x or earlier, no new info since then -> closing.