mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-15 01:07:42 +00:00
5166 fix matisse issues with MessageContentViewer
This commit is contained in:
parent
c3d66edb8c
commit
e6bbb2e457
@ -271,22 +271,7 @@
|
|||||||
</Constraint>
|
</Constraint>
|
||||||
</Constraints>
|
</Constraints>
|
||||||
|
|
||||||
<Layout>
|
<Layout class="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout"/>
|
||||||
<DimensionLayout dim="0">
|
|
||||||
<Group type="103" groupAlignment="0" attributes="0">
|
|
||||||
<Component id="htmlPanel" alignment="0" pref="647" max="32767" attributes="0"/>
|
|
||||||
</Group>
|
|
||||||
</DimensionLayout>
|
|
||||||
<DimensionLayout dim="1">
|
|
||||||
<Group type="103" groupAlignment="0" attributes="0">
|
|
||||||
<Component id="htmlPanel" alignment="0" pref="362" max="32767" attributes="0"/>
|
|
||||||
</Group>
|
|
||||||
</DimensionLayout>
|
|
||||||
</Layout>
|
|
||||||
<SubComponents>
|
|
||||||
<Component class="org.sleuthkit.autopsy.contentviewers.HtmlPanel" name="htmlPanel">
|
|
||||||
</Component>
|
|
||||||
</SubComponents>
|
|
||||||
</Container>
|
</Container>
|
||||||
<Container class="javax.swing.JScrollPane" name="rtfbodyScrollPane">
|
<Container class="javax.swing.JScrollPane" name="rtfbodyScrollPane">
|
||||||
<Properties>
|
<Properties>
|
||||||
|
@ -87,7 +87,7 @@ public class MessageContentViewer extends javax.swing.JPanel implements DataCont
|
|||||||
private static final int ATTM_TAB_INDEX = 4;
|
private static final int ATTM_TAB_INDEX = 4;
|
||||||
|
|
||||||
private final List<JTextComponent> textAreas;
|
private final List<JTextComponent> textAreas;
|
||||||
|
private final org.sleuthkit.autopsy.contentviewers.HtmlPanel htmlPanel = new org.sleuthkit.autopsy.contentviewers.HtmlPanel();
|
||||||
/**
|
/**
|
||||||
* Artifact currently being displayed
|
* Artifact currently being displayed
|
||||||
*/
|
*/
|
||||||
@ -101,6 +101,7 @@ public class MessageContentViewer extends javax.swing.JPanel implements DataCont
|
|||||||
@NbBundle.Messages("MessageContentViewer.AtrachmentsPanel.title=Attachments")
|
@NbBundle.Messages("MessageContentViewer.AtrachmentsPanel.title=Attachments")
|
||||||
public MessageContentViewer() {
|
public MessageContentViewer() {
|
||||||
initComponents();
|
initComponents();
|
||||||
|
htmlPane.add(htmlPanel);
|
||||||
envelopePanel.setBackground(new Color(0, 0, 0, 38));
|
envelopePanel.setBackground(new Color(0, 0, 0, 38));
|
||||||
drp = DataResultPanel.createInstanceUninitialized(Bundle.MessageContentViewer_AtrachmentsPanel_title(), "", new TableFilterNode(Node.EMPTY, false), 0, null);
|
drp = DataResultPanel.createInstanceUninitialized(Bundle.MessageContentViewer_AtrachmentsPanel_title(), "", new TableFilterNode(Node.EMPTY, false), 0, null);
|
||||||
attachmentsScrollPane.setViewportView(drp);
|
attachmentsScrollPane.setViewportView(drp);
|
||||||
@ -153,7 +154,6 @@ public class MessageContentViewer extends javax.swing.JPanel implements DataCont
|
|||||||
textbodyScrollPane = new javax.swing.JScrollPane();
|
textbodyScrollPane = new javax.swing.JScrollPane();
|
||||||
textbodyTextArea = new javax.swing.JTextArea();
|
textbodyTextArea = new javax.swing.JTextArea();
|
||||||
htmlPane = new javax.swing.JPanel();
|
htmlPane = new javax.swing.JPanel();
|
||||||
htmlPanel = new org.sleuthkit.autopsy.contentviewers.HtmlPanel();
|
|
||||||
rtfbodyScrollPane = new javax.swing.JScrollPane();
|
rtfbodyScrollPane = new javax.swing.JScrollPane();
|
||||||
rtfbodyTextPane = new javax.swing.JTextPane();
|
rtfbodyTextPane = new javax.swing.JTextPane();
|
||||||
attachmentsPanel = new javax.swing.JPanel();
|
attachmentsPanel = new javax.swing.JPanel();
|
||||||
@ -266,17 +266,7 @@ public class MessageContentViewer extends javax.swing.JPanel implements DataCont
|
|||||||
|
|
||||||
msgbodyTabbedPane.addTab(org.openide.util.NbBundle.getMessage(MessageContentViewer.class, "MessageContentViewer.textbodyScrollPane.TabConstraints.tabTitle"), textbodyScrollPane); // NOI18N
|
msgbodyTabbedPane.addTab(org.openide.util.NbBundle.getMessage(MessageContentViewer.class, "MessageContentViewer.textbodyScrollPane.TabConstraints.tabTitle"), textbodyScrollPane); // NOI18N
|
||||||
|
|
||||||
javax.swing.GroupLayout htmlPaneLayout = new javax.swing.GroupLayout(htmlPane);
|
htmlPane.setLayout(new java.awt.BorderLayout());
|
||||||
htmlPane.setLayout(htmlPaneLayout);
|
|
||||||
htmlPaneLayout.setHorizontalGroup(
|
|
||||||
htmlPaneLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
||||||
.addComponent(htmlPanel, javax.swing.GroupLayout.DEFAULT_SIZE, 647, Short.MAX_VALUE)
|
|
||||||
);
|
|
||||||
htmlPaneLayout.setVerticalGroup(
|
|
||||||
htmlPaneLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
|
||||||
.addComponent(htmlPanel, javax.swing.GroupLayout.DEFAULT_SIZE, 362, Short.MAX_VALUE)
|
|
||||||
);
|
|
||||||
|
|
||||||
msgbodyTabbedPane.addTab(org.openide.util.NbBundle.getMessage(MessageContentViewer.class, "MessageContentViewer.htmlPane.TabConstraints.tabTitle"), htmlPane); // NOI18N
|
msgbodyTabbedPane.addTab(org.openide.util.NbBundle.getMessage(MessageContentViewer.class, "MessageContentViewer.htmlPane.TabConstraints.tabTitle"), htmlPane); // NOI18N
|
||||||
|
|
||||||
rtfbodyScrollPane.setVerticalScrollBarPolicy(javax.swing.ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
|
rtfbodyScrollPane.setVerticalScrollBarPolicy(javax.swing.ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
|
||||||
@ -357,7 +347,6 @@ public class MessageContentViewer extends javax.swing.JPanel implements DataCont
|
|||||||
private javax.swing.JScrollPane headersScrollPane;
|
private javax.swing.JScrollPane headersScrollPane;
|
||||||
private javax.swing.JTextArea headersTextArea;
|
private javax.swing.JTextArea headersTextArea;
|
||||||
private javax.swing.JPanel htmlPane;
|
private javax.swing.JPanel htmlPane;
|
||||||
private org.sleuthkit.autopsy.contentviewers.HtmlPanel htmlPanel;
|
|
||||||
private javax.swing.JTabbedPane msgbodyTabbedPane;
|
private javax.swing.JTabbedPane msgbodyTabbedPane;
|
||||||
private javax.swing.JScrollPane rtfbodyScrollPane;
|
private javax.swing.JScrollPane rtfbodyScrollPane;
|
||||||
private javax.swing.JTextPane rtfbodyTextPane;
|
private javax.swing.JTextPane rtfbodyTextPane;
|
||||||
@ -534,7 +523,7 @@ public class MessageContentViewer extends javax.swing.JPanel implements DataCont
|
|||||||
textComponent.setCaretPosition(0); //make sure we start at the top
|
textComponent.setCaretPosition(0); //make sure we start at the top
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
final boolean hasText = attributeText.length() > 0;
|
final boolean hasText = attributeText.length() > 0;
|
||||||
|
|
||||||
msgbodyTabbedPane.setEnabledAt(index, hasText);
|
msgbodyTabbedPane.setEnabledAt(index, hasText);
|
||||||
@ -680,18 +669,18 @@ public class MessageContentViewer extends javax.swing.JPanel implements DataCont
|
|||||||
protected Sheet createSheet() {
|
protected Sheet createSheet() {
|
||||||
Sheet sheet = super.createSheet();
|
Sheet sheet = super.createSheet();
|
||||||
Set<String> keepProps = new HashSet<>(Arrays.asList(
|
Set<String> keepProps = new HashSet<>(Arrays.asList(
|
||||||
NbBundle.getMessage(AbstractAbstractFileNode.class, "AbstractAbstractFileNode.nameColLbl"),
|
NbBundle.getMessage(AbstractAbstractFileNode.class, "AbstractAbstractFileNode.nameColLbl"),
|
||||||
NbBundle.getMessage(AbstractAbstractFileNode.class, "AbstractAbstractFileNode.createSheet.score.name"),
|
NbBundle.getMessage(AbstractAbstractFileNode.class, "AbstractAbstractFileNode.createSheet.score.name"),
|
||||||
NbBundle.getMessage(AbstractAbstractFileNode.class, "AbstractAbstractFileNode.createSheet.comment.name"),
|
NbBundle.getMessage(AbstractAbstractFileNode.class, "AbstractAbstractFileNode.createSheet.comment.name"),
|
||||||
NbBundle.getMessage(AbstractAbstractFileNode.class, "AbstractAbstractFileNode.createSheet.count.name"),
|
NbBundle.getMessage(AbstractAbstractFileNode.class, "AbstractAbstractFileNode.createSheet.count.name"),
|
||||||
NbBundle.getMessage(AbstractAbstractFileNode.class, "AbstractAbstractFileNode.sizeColLbl"),
|
NbBundle.getMessage(AbstractAbstractFileNode.class, "AbstractAbstractFileNode.sizeColLbl"),
|
||||||
NbBundle.getMessage(AbstractAbstractFileNode.class, "AbstractAbstractFileNode.mimeType"),
|
NbBundle.getMessage(AbstractAbstractFileNode.class, "AbstractAbstractFileNode.mimeType"),
|
||||||
NbBundle.getMessage(AbstractAbstractFileNode.class, "AbstractAbstractFileNode.knownColLbl")));
|
NbBundle.getMessage(AbstractAbstractFileNode.class, "AbstractAbstractFileNode.knownColLbl")));
|
||||||
|
|
||||||
//Remove all other props except for the ones above
|
//Remove all other props except for the ones above
|
||||||
Sheet.Set sheetSet = sheet.get(Sheet.PROPERTIES);
|
Sheet.Set sheetSet = sheet.get(Sheet.PROPERTIES);
|
||||||
for(Property<?> p : sheetSet.getProperties()) {
|
for (Property<?> p : sheetSet.getProperties()) {
|
||||||
if(!keepProps.contains(p.getName())){
|
if (!keepProps.contains(p.getName())) {
|
||||||
sheetSet.remove(p.getName());
|
sheetSet.remove(p.getName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user