Autopsy  4.13.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
OpenGeolocationAction.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2019 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.geolocation;
20 
21 import java.beans.PropertyChangeEvent;
22 import java.beans.PropertyChangeListener;
23 import org.openide.awt.ActionID;
24 import org.openide.awt.ActionReference;
25 import org.openide.awt.ActionReferences;
26 import org.openide.awt.ActionRegistration;
27 import org.openide.util.HelpCtx;
28 import org.openide.util.NbBundle.Messages;
29 import org.openide.util.actions.CallableSystemAction;
30 import org.openide.windows.TopComponent;
31 import org.openide.windows.WindowManager;
34 
40 @ActionID(category = "Tools",
41  id = "org.sleuthkit.autopsy.geolocation.OpenGeolocationAction")
42 @ActionRegistration(displayName = "#CTL_OpenGeolocation", lazy = false)
43 @ActionReferences(value = {
44  @ActionReference(path = "Menu/Tools", position = 102)})
45 public class OpenGeolocationAction extends CallableSystemAction {
46 
47  private static final long serialVersionUID = 1L;
48 
49  @Messages({
50  "OpenGeolocationAction_name=Geolocation",
51  "OpenGeolocationAction_displayName=Geolocation"
52  })
53 
58  setEnabled(false); //disabled by default. Will be enabled in Case.java when a case is opened.
59 
60  PropertyChangeListener caseChangeListener = (PropertyChangeEvent evt) -> {
61  if (evt.getPropertyName().equals(Case.Events.CURRENT_CASE.toString())) {
62  setEnabled(RuntimeProperties.runningWithGUI() && evt.getNewValue() != null);
63  }
64  };
65 
66  Case.addPropertyChangeListener(caseChangeListener);
67  }
68 
69  @Override
70  public void performAction() {
71  final TopComponent topComponent = WindowManager.getDefault().findTopComponent("GeolocationTopComponent");
72  if (topComponent != null) {
73  if (topComponent.isOpened() == false) {
74  topComponent.open();
75  }
76  topComponent.toFront();
77  topComponent.requestActive();
78  }
79  }
80 
81  @Override
82  public String getName() {
83  return Bundle.OpenGeolocationAction_displayName();
84  }
85 
86  @Override
87  public HelpCtx getHelpCtx() {
88  return HelpCtx.DEFAULT_HELP;
89  }
90 
91  @Override
92  public boolean asynchronous() {
93  return false; // run on edt
94  }
95 
96 }
static void addPropertyChangeListener(PropertyChangeListener listener)
Definition: Case.java:449

Copyright © 2012-2019 Basis Technology. Generated on: Tue Jan 7 2020
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.