Autopsy  4.4
Graphical digital forensics platform for The Sleuth Kit and other tools.
CasePropertiesAction.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2011-2017 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.casemodule;
20 
21 import java.awt.Dimension;
22 import java.awt.Toolkit;
23 import java.awt.event.ActionEvent;
24 import java.beans.PropertyChangeEvent;
25 import javax.swing.Action;
26 import javax.swing.JDialog;
27 import javax.swing.SwingUtilities;
28 import org.openide.util.HelpCtx;
29 import org.openide.util.NbBundle;
30 import org.openide.util.actions.CallableSystemAction;
31 import org.openide.windows.WindowManager;
32 
37 final class CasePropertiesAction extends CallableSystemAction {
38 
39  private static final long serialVersionUID = 1L;
40  private static JDialog casePropertiesDialog;
41 
42  CasePropertiesAction() {
43  putValue(Action.NAME, NbBundle.getMessage(CasePropertiesAction.class, "CTL_CasePropertiesAction"));
44  this.setEnabled(false);
45  Case.addEventSubscriber(Case.Events.CURRENT_CASE.toString(), (PropertyChangeEvent evt) -> {
46  setEnabled(null != evt.getNewValue());
47  });
48  }
49 
50  @Override
51  public void performAction() {
52  SwingUtilities.invokeLater(() -> {
53  String title = NbBundle.getMessage(this.getClass(), "CasePropertiesAction.window.title");
54  casePropertiesDialog = new JDialog(WindowManager.getDefault().getMainWindow(), title, false);
55  CaseInformationPanel caseInformationPanel = new CaseInformationPanel();
56  caseInformationPanel.addCloseButtonAction((ActionEvent e) -> {
57  casePropertiesDialog.setVisible(false);
58  });
59  casePropertiesDialog.add(caseInformationPanel);
60  casePropertiesDialog.setResizable(true);
61  casePropertiesDialog.pack();
62 
63  Dimension screenDimension = Toolkit.getDefaultToolkit().getScreenSize();
64  double w = casePropertiesDialog.getSize().getWidth();
65  double h = casePropertiesDialog.getSize().getHeight();
66  casePropertiesDialog.setLocation((int) ((screenDimension.getWidth() - w) / 2), (int) ((screenDimension.getHeight() - h) / 2));
67  casePropertiesDialog.setVisible(true);
68  casePropertiesDialog.setVisible(true);
69  casePropertiesDialog.toFront();
70  });
71  }
72 
73  @Override
74  public String getName() {
75  return NbBundle.getMessage(CasePropertiesAction.class, "CTL_CasePropertiesAction");
76  }
77 
78  @Override
79  public HelpCtx getHelpCtx() {
80  return HelpCtx.DEFAULT_HELP;
81  }
82 }

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