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

Applying UNDERLINE on multiple lines in Jtext pane show '.'(dot) for blank lines

XMLWordPrintable

      Name: gm110360 Date: 08/13/2003


      FULL PRODUCT VERSION :
      java version "1.4.1"


      FULL OPERATING SYSTEM VERSION :

       Window NT version 4.0

      A DESCRIPTION OF THE PROBLEM :
      In the JText Pane using the RTF editor kit, when the user UNDERLINE the multiple lines with some blank line in
      between ,'.' dot is shown for blank lines. it seems the blank lines are also UNDERLINED


      EXPECTED VERSUS ACTUAL BEHAVIOR :
      Actual result
      ----------------
      It shows '.' (Dot) for blank/new lines after underlining the text.

      Expected result
      -------------------
      It should not show any '.' for blank/new lines after applying UNDERLINE style format.
      Blank/new lines should be seen as blank only but when the user types any character on that blank lines,it should
      take UNDERLINE style for that character.

      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      import java.awt.*;
      import javax.swing.*;
      import javax.swing.text.*;
      import java.awt.event.*;
      import java.util.Dictionary;
      import java.util.Hashtable;
      import javax.swing.text.rtf.RTFEditorKit;
      import javax.swing.plaf.InsetsUIResource;

      import javax.swing.plaf.ColorUIResource;


      public class JewtWizardTest extends JApplet
      {
        RTFTextPane textPane;
        JToggleButton _underlineButton;
        public JewtWizardTest()
        {
        }

         public void init()
        {
          JButton but = new JButton("start");
          Listener listener = new Listener();
          but.addActionListener(listener);
          getContentPane().add(but, BorderLayout.CENTER);

        }


          /**
         * main
         * @param args
         */
        public static void main(String[] args)
        {
          JFrame frame = new JFrame("UNDERLINE DEMO");
          frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          JApplet applet = new JewtWizardTest();
          frame.getContentPane().add(applet);
          frame.setSize(100,100);
          applet.init();
          applet.start();
          frame.setVisible(true);
         
        }

        class Listener implements ActionListener
        {
          public void actionPerformed(ActionEvent e)
          {
              JPanel textPanel = new JPanel();
              JPanel panel = new JPanel();
              textPane = new RTFTextPane();
              textPane.setPreferredSize(new Dimension(101,100));
              textPane.setDocument(new DefaultStyledDocument());
              _underlineButton = new JToggleButton("Underline");
              _underlineButton.setSelected(false);
              _underlineButton.addActionListener(new Listener1());
               panel.add(_underlineButton);
               textPanel.add(textPane);
               JPanel mainPanel = new JPanel();
               mainPanel.setPreferredSize(new Dimension(200,200));
               mainPanel.add(textPanel);
               mainPanel.add(panel);
               JDialog dialog = new JDialog();
               dialog.getContentPane().add(mainPanel);
               dialog.setSize(400,300);
               dialog.show();
            
              
          }
        }
          class Listener1 implements ActionListener
          {
            public void actionPerformed(ActionEvent e)
          {
            if(e.getSource() == _underlineButton)
            {
               int pos = textPane.getSelectionStart();
               int end = textPane.getSelectionEnd();
               textPane.select(pos, end);
               textPane.toggleFontStyle(textPane.STYLE_UNDERLINE);
               textPane.requestFocus();
            }

          }
      }

        class RTFTextPane extends JTextPane
        {
         RTFEditorKit _rtfEditorKit ;
          public static final int STYLE_UNDERLINE = 4;
          public RTFTextPane()
          {
             super();
           setContentType("text/rtf");
           setBackground(Color.white);
          _rtfEditorKit = new RTFEditorKit();
           setEditorKit(_rtfEditorKit);

          }
          public void toggleFontStyle(int style)
         {
          Action a = null;
          
          if (style == STYLE_UNDERLINE)
            a = new StyledEditorKit.UnderlineAction()
            {
              public void actionPerformed(ActionEvent e)
              {
                JEditorPane editor = getEditor(e);
                if (editor != null)
                {
                  int start = editor.getCaret().getMark();
                  int end = editor.getCaret().getDot();
                  
                  int pos = start;
                  if (end < start)
                    --pos;
                    
                  StyledDocument doc = (StyledDocument)editor.getDocument();
                  Element element = doc.getCharacterElement(pos);
                  AttributeSet atts = element.getAttributes();
                  boolean underline = (StyleConstants.isUnderline(atts)) ?
                                                                    false : true;
                  SimpleAttributeSet sas = new SimpleAttributeSet();
                  StyleConstants.setUnderline(sas, underline);
                  setCharacterAttributes(editor, sas, false);
                }
              }
            };
          
          if (a != null)
            a.actionPerformed(new ActionEvent(this, ActionEvent.ACTION_PERFORMED,
                                                                              null));
        }

          
        }
      }
      ---------- END SOURCE ----------
      (Incident Review ID: 173329)
      ======================================================================

            idk Igor Kushnirskiy (Inactive)
            gmanwanisunw Girish Manwani (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: