mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 10:17:41 +00:00
Removed Options button from Review panel
This commit is contained in:
parent
4138b61a82
commit
e84dbc72f5
@ -219,7 +219,6 @@ SingleUserCaseImporter.FailedToComplete=Failed to complete processing of
|
|||||||
SingleUserCaseImporter.CompletedBatch=Completed batch processing of
|
SingleUserCaseImporter.CompletedBatch=Completed batch processing of
|
||||||
SingleUserCaseImporter.AbortingBatch=Aborting batch processing of
|
SingleUserCaseImporter.AbortingBatch=Aborting batch processing of
|
||||||
SingleUserCaseImporter.SourceImageMissing=. Source image missing for
|
SingleUserCaseImporter.SourceImageMissing=. Source image missing for
|
||||||
ReviewModeCasePanel.bnOptions.text=Op&tions
|
|
||||||
ReviewModeCasePanel.CaseHeaderText=Case
|
ReviewModeCasePanel.CaseHeaderText=Case
|
||||||
ReviewModeCasePanel.CreatedTimeHeaderText=Created Time
|
ReviewModeCasePanel.CreatedTimeHeaderText=Created Time
|
||||||
ReviewModeCasePanel.StatusIconHeaderText=Status
|
ReviewModeCasePanel.StatusIconHeaderText=Status
|
||||||
|
@ -33,8 +33,6 @@
|
|||||||
<Component id="bnRefresh" min="-2" max="-2" attributes="0"/>
|
<Component id="bnRefresh" min="-2" max="-2" attributes="0"/>
|
||||||
<EmptySpace type="separate" max="-2" attributes="0"/>
|
<EmptySpace type="separate" max="-2" attributes="0"/>
|
||||||
<Component id="bnShowLog" min="-2" max="-2" attributes="0"/>
|
<Component id="bnShowLog" min="-2" max="-2" attributes="0"/>
|
||||||
<EmptySpace type="separate" max="-2" attributes="0"/>
|
|
||||||
<Component id="bnOptions" min="-2" max="-2" attributes="0"/>
|
|
||||||
<EmptySpace max="32767" attributes="0"/>
|
<EmptySpace max="32767" attributes="0"/>
|
||||||
<Component id="panelFilter" min="-2" max="-2" attributes="0"/>
|
<Component id="panelFilter" min="-2" max="-2" attributes="0"/>
|
||||||
<EmptySpace min="-2" pref="20" max="-2" attributes="0"/>
|
<EmptySpace min="-2" pref="20" max="-2" attributes="0"/>
|
||||||
@ -63,7 +61,6 @@
|
|||||||
<Component id="bnOpen" alignment="3" min="-2" max="-2" attributes="0"/>
|
<Component id="bnOpen" alignment="3" min="-2" max="-2" attributes="0"/>
|
||||||
<Component id="bnRefresh" alignment="3" min="-2" max="-2" attributes="0"/>
|
<Component id="bnRefresh" alignment="3" min="-2" max="-2" attributes="0"/>
|
||||||
<Component id="bnShowLog" alignment="3" min="-2" max="-2" attributes="0"/>
|
<Component id="bnShowLog" alignment="3" min="-2" max="-2" attributes="0"/>
|
||||||
<Component id="bnOptions" alignment="3" min="-2" max="-2" attributes="0"/>
|
|
||||||
</Group>
|
</Group>
|
||||||
<EmptySpace min="-2" pref="36" max="-2" attributes="0"/>
|
<EmptySpace min="-2" pref="36" max="-2" attributes="0"/>
|
||||||
</Group>
|
</Group>
|
||||||
@ -236,15 +233,5 @@
|
|||||||
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="bnShowLogActionPerformed"/>
|
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="bnShowLogActionPerformed"/>
|
||||||
</Events>
|
</Events>
|
||||||
</Component>
|
</Component>
|
||||||
<Component class="javax.swing.JButton" name="bnOptions">
|
|
||||||
<Properties>
|
|
||||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.i18n.form.FormI18nStringEditor">
|
|
||||||
<ResourceString bundle="org/sleuthkit/autopsy/experimental/autoingest/Bundle.properties" key="ReviewModeCasePanel.bnOptions.text" replaceFormat="org.openide.util.NbBundle.getMessage({sourceFileName}.class, "{key}")"/>
|
|
||||||
</Property>
|
|
||||||
</Properties>
|
|
||||||
<Events>
|
|
||||||
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="bnOptionsActionPerformed"/>
|
|
||||||
</Events>
|
|
||||||
</Component>
|
|
||||||
</SubComponents>
|
</SubComponents>
|
||||||
</Form>
|
</Form>
|
||||||
|
@ -39,7 +39,6 @@ import javax.swing.table.TableColumn;
|
|||||||
import org.sleuthkit.autopsy.casemodule.StartupWindowProvider;
|
import org.sleuthkit.autopsy.casemodule.StartupWindowProvider;
|
||||||
import java.awt.Cursor;
|
import java.awt.Cursor;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import org.netbeans.api.options.OptionsDisplayer;
|
|
||||||
import org.openide.windows.WindowManager;
|
import org.openide.windows.WindowManager;
|
||||||
import org.sleuthkit.autopsy.casemodule.CaseMetadata;
|
import org.sleuthkit.autopsy.casemodule.CaseMetadata;
|
||||||
import org.sleuthkit.autopsy.experimental.autoingest.ReviewModeCaseManager.ReviewModeCaseManagerException;
|
import org.sleuthkit.autopsy.experimental.autoingest.ReviewModeCaseManager.ReviewModeCaseManagerException;
|
||||||
@ -385,7 +384,6 @@ public final class ReviewModeCasePanel extends JPanel {
|
|||||||
rbDays = new javax.swing.JRadioButton();
|
rbDays = new javax.swing.JRadioButton();
|
||||||
rbGroupLabel = new javax.swing.JLabel();
|
rbGroupLabel = new javax.swing.JLabel();
|
||||||
bnShowLog = new javax.swing.JButton();
|
bnShowLog = new javax.swing.JButton();
|
||||||
bnOptions = new javax.swing.JButton();
|
|
||||||
|
|
||||||
setName("Completed Cases"); // NOI18N
|
setName("Completed Cases"); // NOI18N
|
||||||
|
|
||||||
@ -492,13 +490,6 @@ public final class ReviewModeCasePanel extends JPanel {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
org.openide.awt.Mnemonics.setLocalizedText(bnOptions, org.openide.util.NbBundle.getMessage(ReviewModeCasePanel.class, "ReviewModeCasePanel.bnOptions.text")); // NOI18N
|
|
||||||
bnOptions.addActionListener(new java.awt.event.ActionListener() {
|
|
||||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
|
||||||
bnOptionsActionPerformed(evt);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
|
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(this);
|
||||||
this.setLayout(layout);
|
this.setLayout(layout);
|
||||||
layout.setHorizontalGroup(
|
layout.setHorizontalGroup(
|
||||||
@ -513,8 +504,6 @@ public final class ReviewModeCasePanel extends JPanel {
|
|||||||
.addComponent(bnRefresh)
|
.addComponent(bnRefresh)
|
||||||
.addGap(18, 18, 18)
|
.addGap(18, 18, 18)
|
||||||
.addComponent(bnShowLog)
|
.addComponent(bnShowLog)
|
||||||
.addGap(18, 18, 18)
|
|
||||||
.addComponent(bnOptions)
|
|
||||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
||||||
.addComponent(panelFilter, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
.addComponent(panelFilter, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||||
.addGap(20, 20, 20))
|
.addGap(20, 20, 20))
|
||||||
@ -536,8 +525,7 @@ public final class ReviewModeCasePanel extends JPanel {
|
|||||||
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
||||||
.addComponent(bnOpen)
|
.addComponent(bnOpen)
|
||||||
.addComponent(bnRefresh)
|
.addComponent(bnRefresh)
|
||||||
.addComponent(bnShowLog)
|
.addComponent(bnShowLog))
|
||||||
.addComponent(bnOptions))
|
|
||||||
.addGap(36, 36, 36))))
|
.addGap(36, 36, 36))))
|
||||||
);
|
);
|
||||||
}// </editor-fold>//GEN-END:initComponents
|
}// </editor-fold>//GEN-END:initComponents
|
||||||
@ -611,12 +599,6 @@ public final class ReviewModeCasePanel extends JPanel {
|
|||||||
}
|
}
|
||||||
}//GEN-LAST:event_bnShowLogActionPerformed
|
}//GEN-LAST:event_bnShowLogActionPerformed
|
||||||
|
|
||||||
private void bnOptionsActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_bnOptionsActionPerformed
|
|
||||||
setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
|
|
||||||
OptionsDisplayer.getDefault().open();
|
|
||||||
setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
|
|
||||||
}//GEN-LAST:event_bnOptionsActionPerformed
|
|
||||||
|
|
||||||
private void casesTableMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_casesTableMouseClicked
|
private void casesTableMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_casesTableMouseClicked
|
||||||
if (evt.getClickCount() == 2) {
|
if (evt.getClickCount() == 2) {
|
||||||
Path caseMetadataFilePath = Paths.get((String) caseTableModel.getValueAt(casesTable.getSelectedRow(),
|
Path caseMetadataFilePath = Paths.get((String) caseTableModel.getValueAt(casesTable.getSelectedRow(),
|
||||||
@ -628,7 +610,6 @@ public final class ReviewModeCasePanel extends JPanel {
|
|||||||
|
|
||||||
// Variables declaration - do not modify//GEN-BEGIN:variables
|
// Variables declaration - do not modify//GEN-BEGIN:variables
|
||||||
private javax.swing.JButton bnOpen;
|
private javax.swing.JButton bnOpen;
|
||||||
private javax.swing.JButton bnOptions;
|
|
||||||
private javax.swing.JButton bnRefresh;
|
private javax.swing.JButton bnRefresh;
|
||||||
private javax.swing.JButton bnShowLog;
|
private javax.swing.JButton bnShowLog;
|
||||||
private javax.swing.JTable casesTable;
|
private javax.swing.JTable casesTable;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user