本文整理汇总了Java中javax.swing.JTextPane.addStyle方法的典型用法代码示例。如果您正苦于以下问题:Java JTextPane.addStyle方法的具体用法?Java JTextPane.addStyle怎么用?Java JTextPane.addStyle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.swing.JTextPane
的用法示例。
在下文中一共展示了JTextPane.addStyle方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: insert
import javax.swing.JTextPane; //导入方法依赖的package包/类
public static void insert(JTextPane interpreter, String text, Color color) {
StyledDocument doc = interpreter.getStyledDocument();
Style style = interpreter.addStyle("Style", null);
StyleConstants.setForeground(style, color);
try {
doc.insertString(doc.getLength(), text ,style);
//((AbstractDocument)interpreter.getDocument()).setDocumentFilter(new NonEditableLineDocumentFilter());
} catch (BadLocationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
//doc.insertString( doc.getEndPosition().getOffset(), "Hello you can't edit this!", null );
}
示例2: removelast
import javax.swing.JTextPane; //导入方法依赖的package包/类
public static void removelast(JTextPane interpreter, int i) {
StyledDocument doc = interpreter.getStyledDocument();
Style style = interpreter.addStyle("Style", null);
try {
doc.remove(doc.getLength()-i, i);
}
catch (BadLocationException ex){}
}
示例3: createNormalStyle
import javax.swing.JTextPane; //导入方法依赖的package包/类
private Style createNormalStyle (JTextPane textPane) {
Style normalStyle = textPane.addStyle("normal", null); //NOI18N
StyleConstants.setForeground(normalStyle, UIManager.getColor("List.foreground")); //NOI18N
return normalStyle;
}
示例4: createIssueHyperlinkStyle
import javax.swing.JTextPane; //导入方法依赖的package包/类
private Style createIssueHyperlinkStyle (JTextPane textPane, Style normalStyle) {
Style issueHyperlinkStyle = textPane.addStyle("issuehyperlink", normalStyle); //NOI18N
StyleConstants.setForeground(issueHyperlinkStyle, LINK_COLOR == null ? Color.BLUE : LINK_COLOR);
StyleConstants.setUnderline(issueHyperlinkStyle, true);
return issueHyperlinkStyle;
}
示例5: createAuthorStyle
import javax.swing.JTextPane; //导入方法依赖的package包/类
private Style createAuthorStyle (JTextPane textPane, Style normalStyle) {
Style authorStyle = textPane.addStyle("author", normalStyle); //NOI18N
StyleConstants.setForeground(authorStyle, LINK_COLOR == null ? Color.BLUE : LINK_COLOR);
return authorStyle;
}
示例6: createLinkStyle
import javax.swing.JTextPane; //导入方法依赖的package包/类
private Style createLinkStyle (JTextPane textPane, Style normalStyle) {
Style linkStyle = textPane.addStyle("link", normalStyle); //NOI18N
StyleConstants.setForeground(linkStyle, LINK_COLOR == null ? Color.BLUE : LINK_COLOR);
StyleConstants.setBold(linkStyle, true);
return linkStyle;
}
示例7: createNoindentStyle
import javax.swing.JTextPane; //导入方法依赖的package包/类
private Style createNoindentStyle (JTextPane textPane) {
Style noindentStyle = textPane.addStyle("noindent", null); //NOI18N
StyleConstants.setLeftIndent(noindentStyle, 0);
return noindentStyle;
}
示例8: createSelectedStyle
import javax.swing.JTextPane; //导入方法依赖的package包/类
private Style createSelectedStyle (JTextPane textPane) {
Style selectedStyle = textPane.addStyle("selected", null); //NOI18N
StyleConstants.setForeground(selectedStyle, selectionForeground);
StyleConstants.setBackground(selectedStyle, selectionBackground);
return selectedStyle;
}