-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.1.5
-
x86
-
windows_nt
Name: rm29839 Date: 03/16/98
Swing1.0:
In the example below: please insert a Component somewhere in the text with one of the buttons.
Then select a range that contains the component, cut it (ctrl-C) and paste it somewhere in the text:
Only the cutted text without the control is pasted, with a single space instead of the control in it.
Example code: - borrowed from another bug, please _ignore_ the meaning of the text inside the textarea.
import com.sun.java.swing.*;
import com.sun.java.swing.plaf.basic.*;
import com.sun.java.swing.text.*;
import java.awt.*;
import java.awt.event.*;
class TestPane2 extends JPanel {
JTextPane editor;
StyledDocument document;
JToolBar toolbar;
public TestPane2(){
super(new BorderLayout());
editor=new JTextPane();
StyledEditorKit editKit = new StyledEditorKit();
document = (StyledDocument)editKit.createDefaultDocument();
editor.setStyledDocument(document);
editor.setText("Here's some text. The toolbar contains two buttons.\n"+
"Both insert a JTextField, one of them using the\n"+
"insertComponent(...) method in JTextPane and the\n"+
"other using the insertString(...) method in Document.\n"+
"Both methods inserts the component correctly, but you\n"+
"can't remove it! (The placeholding space is removed and\n"+
"the component seems to be removed from the model,\n"+
"but not from the view.)\n");
toolbar=new JToolBar();
((BasicToolBarUI)toolbar.getUI()).setFloatable(false);
JButton butt=new JButton("insertComponent");
butt.addMouseListener(new MouseAdapter(){
public void mouseClicked(MouseEvent e){
addComponents();
}
});
JButton butt2=new JButton("insertString");
butt2.addMouseListener(new MouseAdapter(){
public void mouseClicked(MouseEvent e){
addString();
}
});
toolbar.add(butt);
toolbar.add(butt2);
this.add(toolbar, BorderLayout.NORTH);
this.add(editor, BorderLayout.CENTER);
}
public void addComponents(){
editor.insertComponent(new JTextField(20));
editor.validate();
editor.repaint();
}
public void addString(){
MutableAttributeSet a=new SimpleAttributeSet();
StyleConstants.setComponent(a, new JTextField(20));
try {
document.insertString(editor.getCaretPosition(), " ", a);
} catch (Exception ex){
ex.printStackTrace();
}
editor.validate();
editor.repaint();
}
public static void main(String[] args){
JFrame frame=new JFrame();
frame.setSize(400, 400);
frame.getContentPane().add(new TestPane2());
frame.setVisible(true);
}
}
(Review ID: 26054)
======================================================================
- duplicates
-
JDK-4073786 Copy()/Paste() doesn't work for Images/Components in JTextPane
-
- Closed
-