Autopsy
4.19.3
Graphical digital forensics platform for The Sleuth Kit and other tools.
|
Static Public Member Functions | |
static int | getColumnSpacing () |
static Font | getFont () |
static Font | getHeaderFont () |
static Integer | getLineSpacing () |
static Font | getMessageFont () |
static Font | getMonospacedFont () |
static Color | getPanelBackground () |
static Insets | getPanelInsets () |
static Double | getPtToPx () |
static Integer | getSectionIndent () |
static Integer | getSectionSpacing () |
static Font | getSubHeaderFont () |
Static Private Attributes | |
static final Color | DEFAULT_BACKGROUND = UIManager.getColor("Panel.background") |
static final int | DEFAULT_COLUMN_SPACING = (int) Math.round((double) DEFAULT_FONT_PX / 3) |
static final Font | DEFAULT_FONT = UIManager.getDefaults().getFont("Label.font") |
static final int | DEFAULT_FONT_PX = (int) Math.round(DEFAULT_FONT.getSize() * PT_TO_PX) |
static final int | DEFAULT_INDENT = DEFAULT_FONT_PX |
static final int | DEFAULT_LINE_SPACING = (int) Math.round((double) DEFAULT_FONT_PX / 5) |
static final Insets | DEFAULT_PANEL_INSETS = UIManager.getDefaults().getInsets("TextPane.margin") |
static final int | DEFAULT_SECTION_SPACING = DEFAULT_FONT_PX |
static final Font | HEADER_FONT = DEFAULT_FONT.deriveFont(Font.BOLD, DEFAULT_FONT.getSize() + 2) |
static final Font | MESSAGE_FONT = DEFAULT_FONT.deriveFont(Font.ITALIC) |
static final Font | MONOSPACED_FONT = new Font(Font.MONOSPACED, Font.PLAIN, DEFAULT_FONT.getSize()) |
static final Double | PT_TO_PX = Toolkit.getDefaultToolkit().getScreenResolution() / 72.0 |
static final Font | SUB_HEADER_FONT = DEFAULT_FONT.deriveFont(Font.BOLD) |
Default values for layout of content values.
Definition at line 30 of file ContentViewerDefaults.java.
|
static |
Returns the horizontal spacing between columns in a table in pixels.
Definition at line 63 of file ContentViewerDefaults.java.
References org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.DEFAULT_COLUMN_SPACING.
Referenced by org.sleuthkit.autopsy.contentviewers.artifactviewers.ContactArtifactViewer.showPersona().
|
static |
Returns the default font to be used.
Definition at line 72 of file ContentViewerDefaults.java.
References org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.DEFAULT_FONT.
Referenced by org.sleuthkit.autopsy.corecomponents.AutoWrappingJTextPane.setText().
|
static |
Returns the font to be displayed for messages.
Definition at line 90 of file ContentViewerDefaults.java.
References org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.HEADER_FONT.
Referenced by org.sleuthkit.autopsy.contentviewers.artifactviewers.GeneralPurposeArtifactViewer.addHeader(), org.sleuthkit.autopsy.contentviewers.osaccount.OsAccountDataPanel.addTitle(), org.sleuthkit.autopsy.contentviewers.artifactviewers.MessageAccountPanel.AccountContainer.initalizeSwingControls(), and org.sleuthkit.autopsy.contentviewers.contextviewer.ContextViewer.initComponents().
|
static |
Returns the spacing between lines of text in pixels.
Definition at line 144 of file ContentViewerDefaults.java.
References org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.DEFAULT_LINE_SPACING.
Referenced by org.sleuthkit.autopsy.contentviewers.artifactviewers.ContactArtifactViewer.initiatePersonasSearch(), org.sleuthkit.autopsy.corecomponents.AutoWrappingJTextPane.setText(), org.sleuthkit.autopsy.contentviewers.artifactviewers.CallLogArtifactViewer.showCRDisabledMessage(), org.sleuthkit.autopsy.contentviewers.artifactviewers.ContactArtifactViewer.showPersona(), and org.sleuthkit.autopsy.contentviewers.artifactviewers.ContactArtifactViewer.updateContactImage().
|
static |
Returns the font to be displayed for messages.
Definition at line 81 of file ContentViewerDefaults.java.
References org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.MESSAGE_FONT.
Referenced by org.sleuthkit.autopsy.contentviewers.artifactviewers.ContactArtifactViewer.initiatePersonasSearch().
|
static |
Returns the font to be used for normal monospace.
Definition at line 108 of file ContentViewerDefaults.java.
References org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.MONOSPACED_FONT.
|
static |
Returns the color to be used as the background of the panel.
Definition at line 153 of file ContentViewerDefaults.java.
References org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.DEFAULT_BACKGROUND.
Referenced by org.sleuthkit.autopsy.contentviewers.contextviewer.ContextUsagePanel.initComponents(), org.sleuthkit.autopsy.contentviewers.contextviewer.ContextSourcePanel.initComponents(), org.sleuthkit.autopsy.contentviewers.contextviewer.ContextViewer.populatePanels(), and org.sleuthkit.autopsy.contentviewers.layout.ContentViewerHtmlStyles.setupHtmlJTextPane().
|
static |
Returns the insets of the content within the parent content viewer panel.
Definition at line 117 of file ContentViewerDefaults.java.
References org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.DEFAULT_PANEL_INSETS.
Referenced by org.sleuthkit.autopsy.contentviewers.artifactviewers.CallLogArtifactViewer.CallLogArtifactViewer(), org.sleuthkit.autopsy.contentviewers.artifactviewers.ContactArtifactViewer.ContactArtifactViewer(), org.sleuthkit.autopsy.contentviewers.artifactviewers.GeneralPurposeArtifactViewer.GeneralPurposeArtifactViewer(), org.sleuthkit.autopsy.contentviewers.osaccount.OsAccountDataPanel.initialize(), org.sleuthkit.autopsy.contentviewers.contextviewer.ContextViewer.populatePanels(), and org.sleuthkit.autopsy.contentviewers.layout.ContentViewerHtmlStyles.setupHtmlJTextPane().
|
static |
Returns the ratio of point size to pixel size for the user's screen resolution.
Definition at line 164 of file ContentViewerDefaults.java.
References org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.PT_TO_PX.
Referenced by org.sleuthkit.autopsy.contentviewers.layout.ContentViewerHtmlStyles.pxToPt().
|
static |
Returns the size in pixels that sections should be indented.
Definition at line 126 of file ContentViewerDefaults.java.
References org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.DEFAULT_INDENT.
Referenced by org.sleuthkit.autopsy.contentviewers.artifactviewers.CallLogArtifactViewer.resetComponent(), and org.sleuthkit.autopsy.contentviewers.artifactviewers.ContactArtifactViewer.resetComponent().
|
static |
Returns the spacing between sections in pixels.
Definition at line 135 of file ContentViewerDefaults.java.
References org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.DEFAULT_SECTION_SPACING.
Referenced by org.sleuthkit.autopsy.contentviewers.artifactviewers.ContactArtifactViewer.initiatePersonasSearch(), org.sleuthkit.autopsy.contentviewers.artifactviewers.CallLogArtifactViewer.showCRDisabledMessage(), org.sleuthkit.autopsy.contentviewers.artifactviewers.ContactArtifactViewer.updateContactMethodSection(), org.sleuthkit.autopsy.contentviewers.artifactviewers.ContactArtifactViewer.updateContactName(), org.sleuthkit.autopsy.contentviewers.artifactviewers.CallLogArtifactViewer.updateMetadataView(), org.sleuthkit.autopsy.contentviewers.artifactviewers.CallLogArtifactViewer.updateOtherAttributesView(), org.sleuthkit.autopsy.contentviewers.artifactviewers.ContactArtifactViewer.updateSource(), and org.sleuthkit.autopsy.contentviewers.artifactviewers.CallLogArtifactViewer.updateSourceView().
|
static |
Returns the font to be displayed for sub headers.
Definition at line 99 of file ContentViewerDefaults.java.
References org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.SUB_HEADER_FONT.
|
staticprivate |
Definition at line 56 of file ContentViewerDefaults.java.
Referenced by org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.getPanelBackground().
|
staticprivate |
Definition at line 52 of file ContentViewerDefaults.java.
Referenced by org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.getColumnSpacing().
|
staticprivate |
Definition at line 32 of file ContentViewerDefaults.java.
Referenced by org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.getFont().
|
staticprivate |
Definition at line 37 of file ContentViewerDefaults.java.
|
staticprivate |
Definition at line 49 of file ContentViewerDefaults.java.
Referenced by org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.getSectionIndent().
|
staticprivate |
Definition at line 54 of file ContentViewerDefaults.java.
Referenced by org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.getLineSpacing().
|
staticprivate |
Definition at line 47 of file ContentViewerDefaults.java.
Referenced by org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.getPanelInsets().
|
staticprivate |
Definition at line 50 of file ContentViewerDefaults.java.
Referenced by org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.getSectionSpacing().
|
staticprivate |
Definition at line 41 of file ContentViewerDefaults.java.
Referenced by org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.getHeaderFont().
|
staticprivate |
Definition at line 43 of file ContentViewerDefaults.java.
Referenced by org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.getMessageFont().
|
staticprivate |
Definition at line 45 of file ContentViewerDefaults.java.
Referenced by org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.getMonospacedFont().
|
staticprivate |
Definition at line 35 of file ContentViewerDefaults.java.
Referenced by org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.getPtToPx().
|
staticprivate |
Definition at line 39 of file ContentViewerDefaults.java.
Referenced by org.sleuthkit.autopsy.contentviewers.layout.ContentViewerDefaults.getSubHeaderFont().
Copyright © 2012-2022 Basis Technology. Generated on: Tue Jun 27 2023
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.