mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-19 11:07:43 +00:00
finish showing rejected results Action
This commit is contained in:
parent
c34744f3fd
commit
360d12c68c
@ -86,11 +86,24 @@ public class Accounts extends Observable implements AutopsyVisitableItem {
|
|||||||
@GuardedBy("Accounts.class")
|
@GuardedBy("Accounts.class")
|
||||||
private static boolean iinsLoaded = false;
|
private static boolean iinsLoaded = false;
|
||||||
|
|
||||||
|
|
||||||
private SleuthkitCase skCase;
|
private SleuthkitCase skCase;
|
||||||
|
|
||||||
private boolean showRejected = false;
|
private boolean showRejected = false;
|
||||||
|
|
||||||
|
void showRejected(boolean showRejected) {
|
||||||
|
|
||||||
|
boolean needsUpdate = showRejected != this.showRejected;
|
||||||
|
this.showRejected = showRejected;
|
||||||
|
|
||||||
|
if (needsUpdate) {
|
||||||
|
update();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
boolean isShowRejected() {
|
||||||
|
return showRejected;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Load the IIN range information from disk. If the map has already been
|
* Load the IIN range information from disk. If the map has already been
|
||||||
* initialized, don't load again.
|
* initialized, don't load again.
|
||||||
@ -214,7 +227,7 @@ public class Accounts extends Observable implements AutopsyVisitableItem {
|
|||||||
public class AccountsRootNode extends DisplayableItemNode {
|
public class AccountsRootNode extends DisplayableItemNode {
|
||||||
|
|
||||||
AccountsRootNode() {
|
AccountsRootNode() {
|
||||||
super(Children.create(new AccountTypeFactory(), true));
|
super(Children.create(new AccountTypeFactory(), true), Lookups.singleton(Accounts.this));
|
||||||
super.setName("Accounts"); //NON-NLS
|
super.setName("Accounts"); //NON-NLS
|
||||||
super.setDisplayName(Bundle.Accounts_RootNode_displayName());
|
super.setDisplayName(Bundle.Accounts_RootNode_displayName());
|
||||||
this.setIconBaseWithExtension("org/sleuthkit/autopsy/images/account_menu.png"); //NON-NLS
|
this.setIconBaseWithExtension("org/sleuthkit/autopsy/images/account_menu.png"); //NON-NLS
|
||||||
@ -230,14 +243,6 @@ public class Accounts extends Observable implements AutopsyVisitableItem {
|
|||||||
return v.visit(this);
|
return v.visit(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public Action[] getActions(boolean context) {
|
|
||||||
Action[] actions = super.getActions(context);
|
|
||||||
ArrayList<Action> actionsList = new ArrayList<>();
|
|
||||||
actionsList.addAll(Arrays.asList(actions));
|
|
||||||
actionsList.add(new SetShowRejected(!showRejected));
|
|
||||||
return actionsList.toArray(new Action[actionsList.size()]);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -971,22 +976,6 @@ public class Accounts extends Observable implements AutopsyVisitableItem {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private class SetShowRejected extends AbstractAction {
|
|
||||||
|
|
||||||
private final boolean show;
|
|
||||||
|
|
||||||
public SetShowRejected(boolean show) {
|
|
||||||
super(show ? "Show Rejected Results" : "Hide Rejected Results");
|
|
||||||
this.show = show;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void actionPerformed(ActionEvent e) {
|
|
||||||
showRejected = show;
|
|
||||||
update();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private class RejectAccounts extends AbstractAction {
|
private class RejectAccounts extends AbstractAction {
|
||||||
|
|
||||||
private final Collection<? extends BlackboardArtifact> artifacts;
|
private final Collection<? extends BlackboardArtifact> artifacts;
|
||||||
@ -1171,4 +1160,5 @@ public class Accounts extends Observable implements AutopsyVisitableItem {
|
|||||||
return bankCity;
|
return bankCity;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,25 @@
|
|||||||
|
/*
|
||||||
|
* To change this license header, choose License Headers in Project Properties.
|
||||||
|
* To change this template file, choose Tools | Templates
|
||||||
|
* and open the template in the editor.
|
||||||
|
*/
|
||||||
|
package org.sleuthkit.autopsy.datamodel;
|
||||||
|
|
||||||
|
import java.awt.event.ActionEvent;
|
||||||
|
import javax.swing.AbstractAction;
|
||||||
|
|
||||||
|
public final class SetShowRejected extends AbstractAction {
|
||||||
|
|
||||||
|
private final Accounts accounts;
|
||||||
|
|
||||||
|
public SetShowRejected(Accounts accounts) {
|
||||||
|
super("Show Rejected Results");
|
||||||
|
this.accounts = accounts;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void actionPerformed(ActionEvent e) {
|
||||||
|
accounts.showRejected(accounts.isShowRejected() == false);
|
||||||
|
}
|
||||||
|
}
|
@ -93,3 +93,4 @@ ExtractUnallocAction.done.notifyMsg.completedExtract.msg=Files were extracted to
|
|||||||
ExtractUnallocAction.done.errMsg.title=Error Extracting
|
ExtractUnallocAction.done.errMsg.title=Error Extracting
|
||||||
ExtractUnallocAction.done.errMsg.msg=Error extracting unallocated space\: {0}
|
ExtractUnallocAction.done.errMsg.msg=Error extracting unallocated space\: {0}
|
||||||
ExtractAction.done.notifyMsg.extractErr=Error extracting files\: {0}
|
ExtractAction.done.notifyMsg.extractErr=Error extracting files\: {0}
|
||||||
|
DirectoryTreeTopComponent.showRejectedCheckBox.text=Show Rejected Results
|
||||||
|
@ -16,28 +16,29 @@
|
|||||||
<Layout>
|
<Layout>
|
||||||
<DimensionLayout dim="0">
|
<DimensionLayout dim="0">
|
||||||
<Group type="103" groupAlignment="0" attributes="0">
|
<Group type="103" groupAlignment="0" attributes="0">
|
||||||
<Group type="102" alignment="0" attributes="0">
|
<Component id="jScrollPane1" alignment="0" pref="262" max="32767" attributes="0"/>
|
||||||
<EmptySpace max="-2" attributes="0"/>
|
<Group type="102" attributes="0">
|
||||||
|
<EmptySpace min="-2" pref="5" max="-2" attributes="0"/>
|
||||||
<Component id="backButton" min="-2" pref="23" max="-2" attributes="0"/>
|
<Component id="backButton" min="-2" pref="23" max="-2" attributes="0"/>
|
||||||
<EmptySpace min="0" pref="0" max="-2" attributes="0"/>
|
<EmptySpace min="0" pref="0" max="-2" attributes="0"/>
|
||||||
<Component id="forwardButton" min="-2" pref="23" max="-2" attributes="0"/>
|
<Component id="forwardButton" min="-2" pref="23" max="-2" attributes="0"/>
|
||||||
<EmptySpace pref="206" max="32767" attributes="0"/>
|
<EmptySpace pref="46" max="32767" attributes="0"/>
|
||||||
|
<Component id="showRejectedCheckBox" min="-2" max="-2" attributes="0"/>
|
||||||
|
<EmptySpace max="-2" attributes="0"/>
|
||||||
</Group>
|
</Group>
|
||||||
<Component id="jSeparator1" alignment="0" pref="262" max="32767" attributes="0"/>
|
|
||||||
<Component id="jScrollPane1" alignment="0" pref="262" max="32767" attributes="0"/>
|
|
||||||
</Group>
|
</Group>
|
||||||
</DimensionLayout>
|
</DimensionLayout>
|
||||||
<DimensionLayout dim="1">
|
<DimensionLayout dim="1">
|
||||||
<Group type="103" groupAlignment="0" attributes="0">
|
<Group type="103" groupAlignment="0" attributes="0">
|
||||||
<Group type="102" alignment="0" attributes="0">
|
<Group type="102" alignment="0" attributes="0">
|
||||||
<Group type="103" groupAlignment="0" attributes="0">
|
<EmptySpace min="-2" pref="5" max="-2" attributes="0"/>
|
||||||
<Component id="backButton" min="-2" pref="26" max="-2" attributes="1"/>
|
<Group type="103" groupAlignment="1" attributes="0">
|
||||||
<Component id="forwardButton" min="-2" pref="26" max="-2" attributes="1"/>
|
<Component id="forwardButton" min="-2" pref="26" max="-2" attributes="1"/>
|
||||||
|
<Component id="backButton" min="-2" pref="26" max="-2" attributes="1"/>
|
||||||
|
<Component id="showRejectedCheckBox" min="-2" max="-2" attributes="0"/>
|
||||||
</Group>
|
</Group>
|
||||||
<EmptySpace min="0" pref="0" max="-2" attributes="0"/>
|
<EmptySpace max="-2" attributes="0"/>
|
||||||
<Component id="jSeparator1" min="-2" pref="1" max="-2" attributes="0"/>
|
<Component id="jScrollPane1" min="-2" pref="838" max="-2" attributes="0"/>
|
||||||
<EmptySpace min="-2" pref="0" max="-2" attributes="0"/>
|
|
||||||
<Component id="jScrollPane1" pref="860" max="32767" attributes="0"/>
|
|
||||||
<EmptySpace max="-2" attributes="0"/>
|
<EmptySpace max="-2" attributes="0"/>
|
||||||
</Group>
|
</Group>
|
||||||
</Group>
|
</Group>
|
||||||
@ -122,7 +123,15 @@
|
|||||||
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="forwardButtonActionPerformed"/>
|
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="forwardButtonActionPerformed"/>
|
||||||
</Events>
|
</Events>
|
||||||
</Component>
|
</Component>
|
||||||
<Component class="javax.swing.JSeparator" name="jSeparator1">
|
<Component class="javax.swing.JCheckBox" name="showRejectedCheckBox">
|
||||||
|
<Properties>
|
||||||
|
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.i18n.form.FormI18nStringEditor">
|
||||||
|
<ResourceString bundle="org/sleuthkit/autopsy/directorytree/Bundle.properties" key="DirectoryTreeTopComponent.showRejectedCheckBox.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="showRejectedCheckBoxActionPerformed"/>
|
||||||
|
</Events>
|
||||||
</Component>
|
</Component>
|
||||||
</SubComponents>
|
</SubComponents>
|
||||||
</Form>
|
</Form>
|
||||||
|
@ -57,10 +57,10 @@ import org.sleuthkit.autopsy.corecomponents.DataResultTopComponent;
|
|||||||
import org.sleuthkit.autopsy.corecomponents.TableFilterNode;
|
import org.sleuthkit.autopsy.corecomponents.TableFilterNode;
|
||||||
import org.sleuthkit.autopsy.coreutils.Logger;
|
import org.sleuthkit.autopsy.coreutils.Logger;
|
||||||
import org.sleuthkit.autopsy.coreutils.MessageNotifyUtil;
|
import org.sleuthkit.autopsy.coreutils.MessageNotifyUtil;
|
||||||
|
import org.sleuthkit.autopsy.datamodel.Accounts;
|
||||||
import org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode;
|
import org.sleuthkit.autopsy.datamodel.BlackboardArtifactNode;
|
||||||
import org.sleuthkit.autopsy.datamodel.DataSources;
|
import org.sleuthkit.autopsy.datamodel.DataSources;
|
||||||
import org.sleuthkit.autopsy.datamodel.DataSourcesNode;
|
import org.sleuthkit.autopsy.datamodel.DataSourcesNode;
|
||||||
import org.sleuthkit.autopsy.datamodel.DisplayableItemNode;
|
|
||||||
import org.sleuthkit.autopsy.datamodel.ExtractedContent;
|
import org.sleuthkit.autopsy.datamodel.ExtractedContent;
|
||||||
import org.sleuthkit.autopsy.datamodel.KeywordHits;
|
import org.sleuthkit.autopsy.datamodel.KeywordHits;
|
||||||
import org.sleuthkit.autopsy.datamodel.KnownFileFilterNode;
|
import org.sleuthkit.autopsy.datamodel.KnownFileFilterNode;
|
||||||
@ -68,6 +68,7 @@ import org.sleuthkit.autopsy.datamodel.Reports;
|
|||||||
import org.sleuthkit.autopsy.datamodel.Results;
|
import org.sleuthkit.autopsy.datamodel.Results;
|
||||||
import org.sleuthkit.autopsy.datamodel.ResultsNode;
|
import org.sleuthkit.autopsy.datamodel.ResultsNode;
|
||||||
import org.sleuthkit.autopsy.datamodel.RootContentChildren;
|
import org.sleuthkit.autopsy.datamodel.RootContentChildren;
|
||||||
|
import org.sleuthkit.autopsy.datamodel.SetShowRejected;
|
||||||
import org.sleuthkit.autopsy.datamodel.Tags;
|
import org.sleuthkit.autopsy.datamodel.Tags;
|
||||||
import org.sleuthkit.autopsy.datamodel.Views;
|
import org.sleuthkit.autopsy.datamodel.Views;
|
||||||
import org.sleuthkit.autopsy.datamodel.ViewsNode;
|
import org.sleuthkit.autopsy.datamodel.ViewsNode;
|
||||||
@ -164,65 +165,73 @@ public final class DirectoryTreeTopComponent extends TopComponent implements Dat
|
|||||||
jScrollPane1 = new BeanTreeView();
|
jScrollPane1 = new BeanTreeView();
|
||||||
backButton = new javax.swing.JButton();
|
backButton = new javax.swing.JButton();
|
||||||
forwardButton = new javax.swing.JButton();
|
forwardButton = new javax.swing.JButton();
|
||||||
jSeparator1 = new javax.swing.JSeparator();
|
showRejectedCheckBox = new javax.swing.JCheckBox();
|
||||||
|
|
||||||
jScrollPane1.setBorder(null);
|
jScrollPane1.setBorder(null);
|
||||||
|
|
||||||
backButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/directorytree/btn_step_back.png"))); // NOI18N NON-NLS
|
backButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/directorytree/btn_step_back.png"))); // NOI18N
|
||||||
org.openide.awt.Mnemonics.setLocalizedText(backButton, org.openide.util.NbBundle.getMessage(DirectoryTreeTopComponent.class, "DirectoryTreeTopComponent.backButton.text")); // NOI18N
|
org.openide.awt.Mnemonics.setLocalizedText(backButton, org.openide.util.NbBundle.getMessage(DirectoryTreeTopComponent.class, "DirectoryTreeTopComponent.backButton.text")); // NOI18N
|
||||||
backButton.setBorderPainted(false);
|
backButton.setBorderPainted(false);
|
||||||
backButton.setContentAreaFilled(false);
|
backButton.setContentAreaFilled(false);
|
||||||
backButton.setDisabledIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/directorytree/btn_step_back_disabled.png"))); // NOI18N NON-NLS
|
backButton.setDisabledIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/directorytree/btn_step_back_disabled.png"))); // NOI18N
|
||||||
backButton.setMargin(new java.awt.Insets(2, 0, 2, 0));
|
backButton.setMargin(new java.awt.Insets(2, 0, 2, 0));
|
||||||
backButton.setMaximumSize(new java.awt.Dimension(55, 100));
|
backButton.setMaximumSize(new java.awt.Dimension(55, 100));
|
||||||
backButton.setMinimumSize(new java.awt.Dimension(5, 5));
|
backButton.setMinimumSize(new java.awt.Dimension(5, 5));
|
||||||
backButton.setPreferredSize(new java.awt.Dimension(23, 23));
|
backButton.setPreferredSize(new java.awt.Dimension(23, 23));
|
||||||
backButton.setRolloverIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/directorytree/btn_step_back_hover.png"))); // NOI18N NON-NLS
|
backButton.setRolloverIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/directorytree/btn_step_back_hover.png"))); // NOI18N
|
||||||
backButton.addActionListener(new java.awt.event.ActionListener() {
|
backButton.addActionListener(new java.awt.event.ActionListener() {
|
||||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||||
backButtonActionPerformed(evt);
|
backButtonActionPerformed(evt);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
forwardButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/directorytree/btn_step_forward.png"))); // NOI18N NON-NLS
|
forwardButton.setIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/directorytree/btn_step_forward.png"))); // NOI18N
|
||||||
org.openide.awt.Mnemonics.setLocalizedText(forwardButton, org.openide.util.NbBundle.getMessage(DirectoryTreeTopComponent.class, "DirectoryTreeTopComponent.forwardButton.text")); // NOI18N
|
org.openide.awt.Mnemonics.setLocalizedText(forwardButton, org.openide.util.NbBundle.getMessage(DirectoryTreeTopComponent.class, "DirectoryTreeTopComponent.forwardButton.text")); // NOI18N
|
||||||
forwardButton.setBorderPainted(false);
|
forwardButton.setBorderPainted(false);
|
||||||
forwardButton.setContentAreaFilled(false);
|
forwardButton.setContentAreaFilled(false);
|
||||||
forwardButton.setDisabledIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/directorytree/btn_step_forward_disabled.png"))); // NOI18N NON-NLS
|
forwardButton.setDisabledIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/directorytree/btn_step_forward_disabled.png"))); // NOI18N
|
||||||
forwardButton.setMargin(new java.awt.Insets(2, 0, 2, 0));
|
forwardButton.setMargin(new java.awt.Insets(2, 0, 2, 0));
|
||||||
forwardButton.setMaximumSize(new java.awt.Dimension(55, 100));
|
forwardButton.setMaximumSize(new java.awt.Dimension(55, 100));
|
||||||
forwardButton.setMinimumSize(new java.awt.Dimension(5, 5));
|
forwardButton.setMinimumSize(new java.awt.Dimension(5, 5));
|
||||||
forwardButton.setPreferredSize(new java.awt.Dimension(23, 23));
|
forwardButton.setPreferredSize(new java.awt.Dimension(23, 23));
|
||||||
forwardButton.setRolloverIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/directorytree/btn_step_forward_hover.png"))); // NOI18N NON-NLS
|
forwardButton.setRolloverIcon(new javax.swing.ImageIcon(getClass().getResource("/org/sleuthkit/autopsy/directorytree/btn_step_forward_hover.png"))); // NOI18N
|
||||||
forwardButton.addActionListener(new java.awt.event.ActionListener() {
|
forwardButton.addActionListener(new java.awt.event.ActionListener() {
|
||||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||||
forwardButtonActionPerformed(evt);
|
forwardButtonActionPerformed(evt);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
org.openide.awt.Mnemonics.setLocalizedText(showRejectedCheckBox, org.openide.util.NbBundle.getMessage(DirectoryTreeTopComponent.class, "DirectoryTreeTopComponent.showRejectedCheckBox.text")); // NOI18N
|
||||||
|
showRejectedCheckBox.addActionListener(new java.awt.event.ActionListener() {
|
||||||
|
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||||
|
showRejectedCheckBoxActionPerformed(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(
|
||||||
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||||
|
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 262, Short.MAX_VALUE)
|
||||||
.addGroup(layout.createSequentialGroup()
|
.addGroup(layout.createSequentialGroup()
|
||||||
.addContainerGap()
|
.addGap(5, 5, 5)
|
||||||
.addComponent(backButton, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)
|
.addComponent(backButton, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||||
.addGap(0, 0, 0)
|
.addGap(0, 0, 0)
|
||||||
.addComponent(forwardButton, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)
|
.addComponent(forwardButton, javax.swing.GroupLayout.PREFERRED_SIZE, 23, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||||
.addContainerGap(206, Short.MAX_VALUE))
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 46, Short.MAX_VALUE)
|
||||||
.addComponent(jSeparator1, javax.swing.GroupLayout.DEFAULT_SIZE, 262, Short.MAX_VALUE)
|
.addComponent(showRejectedCheckBox)
|
||||||
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 262, Short.MAX_VALUE)
|
.addContainerGap())
|
||||||
);
|
);
|
||||||
layout.setVerticalGroup(
|
layout.setVerticalGroup(
|
||||||
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||||
.addGroup(layout.createSequentialGroup()
|
.addGroup(layout.createSequentialGroup()
|
||||||
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
.addGap(5, 5, 5)
|
||||||
|
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
|
||||||
|
.addComponent(forwardButton, javax.swing.GroupLayout.PREFERRED_SIZE, 26, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||||
.addComponent(backButton, javax.swing.GroupLayout.PREFERRED_SIZE, 26, javax.swing.GroupLayout.PREFERRED_SIZE)
|
.addComponent(backButton, javax.swing.GroupLayout.PREFERRED_SIZE, 26, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||||
.addComponent(forwardButton, javax.swing.GroupLayout.PREFERRED_SIZE, 26, javax.swing.GroupLayout.PREFERRED_SIZE))
|
.addComponent(showRejectedCheckBox))
|
||||||
.addGap(0, 0, 0)
|
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||||
.addComponent(jSeparator1, javax.swing.GroupLayout.PREFERRED_SIZE, 1, javax.swing.GroupLayout.PREFERRED_SIZE)
|
.addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 838, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||||
.addGap(0, 0, 0)
|
|
||||||
.addComponent(jScrollPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 860, Short.MAX_VALUE)
|
|
||||||
.addContainerGap())
|
.addContainerGap())
|
||||||
);
|
);
|
||||||
}// </editor-fold>//GEN-END:initComponents
|
}// </editor-fold>//GEN-END:initComponents
|
||||||
@ -275,11 +284,16 @@ public final class DirectoryTreeTopComponent extends TopComponent implements Dat
|
|||||||
|
|
||||||
this.setCursor(null);
|
this.setCursor(null);
|
||||||
}//GEN-LAST:event_forwardButtonActionPerformed
|
}//GEN-LAST:event_forwardButtonActionPerformed
|
||||||
|
|
||||||
|
private void showRejectedCheckBoxActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_showRejectedCheckBoxActionPerformed
|
||||||
|
// TODO add your handling code here:
|
||||||
|
}//GEN-LAST:event_showRejectedCheckBoxActionPerformed
|
||||||
|
|
||||||
// Variables declaration - do not modify//GEN-BEGIN:variables
|
// Variables declaration - do not modify//GEN-BEGIN:variables
|
||||||
private javax.swing.JButton backButton;
|
private javax.swing.JButton backButton;
|
||||||
private javax.swing.JButton forwardButton;
|
private javax.swing.JButton forwardButton;
|
||||||
private javax.swing.JScrollPane jScrollPane1;
|
private javax.swing.JScrollPane jScrollPane1;
|
||||||
private javax.swing.JSeparator jSeparator1;
|
private javax.swing.JCheckBox showRejectedCheckBox;
|
||||||
// End of variables declaration//GEN-END:variables
|
// End of variables declaration//GEN-END:variables
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -356,6 +370,7 @@ public final class DirectoryTreeTopComponent extends TopComponent implements Dat
|
|||||||
items.add(new Tags());
|
items.add(new Tags());
|
||||||
items.add(new Reports());
|
items.add(new Reports());
|
||||||
contentChildren = new RootContentChildren(items);
|
contentChildren = new RootContentChildren(items);
|
||||||
|
|
||||||
Node root = new AbstractNode(contentChildren) {
|
Node root = new AbstractNode(contentChildren) {
|
||||||
/**
|
/**
|
||||||
* to override the right click action in the white blank
|
* to override the right click action in the white blank
|
||||||
@ -398,6 +413,9 @@ public final class DirectoryTreeTopComponent extends TopComponent implements Dat
|
|||||||
Children resultsChilds = results.getChildren();
|
Children resultsChilds = results.getChildren();
|
||||||
tree.expandNode(resultsChilds.findChild(KeywordHits.NAME));
|
tree.expandNode(resultsChilds.findChild(KeywordHits.NAME));
|
||||||
tree.expandNode(resultsChilds.findChild(ExtractedContent.NAME));
|
tree.expandNode(resultsChilds.findChild(ExtractedContent.NAME));
|
||||||
|
Accounts accounts = resultsChilds.findChild("Accounts").getLookup().lookup(Accounts.class);
|
||||||
|
showRejectedCheckBox.setAction(new SetShowRejected(accounts));
|
||||||
|
showRejectedCheckBox.setSelected(false);
|
||||||
|
|
||||||
Node views = childNodes.findChild(ViewsNode.NAME);
|
Node views = childNodes.findChild(ViewsNode.NAME);
|
||||||
Children viewsChilds = views.getChildren();
|
Children viewsChilds = views.getChildren();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user