-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
None
-
1.1.5, 1.1.8_003, 1.3.0
-
sparc
-
solaris_2.5.1, solaris_7
Name: joT67522 Date: 01/06/98
Run the following code
import java.awt.*;
import java.awt.event.*;
public class MyFrame extends Frame
{
class Field extends TextField
{
boolean focus = false;
public Field(int length)
{
super(length);
setFont(new Font("Courier",12,Font.PLAIN));
setText("Test Text");
}
public boolean isFocusTraversable()
{
return focus;
}
public void setFocusTraversable(boolean flag)
{
focus = flag;
}
}
class comp extends Panel{
Choice choice,choice2;
public comp(){
setLayout(new GridLayout(7,9));
add(choice = new Choice());
add(choice2 = new Choice());
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
add(new Field(10));
choice.add("item 1");
choice.add("item 2");
choice.add("item 3");
choice.add("item 4");
choice.add("item 5");
choice2.add("item 1");
choice2.add("item 2");
choice2.add("item 3");
choice2.add("item 4");
choice2.add("item 5");
}
}
public MyFrame() {
super();
add("West",new comp());
}
public Insets getInsets()
{
return new Insets(50,50,50,50);
}
public static void main(String [] args) {
MyFrame f = new MyFrame();
f.pack();
f.setVisible(true);
}
}
Problems:
1. When Frame becomes visible, choice number 1 in the (1,1) cell
of the grid does not get focus automatically, but it does get focus
under the same circumstances on WinNT.
2. When focus is on Choice number 1 and Frame is resized,
this choice looses focus. Focus should be returned to
Choice number 1 after the resize but it isn't. It is
however returned to Choice number 1 on winNT under the same circumstances.
3. Notice that all of the TextFields return false from isFocusTraversable()
indicating that they should not get focus under keyboard traversal
using TAB or SHIFT-TAB. If you keep the mouse over the
Frame, the traversal using keyboard works properly.
If you move mouse out of the Frame, keyboard traversal
gets REALLY MESSED UP.
a. on TAB, the TextField in the cell (0,2) to the right
of Choice number 2 gets focus but is shouldn't. No other TextFields
get focus on subsequent TAB presses. So the only components
that will be traversed are the two Choices and the TextField in the
cell (0,2).
b . on SHIFT-TAB the TextField in the very last cell (bottom
right corner of grid) will receive focus. No other TextFields
get focus on subsequent SHIFT-TAB presses. SO now the components
traversed using SHIFT-TAB are the two choices and the
Text Field in the cell described above.
None of this happens on WinNT.
I am running Solaris 2.5 on Sparc station 5 with
DCE (Common Desktop Environment) window manager.
(Review ID: 22725)
======================================================================
- relates to
-
JDK-4060975 Focus is set to the first component after resizing main window.
-
- Closed
-