我有一个JTextPane供用户编写日记条目,他们可以通过选择文本和选择菜单项(如粗体或斜体等)来设置样式。这些项目连接到其中一个样式编辑器套件(例如StyledEditorKit.BoldAction() )。
有没有办法检测给定文档位置的文本是否已使用其中一个工具包进行样式设置?如果是这样的话?
//Create the style menu.
protected JMenu createStyleMenu() {
JMenu menu = new JMenu("Style");
Action action = new StyledEditorKit.BoldAction();
action.putValue(Action.NAME, "Bold");
menu.add(action);
action = new StyledEditorKit.ItalicAction();
action.putValue(Action.NAME, "Italic");
menu.add(action);
action = new StyledEditorKit.UnderlineAction();
action.putValue(Action.NAME, "Underline");
menu.add(action);
menu.addSeparator();
menu.add(new StyledEditorKit.FontSizeAction("12", 12));
menu.add(new StyledEditorKit.FontSizeAction("14", 14));
menu.add(new StyledEditorKit.FontSizeAction("18", 18));
menu.add(new StyledEditorKit.FontSizeAction("36", 36));
menu.addSeparator();
menu.add(new StyledEditorKit.FontFamilyAction("Serif",
"Serif"));
menu.add(new StyledEditorKit.FontFamilyAction("SansSerif",
"SansSerif"));
menu.addSeparator();
menu.add(new StyledEditorKit.ForegroundAction("Red",
Color.red));
menu.add(new StyledEditorKit.ForegroundAction("Green",
Color.green));
menu.add(new StyledEditorKit.ForegroundAction("Blue",
Color.blue));
menu.add(new StyledEditorKit.ForegroundAction("Black",
Color.black));
return menu;
}
非常感谢任何帮助。谢谢。
答案 0 :(得分:2)
您可以查询文档特定字符的属性:
StyledDocument doc = (StyledDocument)textPane.getDocument();
Element element = doc.getCharacterElement(position);
Boolean isItalic = element.getAttributes().getAttribute(StyleConstants.Italic);