Go to the documentation of this file.
19package org.sleuthkit.autopsy.timeline.actions;
21import java.util.logging.Level;
22import javafx.scene.control.Alert;
23import javafx.scene.image.Image;
24import javafx.scene.image.ImageView;
25import org.controlsfx.control.action.Action;
26import org.openide.util.NbBundle;
27import org.sleuthkit.autopsy.coreutils.Logger;
28import org.sleuthkit.autopsy.timeline.TimeLineController;
29import org.sleuthkit.datamodel.TskCoreException;
38 private static final Image
MAGNIFIER_IN =
new Image(
"/org/sleuthkit/autopsy/timeline/images/magnifier-zoom-in-green.png");
40 @NbBundle.Messages({
"ZoomIn.longText=Zoom in to view about half as much time.",
41 "ZoomIn.action.text=Zoom in",
42 "ZoomIn.errorMessage=Error zooming in."
45 super(Bundle.ZoomIn_action_text());
46 setLongText(Bundle.ZoomIn_longText());
48 setEventHandler(actionEvent -> {
51 }
catch (TskCoreException ex) {
52 new Alert(Alert.AlertType.ERROR, Bundle.ZoomIn_errorMessage()).showAndWait();
53 logger.log(Level.SEVERE,
"Error zooming in.", ex);
synchronized static Logger getLogger(String name)
synchronized void pushZoomInTime()
ZoomIn(TimeLineController controller)
static final Image MAGNIFIER_IN
static final Logger logger
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.