我刚刚面对一件有趣的事情。
我正在更改所选的文字样式。问题是当我一个一个地改变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);
}
当我想更改一个完整的不同风格的选定文字颜色时,我非常需要你关于如何保持所选文字样式不变的建议(如粗体或字体系列)?
更清楚......
例如我有文字
我的 您好 世界并不漂亮:)
接下来,我选择整个短语并将其颜色从黑色更改为红色。下一个文字变成红色,但整个短语根据第一种风格变得粗体。但问题是保持粗体和斜体样式会很有趣,但同时又有了红色:)这很简单,但我只是混淆了如何在所选文本区域的框架中控制多个样式?
非常感谢任何有用的评论
答案 0 :(得分:3)
TextComponentDemo
中讨论的How to Use Editor Panes and Text Panes是如何管理此功能以及其他文本组件功能的一个很好的示例。
附录:TextComponentDemo
依赖于预定义的Action
对象来处理编辑任务。方便地,StyledEditorKit
包含一系列源自StyledTextAction
的嵌套类。作为一个具体示例,以下是方法AlignmentAction
中Style
的{{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
行为与StyledEditorKit
或JButton
同样有效。
JToolBar
答案 1 :(得分:3)
使用this.getTextPane()。getStyledDocument()。setCharacterAttributes()