mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-14 17:06:16 +00:00
83 lines
2.4 KiB
Java
83 lines
2.4 KiB
Java
/*
|
|
* Autopsy Forensic Browser
|
|
*
|
|
* Copyright 2011 Basis Technology Corp.
|
|
* Contact: carrier <at> sleuthkit <dot> org
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package org.sleuthkit.autopsy.menuactions;
|
|
|
|
import java.beans.PropertyChangeEvent;
|
|
import java.beans.PropertyChangeListener;
|
|
import javax.swing.JMenu;
|
|
import javax.swing.JMenuItem;
|
|
import org.openide.util.HelpCtx;
|
|
import org.openide.util.actions.CallableSystemAction;
|
|
import org.openide.util.actions.Presenter;
|
|
import org.sleuthkit.autopsy.casemodule.Case;
|
|
|
|
/**
|
|
* Menu item tracks the DataResult windows
|
|
*/
|
|
public class DataResultMenu extends CallableSystemAction implements Presenter.Menu, PropertyChangeListener {
|
|
|
|
JMenu menu = new JMenu("DataResult Windows");
|
|
|
|
DataResultMenu(){
|
|
}
|
|
|
|
@Override
|
|
public JMenuItem getMenuPresenter() {
|
|
return new SearchResultMenu();
|
|
}
|
|
|
|
@Override
|
|
public void propertyChange(PropertyChangeEvent evt) {
|
|
String changed = evt.getPropertyName();
|
|
Object oldValue = evt.getOldValue();
|
|
Object newValue = evt.getNewValue();
|
|
|
|
if (changed.equals(Case.CASE_CURRENT_CASE)) {
|
|
if (newValue != null) {
|
|
// enable all menus when a case is created / opened
|
|
int totalMenus = menu.getItemCount();
|
|
for (int i = 0; i < totalMenus; i++) {
|
|
menu.getItem(i).setEnabled(true);
|
|
}
|
|
} else {
|
|
// disable all menus when the case is closed
|
|
int totalMenus = menu.getItemCount();
|
|
for (int i = 0; i < totalMenus; i++) {
|
|
menu.getItem(i).setEnabled(false);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void performAction() {
|
|
|
|
}
|
|
|
|
@Override
|
|
public String getName() {
|
|
return "DataResult Menu";
|
|
}
|
|
|
|
@Override
|
|
public HelpCtx getHelpCtx() {
|
|
return HelpCtx.DEFAULT_HELP;
|
|
}
|
|
} |