19 package org.sleuthkit.autopsy.timeline.actions;
21 import javafx.scene.image.Image;
22 import javafx.scene.image.ImageView;
23 import org.controlsfx.control.action.Action;
24 import org.openide.util.NbBundle;
32 private static final Image
MAGNIFIER_IN =
new Image(
"/org/sleuthkit/autopsy/timeline/images/magnifier-zoom-in-green.png");
34 @NbBundle.Messages({
"ZoomIn.longText=Zoom in to view about half as much time.",
35 "ZoomIn.action.text=Zoom in"})
37 super(Bundle.ZoomIn_action_text());
38 setLongText(Bundle.ZoomIn_longText());
39 setGraphic(
new ImageView(MAGNIFIER_IN));
40 setEventHandler(actionEvent -> {
synchronized void pushZoomInTime()
ZoomIn(TimeLineController controller)
static final Image MAGNIFIER_IN