我的问题如下:
我想让我的小HTML编辑器的用户切换
输入文本的不同背景颜色。我第一次尝试
为此目的使用CSS样式。不同的风格定义
不同的背景颜色,并通过用户可以JComboBox
在这些样式之间切换。在选择了一种风格
HTMLDocument
内部各个位置的新HTML元素类型
将输入<span class="style">
。
不幸的是,我无法完成这项工作。跨度元素
根本没有创建(see my question regarding this problem)。
在我看到班级StyledEditorKit.ForegroundAction
之间
了解这是如何运作的。在执行时它只是修改
正在使用的StyledEditorKit
的输入属性设置新的
前景色。之后输入的文本将显示
新的前景色。将HTML代码写入文件时
文本自动包含在<font color=".."> ... </font>
中
HTML元素。所有这些甚至适用于可能的选定文本
运行多个段落。在这种情况下显然受影响
所有受影响的段落中的文本都包含在<font ...>
HTML标记中。
我想完成设置背景的相同功能 任意文本块上的颜色。但令人惊讶的是,这似乎并不存在 这么容易: - (
我没有找到类似于该目的的预定义动作类
Java 7 JDK中的StyledEditorKit.foregroundAction
。创建
这样的课程似乎并不复杂;它和。几乎一样
更改了ForegroundAction
方法的actionPerformed
以设置
背景而不是前景属性。
但是如何创建设置特定背景的有效HTML代码
包含文本部分的颜色?
到目前为止,我不知道HTMLEditorKit
的哪一部分执行了
为<font>
中的文本创建所有HTMLDocument
元素
具有前景属性集。我想从现有的代码
创建<font>
元素不应该太难以导出
创建<span style="background-color:...">
的实现
用于设置背景颜色的元素而不是<font>
元素
对于任意文本区域。或者这一切都已经可用而且我
只是没有注意到?任何帮助将不胜感激!
在此期间,我迈出了重要的一步,感谢找到的一段代码here
我设法创建了有效的<span>
元素。在span元素中,我使用class
属性来指定预定义的样式。
这是我的代码:
import java.awt.BorderLayout;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Enumeration;
import java.util.Vector;
import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.DefaultComboBoxModel;
import javax.swing.JComboBox;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JOptionPane;
import javax.swing.JTextPane;
import javax.swing.JToolBar;
import javax.swing.text.AttributeSet;
import javax.swing.text.BadLocationException;
import javax.swing.text.MutableAttributeSet;
import javax.swing.text.SimpleAttributeSet;
import javax.swing.text.Style;
import javax.swing.text.StyleContext;
import javax.swing.text.html.HTML;
import javax.swing.text.html.HTMLDocument;
import javax.swing.text.html.HTMLEditorKit;
import javax.swing.text.html.StyleSheet;
public class SimpleEditor extends JFrame {
private static final long serialVersionUID = 1L;
private final JTextPane textPane;
private final HTMLEditorKit edtKit;
private final HTMLDocument doc;
private final StyleSheet predefStyles;
public static void main(String[] args) throws BadLocationException, IOException {
final SimpleEditor editor = new SimpleEditor();
editor.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
editor.setVisible(true);
}
public SimpleEditor() throws BadLocationException, IOException {
super("Very Simple HTML Editor");
textPane = new JTextPane();
edtKit = new HTMLEditorKit();
textPane.setEditorKit(edtKit);
predefStyles = new StyleSheet();
predefStyles.addRule(".MyStyle1 { color:#cc0000; background-color:silver }\n" +
".MyStyle2 { color:#0000cc; background-color:aqua }");
doc = new HTMLDocument(predefStyles);
textPane.setDocument(doc);
final Container content = getContentPane();
content.add(textPane, BorderLayout.CENTER);
content.add(createToolBar(), BorderLayout.NORTH);
setJMenuBar(createMenuBar());
setSize(500, 240);
}
private JToolBar createToolBar() {
final Vector<String> styleNames = new Vector<String>();
final Enumeration<?> names = predefStyles.getStyleNames();
while (names.hasMoreElements()) {
styleNames.add((String) names.nextElement());
}
final DefaultComboBoxModel<String> stylesModel =
new DefaultComboBoxModel<String>(styleNames);
final JComboBox<String> cbStyleSel = new JComboBox<String>(stylesModel);
final JToolBar bar = new JToolBar();
Action dumpAction = null;
for (final Action act : edtKit.getActions()) {
if (act.getValue(Action.NAME).equals("dump-model")) {
dumpAction = act;
break;
}
}
bar.add(dumpAction);
cbStyleSel.setEditable(false);
cbStyleSel.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
e.getSource();
@SuppressWarnings("unchecked")
final JComboBox<CondStyle> cboStyleSel = (JComboBox<CondStyle>) e.getSource();
final String selItem = (String) cboStyleSel.getSelectedItem();
final MutableAttributeSet divAttributes = new SimpleAttributeSet();
if (selItem.equals("default")) {
// This does not work!
final Style defStyle = StyleContext.getDefaultStyleContext().getStyle(StyleContext.DEFAULT_STYLE);
divAttributes.addAttribute(HTML.Tag.CONTENT, defStyle);
textPane.setCharacterAttributes(divAttributes, true);
} else {
divAttributes.addAttribute(HTML.Attribute.CLASS, selItem.substring(1));
final MutableAttributeSet tagAttributes = new SimpleAttributeSet();
tagAttributes.addAttribute(HTML.Tag.SPAN, divAttributes);
textPane.setCharacterAttributes(tagAttributes, false);
}
textPane.requestFocusInWindow();
}
});
bar.add(cbStyleSel);
return bar;
}
/**
* Extracts the style attributes except the style's name
* @param aStyle The style to be processed
* @return The visual attributes extracted from the style
*/
AttributeSet extractStyleAttribs(Style aStyle) {
final MutableAttributeSet attribs = new SimpleAttributeSet();
final Enumeration<?> attribNames = aStyle.getAttributeNames();
while (attribNames.hasMoreElements()) {
final Object attribName = attribNames.nextElement();
if (attribName == Style.NameAttribute) {
continue;
}
attribs.addAttribute(attribName, aStyle.getAttribute(attribName));
}
return attribs;
}
private JMenuBar createMenuBar() {
final JMenuBar menubar = new JMenuBar();
final JMenu mnuFile = new JMenu("File");
menubar.add(mnuFile);
final SaveAction actSave = new SaveAction();
mnuFile.add(actSave);
return menubar;
}
class SaveAction extends AbstractAction {
private static final long serialVersionUID = 1L;
public SaveAction() {
super("Save");
}
@Override
public void actionPerformed(ActionEvent ev) {
final JFileChooser chooser = new JFileChooser();
if (chooser.showSaveDialog(SimpleEditor.this) != JFileChooser.APPROVE_OPTION)
return;
final File file = chooser.getSelectedFile();
if (file == null)
return;
FileWriter writer = null;
try {
writer = new FileWriter(file);
textPane.write(writer);
} catch (final IOException ex) {
JOptionPane.showMessageDialog(SimpleEditor.this,
"File Not Saved", "ERROR",
JOptionPane.ERROR_MESSAGE);
} finally {
if (writer != null) {
try {
writer.close();
} catch (final IOException x) {
}
}
}
}
}
}
到目前为止一切顺利!我对此解决方案的唯一问题是,我无法实现从<span>
元素中包含的文本切换回“普通”文本,即未放置在<span>
元素内的文本。
这应该没什么大不了的,但遗憾的是我无法弄清楚如何才能做到这一点。任何想法都会非常受欢迎!
答案 0 :(得分:0)
我明白了!它很简单;-)
要使用<span>
元素从样式化文本条目切换回来,我只需要从当前文本的输入属性中删除HTML.Tag.SPAN
属性。这完成如下:
edtKit.getInputAttributes().removeAttribute(HTML.Tag.SPAN);
所以我在(更新的)问题中发布的示例代码中的ActionListener代码现在看起来如下:
cbStyleSel.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
e.getSource();
@SuppressWarnings("unchecked")
final JComboBox<CondStyle> cboStyleSel = (JComboBox<CondStyle>) e.getSource();
final String selItem = (String) cboStyleSel.getSelectedItem();
if (selItem.equals("default")) {
edtKit.getInputAttributes().removeAttribute(HTML.Tag.SPAN);
} else {
final MutableAttributeSet divAttributes = new SimpleAttributeSet();
divAttributes.addAttribute(HTML.Attribute.CLASS, selItem.substring(1));
final MutableAttributeSet tagAttributes = new SimpleAttributeSet();
tagAttributes.addAttribute(HTML.Tag.SPAN, divAttributes);
textPane.setCharacterAttributes(tagAttributes, false);
}
textPane.requestFocusInWindow();
}
});