Autopsy  4.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
FileSearchAction.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2011 Basis Technology Corp.
5  * Contact: carrier <at> sleuthkit <dot> org
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19 package org.sleuthkit.autopsy.filesearch;
20 
21 import java.awt.event.ActionEvent;
22 import java.beans.PropertyChangeEvent;
23 import java.beans.PropertyChangeListener;
24 import org.openide.util.HelpCtx;
25 import org.openide.util.NbBundle;
26 import org.openide.util.actions.CallableSystemAction;
29 
30 final class FileSearchAction extends CallableSystemAction implements FileSearchProvider {
31 
32  private static FileSearchAction instance = null;
33 
34  FileSearchAction() {
35  super();
36  setEnabled(Case.isCaseOpen()); //no guarantee listener executed, so check here
37 
38  Case.addPropertyChangeListener(new PropertyChangeListener() {
39 
40  @Override
41  public void propertyChange(PropertyChangeEvent evt) {
42  if (evt.getPropertyName().equals(Case.Events.CURRENT_CASE.toString())) {
43  setEnabled(evt.getNewValue() != null);
44  }
45  }
46 
47  });
48  }
49 
50  public static FileSearchAction getDefault() {
51  if (instance == null) {
52  instance = new FileSearchAction();
53  }
54  return instance;
55  }
56 
57  @Override
58  public void actionPerformed(ActionEvent e) {
59  new FileSearchDialog().setVisible(true);
60  }
61 
62  @Override
63  public void performAction() {
64  new FileSearchDialog().setVisible(true);
65  }
66 
67  @Override
68  public String getName() {
69  return NbBundle.getMessage(this.getClass(), "FileSearchAction.getName.text");
70  }
71 
72  @Override
73  public HelpCtx getHelpCtx() {
74  return HelpCtx.DEFAULT_HELP;
75  }
76 
77  @Override
78  protected boolean asynchronous() {
79  return false;
80  }
81 
82  @Override
83  public void showDialog() {
84  performAction();
85  }
86 }

Copyright © 2012-2016 Basis Technology. Generated on: Tue Oct 25 2016
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.