Autopsy  4.9.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
Classes | Public Member Functions | Protected Member Functions | Private Member Functions | Private Attributes | Static Private Attributes | List of all members
org.sleuthkit.autopsy.timeline.TimeLineTopComponent Class Reference

Inherits TopComponent, and Provider.

Classes

class  DataContentExplorerPanel
 

Public Member Functions

 TimeLineTopComponent (TimeLineController controller)
 
List< Mode > availableModes (List< Mode > modes)
 
void componentOpened ()
 
ExplorerManager getExplorerManager ()
 

Protected Member Functions

void componentClosed ()
 

Private Member Functions

String getResultViewerSummaryString ()
 
void initComponents ()
 
void syncViewMode ()
 

Private Attributes

final DataContentExplorerPanel contentViewerPanel
 
final TimeLineController controller
 
final DataResultPanel dataResultPanel
 
final ExplorerManager explorerManager = new ExplorerManager()
 
final PropertyChangeListener focusPropertyListener
 
javax.swing.JSplitPane horizontalSplitPane
 
javafx.embed.swing.JFXPanel jFXstatusPanel
 
javafx.embed.swing.JFXPanel jFXViewPanel
 
javax.swing.JPanel leftFillerPanel
 
final ModifiableProxyLookup proxyLookup = new ModifiableProxyLookup()
 
javax.swing.JPanel rightfillerPanel
 
final InvalidationListener selectedEventsListener
 
javax.swing.JSplitPane splitYPane
 

Static Private Attributes

static final Logger logger = Logger.getLogger(TimeLineTopComponent.class.getName())
 

Detailed Description

TopComponent for the Timeline feature.

Definition at line 91 of file TimeLineTopComponent.java.

Constructor & Destructor Documentation

org.sleuthkit.autopsy.timeline.TimeLineTopComponent.TimeLineTopComponent ( TimeLineController  controller)

Member Function Documentation

List<Mode> org.sleuthkit.autopsy.timeline.TimeLineTopComponent.availableModes ( List< Mode >  modes)

Definition at line 355 of file TimeLineTopComponent.java.

void org.sleuthkit.autopsy.timeline.TimeLineTopComponent.componentClosed ( )
protected

Definition at line 457 of file TimeLineTopComponent.java.

void org.sleuthkit.autopsy.timeline.TimeLineTopComponent.componentOpened ( )

Definition at line 447 of file TimeLineTopComponent.java.

ExplorerManager org.sleuthkit.autopsy.timeline.TimeLineTopComponent.getExplorerManager ( )

Definition at line 464 of file TimeLineTopComponent.java.

String org.sleuthkit.autopsy.timeline.TimeLineTopComponent.getResultViewerSummaryString ( )
private

Get the string that should be used as the label above the result table. It displays the time range spanned by the selected events.

Returns
A String representation of all the events displayed.

Definition at line 478 of file TimeLineTopComponent.java.

References org.sleuthkit.autopsy.timeline.TimeLineController.getJodaTimeZone(), and org.sleuthkit.autopsy.timeline.TimeLineController.getZonedFormatter().

void org.sleuthkit.autopsy.timeline.TimeLineTopComponent.initComponents ( )
private

This method is called from within the constructor to initialize the form. WARNING: Do NOT modify this code. The content of this method is always regenerated by the Form Editor.

Definition at line 371 of file TimeLineTopComponent.java.

void org.sleuthkit.autopsy.timeline.TimeLineTopComponent.syncViewMode ( )
private

Definition at line 224 of file TimeLineTopComponent.java.

Member Data Documentation

final DataContentExplorerPanel org.sleuthkit.autopsy.timeline.TimeLineTopComponent.contentViewerPanel
private

Definition at line 96 of file TimeLineTopComponent.java.

final TimeLineController org.sleuthkit.autopsy.timeline.TimeLineTopComponent.controller
private

Definition at line 104 of file TimeLineTopComponent.java.

final DataResultPanel org.sleuthkit.autopsy.timeline.TimeLineTopComponent.dataResultPanel
private

Definition at line 99 of file TimeLineTopComponent.java.

final ExplorerManager org.sleuthkit.autopsy.timeline.TimeLineTopComponent.explorerManager = new ExplorerManager()
private

Definition at line 102 of file TimeLineTopComponent.java.

final PropertyChangeListener org.sleuthkit.autopsy.timeline.TimeLineTopComponent.focusPropertyListener
private
Initial value:
= new PropertyChangeListener() {
@Override
public void propertyChange(final PropertyChangeEvent focusEvent) {
if (focusEvent.getPropertyName().equalsIgnoreCase("focusOwner")) {
final Component newFocusOwner = (Component) focusEvent.getNewValue();
if (newFocusOwner == null) {
return;
}
if (isDescendingFrom(newFocusOwner, contentViewerPanel)) {
proxyLookup.setNewLookups(createLookup(contentViewerPanel.getExplorerManager(), getActionMap()));
} else if (isDescendingFrom(newFocusOwner, TimeLineTopComponent.this)) {
proxyLookup.setNewLookups(createLookup(explorerManager, getActionMap()));
}
}
}
}

Definition at line 109 of file TimeLineTopComponent.java.

javax.swing.JSplitPane org.sleuthkit.autopsy.timeline.TimeLineTopComponent.horizontalSplitPane
private

Definition at line 438 of file TimeLineTopComponent.java.

javafx.embed.swing.JFXPanel org.sleuthkit.autopsy.timeline.TimeLineTopComponent.jFXstatusPanel
private

Definition at line 440 of file TimeLineTopComponent.java.

javafx.embed.swing.JFXPanel org.sleuthkit.autopsy.timeline.TimeLineTopComponent.jFXViewPanel
private

Definition at line 439 of file TimeLineTopComponent.java.

javax.swing.JPanel org.sleuthkit.autopsy.timeline.TimeLineTopComponent.leftFillerPanel
private

Definition at line 441 of file TimeLineTopComponent.java.

final Logger org.sleuthkit.autopsy.timeline.TimeLineTopComponent.logger = Logger.getLogger(TimeLineTopComponent.class.getName())
staticprivate

Definition at line 93 of file TimeLineTopComponent.java.

final ModifiableProxyLookup org.sleuthkit.autopsy.timeline.TimeLineTopComponent.proxyLookup = new ModifiableProxyLookup()
private

Lookup that will be exposed through the (Global Actions Context)

Definition at line 107 of file TimeLineTopComponent.java.

javax.swing.JPanel org.sleuthkit.autopsy.timeline.TimeLineTopComponent.rightfillerPanel
private

Definition at line 442 of file TimeLineTopComponent.java.

final InvalidationListener org.sleuthkit.autopsy.timeline.TimeLineTopComponent.selectedEventsListener
private

Definition at line 154 of file TimeLineTopComponent.java.

javax.swing.JSplitPane org.sleuthkit.autopsy.timeline.TimeLineTopComponent.splitYPane
private

Definition at line 443 of file TimeLineTopComponent.java.


The documentation for this class was generated from the following file:

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