mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-15 01:07:42 +00:00
bug fixes
This commit is contained in:
parent
0059e24778
commit
dda7ec04d8
@ -1,2 +1,3 @@
|
|||||||
DataSourceUserActivitySummary_getRecentAccounts_calllogMessage=Call Log
|
DataSourceUserActivitySummary_getRecentAccounts_calllogMessage=Call Log
|
||||||
DataSourceUserActivitySummary_getRecentAccounts_emailMessage=Email Message
|
DataSourceUserActivitySummary_getRecentAccounts_emailMessage=Email Message
|
||||||
|
IngestModuleCheckUtil_recentActivityModuleName=Recent Activity
|
||||||
|
@ -59,6 +59,11 @@
|
|||||||
<SubComponents>
|
<SubComponents>
|
||||||
<Container class="javax.swing.JPanel" name="ingestRunningPanel">
|
<Container class="javax.swing.JPanel" name="ingestRunningPanel">
|
||||||
<Properties>
|
<Properties>
|
||||||
|
<Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor">
|
||||||
|
<Border info="org.netbeans.modules.form.compat2.border.EmptyBorderInfo">
|
||||||
|
<EmptyBorder bottom="5" left="1" right="1" top="1"/>
|
||||||
|
</Border>
|
||||||
|
</Property>
|
||||||
<Property name="alignmentX" type="float" value="0.0"/>
|
<Property name="alignmentX" type="float" value="0.0"/>
|
||||||
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
||||||
<Dimension value="[32767, 20]"/>
|
<Dimension value="[32767, 20]"/>
|
||||||
|
@ -177,6 +177,7 @@ public class AnalysisPanel extends BaseDataSourceSummaryPanel {
|
|||||||
mainContentPanel.setMinimumSize(new java.awt.Dimension(200, 452));
|
mainContentPanel.setMinimumSize(new java.awt.Dimension(200, 452));
|
||||||
mainContentPanel.setLayout(new javax.swing.BoxLayout(mainContentPanel, javax.swing.BoxLayout.PAGE_AXIS));
|
mainContentPanel.setLayout(new javax.swing.BoxLayout(mainContentPanel, javax.swing.BoxLayout.PAGE_AXIS));
|
||||||
|
|
||||||
|
ingestRunningPanel.setBorder(javax.swing.BorderFactory.createEmptyBorder(1, 1, 5, 1));
|
||||||
ingestRunningPanel.setAlignmentX(0.0F);
|
ingestRunningPanel.setAlignmentX(0.0F);
|
||||||
ingestRunningPanel.setMaximumSize(new java.awt.Dimension(32767, 20));
|
ingestRunningPanel.setMaximumSize(new java.awt.Dimension(32767, 20));
|
||||||
ingestRunningPanel.setMinimumSize(new java.awt.Dimension(10, 20));
|
ingestRunningPanel.setMinimumSize(new java.awt.Dimension(10, 20));
|
||||||
|
@ -324,7 +324,7 @@ abstract class BaseDataSourceSummaryPanel extends JPanel {
|
|||||||
* Search').
|
* Search').
|
||||||
*/
|
*/
|
||||||
protected <T> void showResultWithModuleCheck(LoadableComponent<List<T>> component, DataFetchResult<List<T>> result, String factoryClass, String moduleName) {
|
protected <T> void showResultWithModuleCheck(LoadableComponent<List<T>> component, DataFetchResult<List<T>> result, String factoryClass, String moduleName) {
|
||||||
Predicate<List<T>> hasResults = (lst) -> lst == null || lst.isEmpty();
|
Predicate<List<T>> hasResults = (lst) -> lst != null && !lst.isEmpty();
|
||||||
showResultWithModuleCheck(component, result, hasResults, factoryClass, moduleName);
|
showResultWithModuleCheck(component, result, hasResults, factoryClass, moduleName);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -348,7 +348,7 @@ abstract class BaseDataSourceSummaryPanel extends JPanel {
|
|||||||
|
|
||||||
if (result != null && result.getResultType() == ResultType.SUCCESS && !hasResults.test(result.getData())) {
|
if (result != null && result.getResultType() == ResultType.SUCCESS && !hasResults.test(result.getData())) {
|
||||||
try {
|
try {
|
||||||
if (ingestModuleCheck.isModuleIngested(getDataSource(), factoryClass)) {
|
if (!ingestModuleCheck.isModuleIngested(getDataSource(), factoryClass)) {
|
||||||
component.showMessage(getDefaultNoIngestMessage(moduleName));
|
component.showMessage(getDefaultNoIngestMessage(moduleName));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
AnalysisPanel_countColumn_title=Count
|
AnalysisPanel_countColumn_title=Count
|
||||||
AnalysisPanel_keyColumn_title=Name
|
AnalysisPanel_keyColumn_title=Name
|
||||||
|
AnalysisPanel_keywordSearchModuleName=Keyword Search
|
||||||
|
# {0} - module name
|
||||||
|
BaseDataSourceSummaryPanel_defaultNotIngestMessage=The {0} Ingest Module has not been run on this datasource.
|
||||||
ContainerPanel.getDataSources.error.text=Failed to get the list of datasources for the current case.
|
ContainerPanel.getDataSources.error.text=Failed to get the list of datasources for the current case.
|
||||||
ContainerPanel.getDataSources.error.title=Load Failure
|
ContainerPanel.getDataSources.error.title=Load Failure
|
||||||
CTL_DataSourceSummaryAction=Data Source Summary
|
CTL_DataSourceSummaryAction=Data Source Summary
|
||||||
@ -54,6 +57,7 @@ PastCasesPanel_onNoCrIngest_message=No results will be shown because the Central
|
|||||||
RecentFilePanel_col_header_domain=Domain
|
RecentFilePanel_col_header_domain=Domain
|
||||||
RecentFilePanel_col_header_path=Path
|
RecentFilePanel_col_header_path=Path
|
||||||
RecentFilePanel_col_header_sender=Sender
|
RecentFilePanel_col_header_sender=Sender
|
||||||
|
RecentFilePanel_emailParserModuleName=Email Parser
|
||||||
RecentFilePanel_no_open_documents=No recently open documents found.
|
RecentFilePanel_no_open_documents=No recently open documents found.
|
||||||
RecentFilesPanel_col_head_date=Date
|
RecentFilesPanel_col_head_date=Date
|
||||||
SizeRepresentationUtil_units_bytes=\ bytes
|
SizeRepresentationUtil_units_bytes=\ bytes
|
||||||
|
@ -53,6 +53,11 @@
|
|||||||
<SubComponents>
|
<SubComponents>
|
||||||
<Container class="javax.swing.JPanel" name="ingestRunningPanel">
|
<Container class="javax.swing.JPanel" name="ingestRunningPanel">
|
||||||
<Properties>
|
<Properties>
|
||||||
|
<Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor">
|
||||||
|
<Border info="org.netbeans.modules.form.compat2.border.EmptyBorderInfo">
|
||||||
|
<EmptyBorder bottom="5" left="1" right="1" top="1"/>
|
||||||
|
</Border>
|
||||||
|
</Property>
|
||||||
<Property name="alignmentX" type="float" value="0.0"/>
|
<Property name="alignmentX" type="float" value="0.0"/>
|
||||||
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
||||||
<Dimension value="[32767, 20]"/>
|
<Dimension value="[32767, 20]"/>
|
||||||
@ -61,7 +66,7 @@
|
|||||||
<Dimension value="[10, 20]"/>
|
<Dimension value="[10, 20]"/>
|
||||||
</Property>
|
</Property>
|
||||||
<Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
<Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
||||||
<Dimension value="[32767, 20]"/>
|
<Dimension value="[10, 20]"/>
|
||||||
</Property>
|
</Property>
|
||||||
</Properties>
|
</Properties>
|
||||||
<AuxValues>
|
<AuxValues>
|
||||||
@ -91,7 +96,7 @@
|
|||||||
<Component class="javax.swing.Box$Filler" name="filler1">
|
<Component class="javax.swing.Box$Filler" name="filler1">
|
||||||
<Properties>
|
<Properties>
|
||||||
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
||||||
<Dimension value="[32767, 2]"/>
|
<Dimension value="[0, 2]"/>
|
||||||
</Property>
|
</Property>
|
||||||
<Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
<Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
||||||
<Dimension value="[0, 2]"/>
|
<Dimension value="[0, 2]"/>
|
||||||
@ -99,6 +104,7 @@
|
|||||||
<Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
<Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
||||||
<Dimension value="[0, 2]"/>
|
<Dimension value="[0, 2]"/>
|
||||||
</Property>
|
</Property>
|
||||||
|
<Property name="alignmentX" type="float" value="0.0"/>
|
||||||
</Properties>
|
</Properties>
|
||||||
<AuxValues>
|
<AuxValues>
|
||||||
<AuxValue name="JavaCodeGenerator_VariableLocal" type="java.lang.Boolean" value="true"/>
|
<AuxValue name="JavaCodeGenerator_VariableLocal" type="java.lang.Boolean" value="true"/>
|
||||||
@ -130,7 +136,7 @@
|
|||||||
<Component class="javax.swing.Box$Filler" name="filler2">
|
<Component class="javax.swing.Box$Filler" name="filler2">
|
||||||
<Properties>
|
<Properties>
|
||||||
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
||||||
<Dimension value="[32767, 20]"/>
|
<Dimension value="[0, 20]"/>
|
||||||
</Property>
|
</Property>
|
||||||
<Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
<Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
||||||
<Dimension value="[0, 20]"/>
|
<Dimension value="[0, 20]"/>
|
||||||
@ -138,6 +144,7 @@
|
|||||||
<Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
<Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
||||||
<Dimension value="[0, 20]"/>
|
<Dimension value="[0, 20]"/>
|
||||||
</Property>
|
</Property>
|
||||||
|
<Property name="alignmentX" type="float" value="0.0"/>
|
||||||
</Properties>
|
</Properties>
|
||||||
<AuxValues>
|
<AuxValues>
|
||||||
<AuxValue name="JavaCodeGenerator_VariableLocal" type="java.lang.Boolean" value="true"/>
|
<AuxValue name="JavaCodeGenerator_VariableLocal" type="java.lang.Boolean" value="true"/>
|
||||||
@ -159,7 +166,7 @@
|
|||||||
<Component class="javax.swing.Box$Filler" name="filler3">
|
<Component class="javax.swing.Box$Filler" name="filler3">
|
||||||
<Properties>
|
<Properties>
|
||||||
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
||||||
<Dimension value="[32767, 2]"/>
|
<Dimension value="[0, 2]"/>
|
||||||
</Property>
|
</Property>
|
||||||
<Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
<Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
||||||
<Dimension value="[0, 2]"/>
|
<Dimension value="[0, 2]"/>
|
||||||
@ -167,6 +174,7 @@
|
|||||||
<Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
<Property name="preferredSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
||||||
<Dimension value="[0, 2]"/>
|
<Dimension value="[0, 2]"/>
|
||||||
</Property>
|
</Property>
|
||||||
|
<Property name="alignmentX" type="float" value="0.0"/>
|
||||||
</Properties>
|
</Properties>
|
||||||
<AuxValues>
|
<AuxValues>
|
||||||
<AuxValue name="JavaCodeGenerator_VariableLocal" type="java.lang.Boolean" value="true"/>
|
<AuxValue name="JavaCodeGenerator_VariableLocal" type="java.lang.Boolean" value="true"/>
|
||||||
@ -200,6 +208,7 @@
|
|||||||
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
||||||
<Dimension value="[0, 32767]"/>
|
<Dimension value="[0, 32767]"/>
|
||||||
</Property>
|
</Property>
|
||||||
|
<Property name="alignmentX" type="float" value="0.0"/>
|
||||||
</Properties>
|
</Properties>
|
||||||
<AuxValues>
|
<AuxValues>
|
||||||
<AuxValue name="JavaCodeGenerator_VariableLocal" type="java.lang.Boolean" value="true"/>
|
<AuxValue name="JavaCodeGenerator_VariableLocal" type="java.lang.Boolean" value="true"/>
|
||||||
|
@ -157,27 +157,29 @@ public class PastCasesPanel extends BaseDataSourceSummaryPanel {
|
|||||||
javax.swing.JPanel mainContentPanel = new javax.swing.JPanel();
|
javax.swing.JPanel mainContentPanel = new javax.swing.JPanel();
|
||||||
javax.swing.JPanel ingestRunningPanel = ingestRunningLabel;
|
javax.swing.JPanel ingestRunningPanel = ingestRunningLabel;
|
||||||
javax.swing.JLabel notableFileLabel = new javax.swing.JLabel();
|
javax.swing.JLabel notableFileLabel = new javax.swing.JLabel();
|
||||||
javax.swing.Box.Filler filler1 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 2), new java.awt.Dimension(0, 2), new java.awt.Dimension(32767, 2));
|
javax.swing.Box.Filler filler1 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 2), new java.awt.Dimension(0, 2), new java.awt.Dimension(0, 2));
|
||||||
javax.swing.JPanel notableFilePanel = notableFileTable;
|
javax.swing.JPanel notableFilePanel = notableFileTable;
|
||||||
javax.swing.Box.Filler filler2 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 20), new java.awt.Dimension(0, 20), new java.awt.Dimension(32767, 20));
|
javax.swing.Box.Filler filler2 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 20), new java.awt.Dimension(0, 20), new java.awt.Dimension(0, 20));
|
||||||
javax.swing.JLabel sameIdLabel = new javax.swing.JLabel();
|
javax.swing.JLabel sameIdLabel = new javax.swing.JLabel();
|
||||||
javax.swing.Box.Filler filler3 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 2), new java.awt.Dimension(0, 2), new java.awt.Dimension(32767, 2));
|
javax.swing.Box.Filler filler3 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 2), new java.awt.Dimension(0, 2), new java.awt.Dimension(0, 2));
|
||||||
javax.swing.JPanel sameIdPanel = sameIdTable;
|
javax.swing.JPanel sameIdPanel = sameIdTable;
|
||||||
javax.swing.Box.Filler filler5 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 0), new java.awt.Dimension(0, 0), new java.awt.Dimension(0, 32767));
|
javax.swing.Box.Filler filler5 = new javax.swing.Box.Filler(new java.awt.Dimension(0, 0), new java.awt.Dimension(0, 0), new java.awt.Dimension(0, 32767));
|
||||||
|
|
||||||
mainContentPanel.setBorder(javax.swing.BorderFactory.createEmptyBorder(10, 10, 10, 10));
|
mainContentPanel.setBorder(javax.swing.BorderFactory.createEmptyBorder(10, 10, 10, 10));
|
||||||
mainContentPanel.setLayout(new javax.swing.BoxLayout(mainContentPanel, javax.swing.BoxLayout.PAGE_AXIS));
|
mainContentPanel.setLayout(new javax.swing.BoxLayout(mainContentPanel, javax.swing.BoxLayout.PAGE_AXIS));
|
||||||
|
|
||||||
|
ingestRunningPanel.setBorder(javax.swing.BorderFactory.createEmptyBorder(1, 1, 5, 1));
|
||||||
ingestRunningPanel.setAlignmentX(0.0F);
|
ingestRunningPanel.setAlignmentX(0.0F);
|
||||||
ingestRunningPanel.setMaximumSize(new java.awt.Dimension(32767, 20));
|
ingestRunningPanel.setMaximumSize(new java.awt.Dimension(32767, 20));
|
||||||
ingestRunningPanel.setMinimumSize(new java.awt.Dimension(10, 20));
|
ingestRunningPanel.setMinimumSize(new java.awt.Dimension(10, 20));
|
||||||
ingestRunningPanel.setPreferredSize(new java.awt.Dimension(32767, 20));
|
ingestRunningPanel.setPreferredSize(new java.awt.Dimension(10, 20));
|
||||||
mainContentPanel.add(ingestRunningPanel);
|
mainContentPanel.add(ingestRunningPanel);
|
||||||
|
|
||||||
org.openide.awt.Mnemonics.setLocalizedText(notableFileLabel, org.openide.util.NbBundle.getMessage(PastCasesPanel.class, "PastCasesPanel.notableFileLabel.text")); // NOI18N
|
org.openide.awt.Mnemonics.setLocalizedText(notableFileLabel, org.openide.util.NbBundle.getMessage(PastCasesPanel.class, "PastCasesPanel.notableFileLabel.text")); // NOI18N
|
||||||
mainContentPanel.add(notableFileLabel);
|
mainContentPanel.add(notableFileLabel);
|
||||||
notableFileLabel.getAccessibleContext().setAccessibleName(org.openide.util.NbBundle.getMessage(PastCasesPanel.class, "PastCasesPanel.notableFileLabel.text")); // NOI18N
|
notableFileLabel.getAccessibleContext().setAccessibleName(org.openide.util.NbBundle.getMessage(PastCasesPanel.class, "PastCasesPanel.notableFileLabel.text")); // NOI18N
|
||||||
|
|
||||||
|
filler1.setAlignmentX(0.0F);
|
||||||
mainContentPanel.add(filler1);
|
mainContentPanel.add(filler1);
|
||||||
|
|
||||||
notableFilePanel.setAlignmentX(0.0F);
|
notableFilePanel.setAlignmentX(0.0F);
|
||||||
@ -185,10 +187,14 @@ public class PastCasesPanel extends BaseDataSourceSummaryPanel {
|
|||||||
notableFilePanel.setMinimumSize(new java.awt.Dimension(100, 106));
|
notableFilePanel.setMinimumSize(new java.awt.Dimension(100, 106));
|
||||||
notableFilePanel.setPreferredSize(new java.awt.Dimension(100, 106));
|
notableFilePanel.setPreferredSize(new java.awt.Dimension(100, 106));
|
||||||
mainContentPanel.add(notableFilePanel);
|
mainContentPanel.add(notableFilePanel);
|
||||||
|
|
||||||
|
filler2.setAlignmentX(0.0F);
|
||||||
mainContentPanel.add(filler2);
|
mainContentPanel.add(filler2);
|
||||||
|
|
||||||
org.openide.awt.Mnemonics.setLocalizedText(sameIdLabel, org.openide.util.NbBundle.getMessage(PastCasesPanel.class, "PastCasesPanel.sameIdLabel.text")); // NOI18N
|
org.openide.awt.Mnemonics.setLocalizedText(sameIdLabel, org.openide.util.NbBundle.getMessage(PastCasesPanel.class, "PastCasesPanel.sameIdLabel.text")); // NOI18N
|
||||||
mainContentPanel.add(sameIdLabel);
|
mainContentPanel.add(sameIdLabel);
|
||||||
|
|
||||||
|
filler3.setAlignmentX(0.0F);
|
||||||
mainContentPanel.add(filler3);
|
mainContentPanel.add(filler3);
|
||||||
|
|
||||||
sameIdPanel.setAlignmentX(0.0F);
|
sameIdPanel.setAlignmentX(0.0F);
|
||||||
@ -196,6 +202,8 @@ public class PastCasesPanel extends BaseDataSourceSummaryPanel {
|
|||||||
sameIdPanel.setMinimumSize(new java.awt.Dimension(100, 106));
|
sameIdPanel.setMinimumSize(new java.awt.Dimension(100, 106));
|
||||||
sameIdPanel.setPreferredSize(new java.awt.Dimension(100, 106));
|
sameIdPanel.setPreferredSize(new java.awt.Dimension(100, 106));
|
||||||
mainContentPanel.add(sameIdPanel);
|
mainContentPanel.add(sameIdPanel);
|
||||||
|
|
||||||
|
filler5.setAlignmentX(0.0F);
|
||||||
mainContentPanel.add(filler5);
|
mainContentPanel.add(filler5);
|
||||||
|
|
||||||
mainScrollPane.setViewportView(mainContentPanel);
|
mainScrollPane.setViewportView(mainContentPanel);
|
||||||
|
@ -31,6 +31,11 @@
|
|||||||
<SubComponents>
|
<SubComponents>
|
||||||
<Container class="javax.swing.JPanel" name="tablePanel">
|
<Container class="javax.swing.JPanel" name="tablePanel">
|
||||||
<Properties>
|
<Properties>
|
||||||
|
<Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor">
|
||||||
|
<Border info="org.netbeans.modules.form.compat2.border.EmptyBorderInfo">
|
||||||
|
<EmptyBorder bottom="10" left="10" right="10" top="10"/>
|
||||||
|
</Border>
|
||||||
|
</Property>
|
||||||
<Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
<Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
||||||
<Dimension value="[400, 400]"/>
|
<Dimension value="[400, 400]"/>
|
||||||
</Property>
|
</Property>
|
||||||
@ -65,7 +70,7 @@
|
|||||||
</AuxValues>
|
</AuxValues>
|
||||||
<Constraints>
|
<Constraints>
|
||||||
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
|
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
|
||||||
<GridBagConstraints gridX="0" gridY="0" gridWidth="1" gridHeight="1" fill="2" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="18" weightX="0.0" weightY="0.0"/>
|
<GridBagConstraints gridX="0" gridY="0" gridWidth="1" gridHeight="1" fill="2" ipadX="0" ipadY="0" insetsTop="0" insetsLeft="0" insetsBottom="5" insetsRight="0" anchor="18" weightX="0.0" weightY="0.0"/>
|
||||||
</Constraint>
|
</Constraint>
|
||||||
</Constraints>
|
</Constraints>
|
||||||
|
|
||||||
@ -77,7 +82,7 @@
|
|||||||
</AuxValues>
|
</AuxValues>
|
||||||
<Constraints>
|
<Constraints>
|
||||||
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
|
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
|
||||||
<GridBagConstraints gridX="0" gridY="2" gridWidth="1" gridHeight="1" fill="1" ipadX="0" ipadY="0" insetsTop="5" insetsLeft="5" insetsBottom="0" insetsRight="5" anchor="11" weightX="1.0" weightY="1.0"/>
|
<GridBagConstraints gridX="0" gridY="2" gridWidth="1" gridHeight="1" fill="1" ipadX="0" ipadY="0" insetsTop="2" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="11" weightX="1.0" weightY="1.0"/>
|
||||||
</Constraint>
|
</Constraint>
|
||||||
</Constraints>
|
</Constraints>
|
||||||
|
|
||||||
@ -89,7 +94,7 @@
|
|||||||
</AuxValues>
|
</AuxValues>
|
||||||
<Constraints>
|
<Constraints>
|
||||||
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
|
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
|
||||||
<GridBagConstraints gridX="0" gridY="4" gridWidth="1" gridHeight="1" fill="1" ipadX="0" ipadY="0" insetsTop="5" insetsLeft="5" insetsBottom="0" insetsRight="5" anchor="11" weightX="1.0" weightY="1.0"/>
|
<GridBagConstraints gridX="0" gridY="4" gridWidth="1" gridHeight="1" fill="1" ipadX="0" ipadY="0" insetsTop="2" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="11" weightX="1.0" weightY="1.0"/>
|
||||||
</Constraint>
|
</Constraint>
|
||||||
</Constraints>
|
</Constraints>
|
||||||
|
|
||||||
@ -101,7 +106,7 @@
|
|||||||
</AuxValues>
|
</AuxValues>
|
||||||
<Constraints>
|
<Constraints>
|
||||||
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
|
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
|
||||||
<GridBagConstraints gridX="0" gridY="6" gridWidth="1" gridHeight="1" fill="1" ipadX="0" ipadY="0" insetsTop="5" insetsLeft="5" insetsBottom="10" insetsRight="5" anchor="11" weightX="1.0" weightY="1.0"/>
|
<GridBagConstraints gridX="0" gridY="6" gridWidth="1" gridHeight="1" fill="1" ipadX="0" ipadY="0" insetsTop="2" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="11" weightX="1.0" weightY="1.0"/>
|
||||||
</Constraint>
|
</Constraint>
|
||||||
</Constraints>
|
</Constraints>
|
||||||
|
|
||||||
@ -119,7 +124,7 @@
|
|||||||
</AuxValues>
|
</AuxValues>
|
||||||
<Constraints>
|
<Constraints>
|
||||||
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
|
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
|
||||||
<GridBagConstraints gridX="0" gridY="1" gridWidth="1" gridHeight="1" fill="2" ipadX="0" ipadY="0" insetsTop="10" insetsLeft="5" insetsBottom="0" insetsRight="5" anchor="11" weightX="0.0" weightY="0.0"/>
|
<GridBagConstraints gridX="0" gridY="1" gridWidth="1" gridHeight="1" fill="2" ipadX="0" ipadY="0" insetsTop="5" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="11" weightX="0.0" weightY="0.0"/>
|
||||||
</Constraint>
|
</Constraint>
|
||||||
</Constraints>
|
</Constraints>
|
||||||
</Component>
|
</Component>
|
||||||
@ -135,7 +140,7 @@
|
|||||||
</AuxValues>
|
</AuxValues>
|
||||||
<Constraints>
|
<Constraints>
|
||||||
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
|
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
|
||||||
<GridBagConstraints gridX="0" gridY="3" gridWidth="1" gridHeight="1" fill="2" ipadX="0" ipadY="0" insetsTop="15" insetsLeft="5" insetsBottom="0" insetsRight="5" anchor="10" weightX="0.0" weightY="0.0"/>
|
<GridBagConstraints gridX="0" gridY="3" gridWidth="1" gridHeight="1" fill="2" ipadX="0" ipadY="0" insetsTop="20" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="10" weightX="0.0" weightY="0.0"/>
|
||||||
</Constraint>
|
</Constraint>
|
||||||
</Constraints>
|
</Constraints>
|
||||||
</Component>
|
</Component>
|
||||||
@ -151,7 +156,7 @@
|
|||||||
</AuxValues>
|
</AuxValues>
|
||||||
<Constraints>
|
<Constraints>
|
||||||
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
|
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout" value="org.netbeans.modules.form.compat2.layouts.DesignGridBagLayout$GridBagConstraintsDescription">
|
||||||
<GridBagConstraints gridX="0" gridY="5" gridWidth="1" gridHeight="1" fill="2" ipadX="0" ipadY="0" insetsTop="15" insetsLeft="5" insetsBottom="0" insetsRight="5" anchor="11" weightX="0.0" weightY="0.0"/>
|
<GridBagConstraints gridX="0" gridY="5" gridWidth="1" gridHeight="1" fill="2" ipadX="0" ipadY="0" insetsTop="20" insetsLeft="0" insetsBottom="0" insetsRight="0" anchor="11" weightX="0.0" weightY="0.0"/>
|
||||||
</Constraint>
|
</Constraint>
|
||||||
</Constraints>
|
</Constraints>
|
||||||
</Component>
|
</Component>
|
||||||
|
@ -237,6 +237,7 @@ public final class RecentFilesPanel extends BaseDataSourceSummaryPanel {
|
|||||||
|
|
||||||
setLayout(new java.awt.BorderLayout());
|
setLayout(new java.awt.BorderLayout());
|
||||||
|
|
||||||
|
tablePanel.setBorder(javax.swing.BorderFactory.createEmptyBorder(10, 10, 10, 10));
|
||||||
tablePanel.setMinimumSize(new java.awt.Dimension(400, 400));
|
tablePanel.setMinimumSize(new java.awt.Dimension(400, 400));
|
||||||
tablePanel.setPreferredSize(new java.awt.Dimension(600, 400));
|
tablePanel.setPreferredSize(new java.awt.Dimension(600, 400));
|
||||||
tablePanel.setLayout(new java.awt.GridBagLayout());
|
tablePanel.setLayout(new java.awt.GridBagLayout());
|
||||||
@ -250,6 +251,7 @@ public final class RecentFilesPanel extends BaseDataSourceSummaryPanel {
|
|||||||
gridBagConstraints.gridy = 0;
|
gridBagConstraints.gridy = 0;
|
||||||
gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
|
gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
|
||||||
gridBagConstraints.anchor = java.awt.GridBagConstraints.NORTHWEST;
|
gridBagConstraints.anchor = java.awt.GridBagConstraints.NORTHWEST;
|
||||||
|
gridBagConstraints.insets = new java.awt.Insets(0, 0, 5, 0);
|
||||||
tablePanel.add(ingestRunningPanel, gridBagConstraints);
|
tablePanel.add(ingestRunningPanel, gridBagConstraints);
|
||||||
gridBagConstraints = new java.awt.GridBagConstraints();
|
gridBagConstraints = new java.awt.GridBagConstraints();
|
||||||
gridBagConstraints.gridx = 0;
|
gridBagConstraints.gridx = 0;
|
||||||
@ -258,7 +260,7 @@ public final class RecentFilesPanel extends BaseDataSourceSummaryPanel {
|
|||||||
gridBagConstraints.anchor = java.awt.GridBagConstraints.NORTH;
|
gridBagConstraints.anchor = java.awt.GridBagConstraints.NORTH;
|
||||||
gridBagConstraints.weightx = 1.0;
|
gridBagConstraints.weightx = 1.0;
|
||||||
gridBagConstraints.weighty = 1.0;
|
gridBagConstraints.weighty = 1.0;
|
||||||
gridBagConstraints.insets = new java.awt.Insets(5, 5, 0, 5);
|
gridBagConstraints.insets = new java.awt.Insets(2, 0, 0, 0);
|
||||||
tablePanel.add(openedDocPane, gridBagConstraints);
|
tablePanel.add(openedDocPane, gridBagConstraints);
|
||||||
gridBagConstraints = new java.awt.GridBagConstraints();
|
gridBagConstraints = new java.awt.GridBagConstraints();
|
||||||
gridBagConstraints.gridx = 0;
|
gridBagConstraints.gridx = 0;
|
||||||
@ -267,7 +269,7 @@ public final class RecentFilesPanel extends BaseDataSourceSummaryPanel {
|
|||||||
gridBagConstraints.anchor = java.awt.GridBagConstraints.NORTH;
|
gridBagConstraints.anchor = java.awt.GridBagConstraints.NORTH;
|
||||||
gridBagConstraints.weightx = 1.0;
|
gridBagConstraints.weightx = 1.0;
|
||||||
gridBagConstraints.weighty = 1.0;
|
gridBagConstraints.weighty = 1.0;
|
||||||
gridBagConstraints.insets = new java.awt.Insets(5, 5, 0, 5);
|
gridBagConstraints.insets = new java.awt.Insets(2, 0, 0, 0);
|
||||||
tablePanel.add(downloadsPane, gridBagConstraints);
|
tablePanel.add(downloadsPane, gridBagConstraints);
|
||||||
gridBagConstraints = new java.awt.GridBagConstraints();
|
gridBagConstraints = new java.awt.GridBagConstraints();
|
||||||
gridBagConstraints.gridx = 0;
|
gridBagConstraints.gridx = 0;
|
||||||
@ -276,7 +278,7 @@ public final class RecentFilesPanel extends BaseDataSourceSummaryPanel {
|
|||||||
gridBagConstraints.anchor = java.awt.GridBagConstraints.NORTH;
|
gridBagConstraints.anchor = java.awt.GridBagConstraints.NORTH;
|
||||||
gridBagConstraints.weightx = 1.0;
|
gridBagConstraints.weightx = 1.0;
|
||||||
gridBagConstraints.weighty = 1.0;
|
gridBagConstraints.weighty = 1.0;
|
||||||
gridBagConstraints.insets = new java.awt.Insets(5, 5, 10, 5);
|
gridBagConstraints.insets = new java.awt.Insets(2, 0, 0, 0);
|
||||||
tablePanel.add(attachmentsPane, gridBagConstraints);
|
tablePanel.add(attachmentsPane, gridBagConstraints);
|
||||||
|
|
||||||
org.openide.awt.Mnemonics.setLocalizedText(openDocsLabel, org.openide.util.NbBundle.getMessage(RecentFilesPanel.class, "RecentFilesPanel.openDocsLabel.text")); // NOI18N
|
org.openide.awt.Mnemonics.setLocalizedText(openDocsLabel, org.openide.util.NbBundle.getMessage(RecentFilesPanel.class, "RecentFilesPanel.openDocsLabel.text")); // NOI18N
|
||||||
@ -285,7 +287,7 @@ public final class RecentFilesPanel extends BaseDataSourceSummaryPanel {
|
|||||||
gridBagConstraints.gridy = 1;
|
gridBagConstraints.gridy = 1;
|
||||||
gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
|
gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
|
||||||
gridBagConstraints.anchor = java.awt.GridBagConstraints.NORTH;
|
gridBagConstraints.anchor = java.awt.GridBagConstraints.NORTH;
|
||||||
gridBagConstraints.insets = new java.awt.Insets(10, 5, 0, 5);
|
gridBagConstraints.insets = new java.awt.Insets(5, 0, 0, 0);
|
||||||
tablePanel.add(openDocsLabel, gridBagConstraints);
|
tablePanel.add(openDocsLabel, gridBagConstraints);
|
||||||
|
|
||||||
org.openide.awt.Mnemonics.setLocalizedText(downloadLabel, org.openide.util.NbBundle.getMessage(RecentFilesPanel.class, "RecentFilesPanel.downloadLabel.text")); // NOI18N
|
org.openide.awt.Mnemonics.setLocalizedText(downloadLabel, org.openide.util.NbBundle.getMessage(RecentFilesPanel.class, "RecentFilesPanel.downloadLabel.text")); // NOI18N
|
||||||
@ -293,7 +295,7 @@ public final class RecentFilesPanel extends BaseDataSourceSummaryPanel {
|
|||||||
gridBagConstraints.gridx = 0;
|
gridBagConstraints.gridx = 0;
|
||||||
gridBagConstraints.gridy = 3;
|
gridBagConstraints.gridy = 3;
|
||||||
gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
|
gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
|
||||||
gridBagConstraints.insets = new java.awt.Insets(15, 5, 0, 5);
|
gridBagConstraints.insets = new java.awt.Insets(20, 0, 0, 0);
|
||||||
tablePanel.add(downloadLabel, gridBagConstraints);
|
tablePanel.add(downloadLabel, gridBagConstraints);
|
||||||
|
|
||||||
org.openide.awt.Mnemonics.setLocalizedText(attachmentLabel, org.openide.util.NbBundle.getMessage(RecentFilesPanel.class, "RecentFilesPanel.attachmentLabel.text")); // NOI18N
|
org.openide.awt.Mnemonics.setLocalizedText(attachmentLabel, org.openide.util.NbBundle.getMessage(RecentFilesPanel.class, "RecentFilesPanel.attachmentLabel.text")); // NOI18N
|
||||||
@ -302,7 +304,7 @@ public final class RecentFilesPanel extends BaseDataSourceSummaryPanel {
|
|||||||
gridBagConstraints.gridy = 5;
|
gridBagConstraints.gridy = 5;
|
||||||
gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
|
gridBagConstraints.fill = java.awt.GridBagConstraints.HORIZONTAL;
|
||||||
gridBagConstraints.anchor = java.awt.GridBagConstraints.NORTH;
|
gridBagConstraints.anchor = java.awt.GridBagConstraints.NORTH;
|
||||||
gridBagConstraints.insets = new java.awt.Insets(15, 5, 0, 5);
|
gridBagConstraints.insets = new java.awt.Insets(20, 0, 0, 0);
|
||||||
tablePanel.add(attachmentLabel, gridBagConstraints);
|
tablePanel.add(attachmentLabel, gridBagConstraints);
|
||||||
|
|
||||||
scrollPane.setViewportView(tablePanel);
|
scrollPane.setViewportView(tablePanel);
|
||||||
|
@ -54,6 +54,11 @@
|
|||||||
<SubComponents>
|
<SubComponents>
|
||||||
<Container class="javax.swing.JPanel" name="ingestRunningPanel">
|
<Container class="javax.swing.JPanel" name="ingestRunningPanel">
|
||||||
<Properties>
|
<Properties>
|
||||||
|
<Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor">
|
||||||
|
<Border info="org.netbeans.modules.form.compat2.border.EmptyBorderInfo">
|
||||||
|
<EmptyBorder bottom="5" left="1" right="1" top="1"/>
|
||||||
|
</Border>
|
||||||
|
</Property>
|
||||||
<Property name="alignmentX" type="float" value="0.0"/>
|
<Property name="alignmentX" type="float" value="0.0"/>
|
||||||
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
||||||
<Dimension value="[32767, 20]"/>
|
<Dimension value="[32767, 20]"/>
|
||||||
|
@ -194,7 +194,7 @@ class TypesPanel extends BaseDataSourceSummaryPanel {
|
|||||||
showResultWithModuleCheck(
|
showResultWithModuleCheck(
|
||||||
usageLabel,
|
usageLabel,
|
||||||
result,
|
result,
|
||||||
StringUtils::isBlank,
|
StringUtils::isNotBlank,
|
||||||
IngestModuleCheckUtil.RECENT_ACTIVITY_FACTORY,
|
IngestModuleCheckUtil.RECENT_ACTIVITY_FACTORY,
|
||||||
IngestModuleCheckUtil.RECENT_ACTIVITY_MODULE_NAME);
|
IngestModuleCheckUtil.RECENT_ACTIVITY_MODULE_NAME);
|
||||||
}),
|
}),
|
||||||
@ -205,7 +205,7 @@ class TypesPanel extends BaseDataSourceSummaryPanel {
|
|||||||
showResultWithModuleCheck(
|
showResultWithModuleCheck(
|
||||||
osLabel,
|
osLabel,
|
||||||
result,
|
result,
|
||||||
StringUtils::isBlank,
|
StringUtils::isNotBlank,
|
||||||
IngestModuleCheckUtil.RECENT_ACTIVITY_FACTORY,
|
IngestModuleCheckUtil.RECENT_ACTIVITY_FACTORY,
|
||||||
IngestModuleCheckUtil.RECENT_ACTIVITY_MODULE_NAME);
|
IngestModuleCheckUtil.RECENT_ACTIVITY_MODULE_NAME);
|
||||||
}),
|
}),
|
||||||
@ -356,6 +356,7 @@ class TypesPanel extends BaseDataSourceSummaryPanel {
|
|||||||
contentParent.setMinimumSize(new java.awt.Dimension(400, 490));
|
contentParent.setMinimumSize(new java.awt.Dimension(400, 490));
|
||||||
contentParent.setLayout(new javax.swing.BoxLayout(contentParent, javax.swing.BoxLayout.PAGE_AXIS));
|
contentParent.setLayout(new javax.swing.BoxLayout(contentParent, javax.swing.BoxLayout.PAGE_AXIS));
|
||||||
|
|
||||||
|
ingestRunningPanel.setBorder(javax.swing.BorderFactory.createEmptyBorder(1, 1, 5, 1));
|
||||||
ingestRunningPanel.setAlignmentX(0.0F);
|
ingestRunningPanel.setAlignmentX(0.0F);
|
||||||
ingestRunningPanel.setMaximumSize(new java.awt.Dimension(32767, 20));
|
ingestRunningPanel.setMaximumSize(new java.awt.Dimension(32767, 20));
|
||||||
ingestRunningPanel.setMinimumSize(new java.awt.Dimension(10, 20));
|
ingestRunningPanel.setMinimumSize(new java.awt.Dimension(10, 20));
|
||||||
|
@ -62,6 +62,11 @@
|
|||||||
<SubComponents>
|
<SubComponents>
|
||||||
<Container class="javax.swing.JPanel" name="ingestRunningPanel">
|
<Container class="javax.swing.JPanel" name="ingestRunningPanel">
|
||||||
<Properties>
|
<Properties>
|
||||||
|
<Property name="border" type="javax.swing.border.Border" editor="org.netbeans.modules.form.editors2.BorderEditor">
|
||||||
|
<Border info="org.netbeans.modules.form.compat2.border.EmptyBorderInfo">
|
||||||
|
<EmptyBorder bottom="5" left="1" right="1" top="1"/>
|
||||||
|
</Border>
|
||||||
|
</Property>
|
||||||
<Property name="alignmentX" type="float" value="0.0"/>
|
<Property name="alignmentX" type="float" value="0.0"/>
|
||||||
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
|
||||||
<Dimension value="[32767, 20]"/>
|
<Dimension value="[32767, 20]"/>
|
||||||
|
@ -27,6 +27,7 @@ import java.util.List;
|
|||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
import org.apache.commons.lang.StringUtils;
|
import org.apache.commons.lang.StringUtils;
|
||||||
import org.openide.util.NbBundle.Messages;
|
import org.openide.util.NbBundle.Messages;
|
||||||
|
import org.sleuthkit.autopsy.datasourcesummary.datamodel.IngestModuleCheckUtil;
|
||||||
import org.sleuthkit.autopsy.datasourcesummary.datamodel.UserActivitySummary;
|
import org.sleuthkit.autopsy.datasourcesummary.datamodel.UserActivitySummary;
|
||||||
import org.sleuthkit.autopsy.datasourcesummary.datamodel.TopProgramsSummary;
|
import org.sleuthkit.autopsy.datasourcesummary.datamodel.TopProgramsSummary;
|
||||||
import org.sleuthkit.autopsy.datasourcesummary.datamodel.UserActivitySummary.TopAccountResult;
|
import org.sleuthkit.autopsy.datasourcesummary.datamodel.UserActivitySummary.TopAccountResult;
|
||||||
@ -367,6 +368,7 @@ public class UserActivityPanel extends BaseDataSourceSummaryPanel {
|
|||||||
contentPanel.setMinimumSize(new java.awt.Dimension(10, 450));
|
contentPanel.setMinimumSize(new java.awt.Dimension(10, 450));
|
||||||
contentPanel.setLayout(new javax.swing.BoxLayout(contentPanel, javax.swing.BoxLayout.PAGE_AXIS));
|
contentPanel.setLayout(new javax.swing.BoxLayout(contentPanel, javax.swing.BoxLayout.PAGE_AXIS));
|
||||||
|
|
||||||
|
ingestRunningPanel.setBorder(javax.swing.BorderFactory.createEmptyBorder(1, 1, 5, 1));
|
||||||
ingestRunningPanel.setAlignmentX(0.0F);
|
ingestRunningPanel.setAlignmentX(0.0F);
|
||||||
ingestRunningPanel.setMaximumSize(new java.awt.Dimension(32767, 20));
|
ingestRunningPanel.setMaximumSize(new java.awt.Dimension(32767, 20));
|
||||||
ingestRunningPanel.setMinimumSize(new java.awt.Dimension(10, 20));
|
ingestRunningPanel.setMinimumSize(new java.awt.Dimension(10, 20));
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
AbstractLoadableComponent_errorMessage_defaultText=There was an error loading results.
|
AbstractLoadableComponent_errorMessage_defaultText=There was an error loading results.
|
||||||
AbstractLoadableComponent_loadingMessage_defaultText=Loading results...
|
AbstractLoadableComponent_loadingMessage_defaultText=Loading results...
|
||||||
AbstractLoadableComponent_noDataExists_defaultText=No data exists.
|
AbstractLoadableComponent_noDataExists_defaultText=No data exists.
|
||||||
|
IngestRunningLabel_defaultMessage=Ingest is currently running.
|
||||||
|
@ -126,6 +126,10 @@ public class IngestRunningLabel extends JPanel {
|
|||||||
public IngestRunningLabel(String message, boolean showWarningIcon) {
|
public IngestRunningLabel(String message, boolean showWarningIcon) {
|
||||||
JLabel jlabel = new JLabel();
|
JLabel jlabel = new JLabel();
|
||||||
jlabel.setText(message);
|
jlabel.setText(message);
|
||||||
|
jlabel.setVerticalAlignment(JLabel.TOP);
|
||||||
|
jlabel.setVerticalTextPosition(JLabel.TOP);
|
||||||
|
jlabel.setHorizontalAlignment(JLabel.LEFT);
|
||||||
|
jlabel.setHorizontalTextPosition(JLabel.LEFT);
|
||||||
if (showWarningIcon) {
|
if (showWarningIcon) {
|
||||||
jlabel.setIcon(new ImageIcon(DEFAULT_ICON));
|
jlabel.setIcon(new ImageIcon(DEFAULT_ICON));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user