-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
5.0
-
x86
-
linux
FULL PRODUCT VERSION :
java version "1.5.0_04"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_04-b05)
Java HotSpot(TM) Client VM (build 1.5.0_04-b05, mixed mode, sharing)
ADDITIONAL OS VERSION INFORMATION :
SuSE 10.0
A DESCRIPTION OF THE PROBLEM :
A correctly working JTable that allows column resizing should show a resize cursor when the mouse is in between two columns.
However, this is not the case when the JTable is inside a JDialog.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import javax.swing.*;
import javax.swing.table.*;
public class BadCursor {
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createJDialog();
createJFrame();
}
});
}
public static void createJDialog() {
// This will create a Dialog with a JTable that does not correctly show
// a resize cursor.
JTable table = new JTable(new DefaultTableModel(new String[] {"a", "b"},
10));
JFrame parent = new JFrame();
JDialog dialog = new JDialog(parent, "No Resize Cursor");
JScrollPane scrollPane = new JScrollPane(table);
dialog.getContentPane().add(scrollPane);
dialog.pack();
dialog.setVisible(true);
}
public static void createJFrame() {
// This will create a Dialog with a JTable that correctly shows
// a resize cursor.
JTable table = new JTable(new DefaultTableModel(new String[] {"a", "b"},
10));
JFrame frame = new JFrame("Resize Cursor");
JScrollPane scrollPane = new JScrollPane(table);
frame.getContentPane().add(scrollPane);
frame.pack();
frame.setVisible(true);
}
}
---------- END SOURCE ----------
java version "1.5.0_04"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_04-b05)
Java HotSpot(TM) Client VM (build 1.5.0_04-b05, mixed mode, sharing)
ADDITIONAL OS VERSION INFORMATION :
SuSE 10.0
A DESCRIPTION OF THE PROBLEM :
A correctly working JTable that allows column resizing should show a resize cursor when the mouse is in between two columns.
However, this is not the case when the JTable is inside a JDialog.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import javax.swing.*;
import javax.swing.table.*;
public class BadCursor {
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createJDialog();
createJFrame();
}
});
}
public static void createJDialog() {
// This will create a Dialog with a JTable that does not correctly show
// a resize cursor.
JTable table = new JTable(new DefaultTableModel(new String[] {"a", "b"},
10));
JFrame parent = new JFrame();
JDialog dialog = new JDialog(parent, "No Resize Cursor");
JScrollPane scrollPane = new JScrollPane(table);
dialog.getContentPane().add(scrollPane);
dialog.pack();
dialog.setVisible(true);
}
public static void createJFrame() {
// This will create a Dialog with a JTable that correctly shows
// a resize cursor.
JTable table = new JTable(new DefaultTableModel(new String[] {"a", "b"},
10));
JFrame frame = new JFrame("Resize Cursor");
JScrollPane scrollPane = new JScrollPane(table);
frame.getContentPane().add(scrollPane);
frame.pack();
frame.setVisible(true);
}
}
---------- END SOURCE ----------
- duplicates
-
JDK-5079694 JDialog doesn't respect setCursor
-
- Resolved
-