Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6409528

JTextArea: Special chars makes the Component OrientationR to L is different

XMLWordPrintable

    • Cause Known
    • generic
    • generic

      Description:
      The special chars (ex: !!! or ???) present on the end of the line, it's position is changed from the actual position when you set the component orientation to R to L.

      For Example, take the following string
      "Swing is cool!!!" when the orientation is set to right to left this string should placed at the extreme right and special chars position should not be changed. But the actual behaviour is "!!! Swing is cool".

      Steps to reproduce this problem:
      1. Launch the sample application
      2. Now check the check box "rtl, for the component orientation take effect press a key at the end of a line.

      Now you can see the string got placed at the extreme right and special chars position got changed.

      The sample code to reproduce this problem is

      import javax.swing.*;
      import java.awt.*;
      import java.awt.event.*;


      public class JTextAreaScrollBug extends JFrame implements ActionListener {
         
          private JComboBox lafCombo;
          private JCheckBox addUniCode = new JCheckBox("Add Bi-Dir Text", false);
          private JTextArea area;
          private JScrollPane scroll;
          private JCheckBox edit = new JCheckBox("Un Editable", false);
          private JCheckBox dis = new JCheckBox("Disable", false);
          private JButton sel = new JButton("Get Selected Text");
          
          private JCheckBox lineWrap = new JCheckBox("Line Wrap", false);
          private JCheckBox wordWrap = new JCheckBox("Wrap Sytle Word", false);
          
          private JCheckBox rtl = new JCheckBox("rtl", false);
          
          private String text = "Swing is cool!!!\n" +
                  "Swing is fast!!!\n" +
                  "Swing is robust!!!\n";
              
          private String text1 = "English Text English Text English Text\n" +
                            "English Text English Text English Text\n" +
                            "English Text English Text English Text\n\n" +
                            "\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a \u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a \u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\n" +
                            "\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a \u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a \u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\n" +
                            "\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a \u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a \u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\n\n" +
                            "English Text and non-English text \u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a \u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a \u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a and English again\n" +
                            "English Text and non-English text \u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a \u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a \u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a and English again\n" +
              "English Text and non-English text \u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a \u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a \u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a\u0627\u0628\u0629\u062a and English again\n" ;
              
          
          public JTextAreaScrollBug() {
              
              area = new JTextArea();
              area.setRows(20);
              area.setColumns(20);
              //area.setLineWrap(true);
              //area.setWrapStyleWord(true);
              area.setText(text);
              Font currentFont = area.getFont();
              
              Font newFont = currentFont.deriveFont(Font.BOLD + Font.ITALIC);
              area.setFont(newFont);
              
              scroll = new JScrollPane(area, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
              lafCombo = new JComboBox(new String[] {"Ocean",
                                                     "Windows",
                                                     "Motif",
                                                     "GTK"});
              lafCombo.addActionListener(this);
              addUniCode.addActionListener(this);
              lineWrap.addActionListener(this);
              wordWrap.addActionListener(this);
              rtl.addActionListener(this);
              edit.addActionListener(this);
              sel.addActionListener(this);
              dis.addActionListener(this);
                      
              JPanel bottom = new JPanel();
              bottom.add(lafCombo);
              bottom.add(addUniCode);
              bottom.add(sel);
              
              JPanel control = new JPanel();
              control.setLayout(new BoxLayout(control, BoxLayout.Y_AXIS));
              control.add(lineWrap);
              control.add(wordWrap);
              control.add(rtl);
              control.add(edit);
              control.add(dis);
              
              getContentPane().add(control, BorderLayout.WEST);
              
              getContentPane().add(bottom, BorderLayout.SOUTH);
              
              getContentPane().add(scroll);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              setSize(400, 400);
              setVisible(true);
          }
          
          public static void main(String args[]) {
              new JTextAreaScrollBug();
          }
          
          public void actionPerformed(ActionEvent ae) {
              Object source = ae.getSource();
              if( source == lafCombo)
                  changeLAF();
              if(source == addUniCode) {
                  if(addUniCode.isSelected())
                      area.setText(text1);
                  else
                      area.setText(text);
              }
              if(source == lineWrap) {
                  if(lineWrap.isSelected())
                      area.setLineWrap(true);
                  else
                      area.setLineWrap(false);
              }
              if(source == wordWrap) {
                  if(wordWrap.isSelected())
                      area.setWrapStyleWord(true);
                  else
                      area.setWrapStyleWord(false);
              }
              if(source == edit) {
                  if(edit.isSelected())
                      area.setEditable(false);
                  else
                      area.setEditable(true);
              }
              if(source == dis) {
                  if(dis.isSelected())
                      area.setEnabled(false);
                  else
                      area.setEnabled(true);
              }
              if(source == rtl){
                  if(rtl.isSelected())
                      area.applyComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
                  else
                      area.applyComponentOrientation(ComponentOrientation.LEFT_TO_RIGHT);
              }
              if( source == sel)
                  System.out.println("Selected Text...."+area.getSelectedText());
              
          }
          
          private void changeLAF() {
              Object val = lafCombo.getSelectedItem();
              
              String className = null;
              javax.swing.plaf.metal.MetalTheme theme = null;
              
              if (val == "Ocean") {
                  className = "javax.swing.plaf.metal.MetalLookAndFeel";
                  //theme = new javax.swing.plaf.metal.OceanTheme();
              } else if (val == "Windows") {
                  className = "com.sun.java.swing.plaf.windows.WindowsLookAndFeel";
              } else if (val == "Motif") {
                  className = "com.sun.java.swing.plaf.motif.MotifLookAndFeel";
              } else if (val == "GTK") {
                  className = "com.sun.java.swing.plaf.gtk.GTKLookAndFeel";
              }
              
              try {
                  if (theme != null) {
                      javax.swing.plaf.metal.MetalLookAndFeel.setCurrentTheme(theme);
                  }
                  UIManager.setLookAndFeel(className);
                  SwingUtilities.updateComponentTreeUI(this);
              } catch (Exception e) {
                  e.printStackTrace();
              }
          }
      }

            peterz Peter Zhelezniakov
            esubramasunw Elancheran Subramanian (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Imported:
              Indexed: