JTextPane - 具有两种样式的短语

时间:2011-10-02 02:29:02

标签: java swing

我刚刚面对一件有趣的事情。

我正在更改所选的文字样式。问题是当我一个一个地改变ONE WORD的风格时它很好但接下来如果我选择一个整个风格的短语并改变它的字体颜色整个短语变成一个风格(所选文本中的第一个风格 )只:(

以下是问题摘录

  private void setFontColorStyle()
    {
        JTextPane editor=this.getTextPane();
        String text=this.getTextPane().getSelectedText();

        StyledDocument doc=(StyledDocument) editor.getDocument();
        int selectionEnd=this.getTextPane().getSelectionEnd();
        int selectionStart=this.getTextPane().getSelectionStart();


        Element element=doc.getCharacterElement(selectionStart);
        AttributeSet as = element.getAttributes();

        String family = StyleConstants.getFontFamily(as);
        int fontSize = StyleConstants.getFontSize(as);
        boolean isBold=StyleConstants.isBold(as);
        boolean isItalic=StyleConstants.isItalic(as);
        boolean isUnderlined=StyleConstants.isUnderline(as);

        StyleContext context = new StyleContext();
        Style style;

        this.getTextPane().replaceSelection("");

        style = context.addStyle("mystyle", null);
        style.addAttribute(StyleConstants.FontSize, fontSize);
        style.addAttribute(StyleConstants.FontFamily, family);
        style.addAttribute(StyleConstants.Foreground, this.fontColor);
        style.addAttribute(StyleConstants.Bold, isBold);
        style.addAttribute(StyleConstants.Italic, isItalic);
        style.addAttribute(StyleConstants.Underline, isUnderlined);

        this.getTextPane().replaceSelection("");
        try {
            this.getTextPane().getStyledDocument().insertString(selectionEnd - text.length(), text, style);
        } catch (BadLocationException ex) {

        }
    }

这是大胆的制作方法代码......() 斜体并强调所有相同的逻辑,所以我想这很清楚

private void setFontBoldStyle()
    {
         if(this.getTextPane().getSelectedText()!=null)
        {

        String text = this.getTextPane().getSelectedText();
        int selectionStart=this.getTextPane().getSelectionStart();
        int selectionEnd=this.getTextPane().getSelectionEnd();






        StyleContext context = new StyleContext();
        Style style;


        Element element=doc.getCharacterElement(selectionStart);
        Enumeration en=doc.getStyleNames();

        AttributeSet as = element.getAttributes();

        /**
         * Get style from history...
         */
        String family = StyleConstants.getFontFamily(as);
        int fontSize = StyleConstants.getFontSize(as);
        Color currentColor=StyleConstants.getForeground(as);
        boolean isBold=StyleConstants.isBold(as)?false:true;
        boolean isItalic=StyleConstants.isItalic(as);
        boolean isUnderlined=StyleConstants.isUnderline(as);

        String styleName=String.valueOf(Math.random());

        style = context.addStyle(styleName, null);
//        style.addAttribute(StyleConstants.FontSize, fontSize);
//        style.addAttribute(StyleConstants.FontFamily, family);
        style.addAttribute(StyleConstants.Foreground, currentColor);
        style.addAttribute(StyleConstants.FontFamily, family);
        style.addAttribute(StyleConstants.FontSize, fontSize);
        style.addAttribute(StyleConstants.Bold, isBold);
        style.addAttribute(StyleConstants.Italic, isItalic);
        style.addAttribute(StyleConstants.Underline, isUnderlined);

        this.getTextPane().replaceSelection("");



        try {
            this.getTextPane().getStyledDocument().insertString(selectionEnd - text.length(), text, style);
        } catch (BadLocationException ex) {

        }

        }//if end...


    }

这是粗体方法调用代码:

private void setFontBold()
    {
        this.setFontBoldStyle(); 
    }

...和颜色方法调用

 private void setFontColor(Color fontColor)
    {
        this.fontColor=fontColor;
        this.setFontColorStyle();

    }

...和动作听众(粗体)......

 private void boldButtonActionPerformed(java.awt.event.ActionEvent evt) {                                           
         this.getTextPane().requestFocusInWindow();
         this.setFontBold();
    }                                          

...和颜色

private void colorButtonActionPerformed(java.awt.event.ActionEvent evt) {                                            

       this.getTextPane().requestFocusInWindow();

       ColorDialog colorEditor=new ColorDialog();

      //returns rgb color...
       Color color=colorEditor.getSelectedColor(this.getDialog(), true,false);


       if(color==null){
           JOptionPane.showMessageDialog(this.getDialog(), "null color");
           return;
       }

       this.setFontColor(color);
    }                                           

当我想更改一个完整的不同风格的选定文字颜色时,我非常需要你关于如何保持所选文字样式不变的建议(如粗体或字体系列)?

更清楚......

例如我有文字

  

我的 您好 世界并不漂亮:)

接下来,我选择整个短语并将其颜色从黑色更改为红色。下一个文字变成红色,但整个短语根据第一种风格变得粗体。但问题是保持粗体和斜体样式会很有趣,但同时又有了红色:)这很简单,但我只是混淆了如何在所选文本区域的框架中控制多个样式?

非常感谢任何有用的评论

2 个答案:

答案 0 :(得分:3)

TextComponentDemo中讨论的

How to Use Editor Panes and Text Panes是如何管理此功能以及其他文本组件功能的一个很好的示例。

附录:TextComponentDemo依赖于预定义的Action对象来处理编辑任务。方便地,StyledEditorKit包含一系列源自StyledTextAction的嵌套类。作为一个具体示例,以下是方法AlignmentActionStyle的{​​{1}}菜单中添加TextComponentDemo的方式:

createStyleMenu()

其余(任意)对齐操作名称在StyledEditorKit中私下定义。

附录:setCharacterAttributes()是嵌套编辑操作使用的常用例程。它根据@StanislavL的建议调用protected JMenu createStyleMenu() { JMenu menu = new JMenu("Style"); Action action = new StyledEditorKit.AlignmentAction( "left-justify", StyleConstants.ALIGN_LEFT); action.putValue(Action.NAME, "Left"); menu.add(action); menu.addSeparator(); ... } 中的同名方法。

附录:我无法再现您描述的效果。当我设置选择的颜色时,样式属性保持不变。

附录:StyledDocument行为与StyledEditorKitJButton同样有效。

JToolBar

TextComponentDemo

答案 1 :(得分:3)

使用this.getTextPane()。getStyledDocument()。setCharacterAttributes()