Go to the documentation of this file.
19package org.sleuthkit.autopsy.contentviewers;
21import javax.swing.JTextPane;
22import javax.swing.text.html.HTMLEditorKit;
23import javax.swing.text.html.StyleSheet;
24import javax.swing.text.rtf.RTFEditorKit;
33 pane.setContentType(
"text/html;charset=UTF-8");
34 HTMLEditorKit kit =
new HTMLEditorKit();
35 pane.setEditorKit(kit);
36 StyleSheet styleSheet = kit.getStyleSheet();
44 styleSheet.addRule(
"body {font-family:Arial, 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'MS Pゴシック','MS PGothic',sans-serif;font-size:14pt;}");
45 styleSheet.addRule(
"p {font-family:Arial, 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'MS Pゴシック','MS PGothic',sans-serif;font-size:14pt;}");
46 styleSheet.addRule(
"li {font-family:Arial, 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'MS Pゴシック','MS PGothic',sans-serif;font-size:14pt;}");
47 styleSheet.addRule(
"td {font-family:Arial, 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'MS Pゴシック','MS PGothic',sans-serif;font-size:14pt;overflow:hidden;padding-right:5px;padding-left:5px;}");
48 styleSheet.addRule(
"th {font-family:Arial, 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'MS Pゴシック','MS PGothic',sans-serif;font-size:14pt;overflow:hidden;padding-right:5px;padding-left:5px;font-weight:bold;}");
49 styleSheet.addRule(
"p {font-family:Arial, 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'MS Pゴシック','MS PGothic',sans-serif;font-size:14pt;}");
54 pane.setContentType(
"text/html;charset=UTF-8");
55 RTFEditorKit rtfkit =
new RTFEditorKit();
56 pane.setEditorKit(rtfkit);
static void configureTextPaneAsRtf(JTextPane pane)
static void configureTextPaneAsHtml(JTextPane pane)
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.