19 package org.sleuthkit.autopsy.timeline.actions;
21 import javafx.event.ActionEvent;
22 import javafx.scene.image.Image;
23 import javafx.scene.image.ImageView;
24 import javafx.scene.input.KeyCode;
25 import javafx.scene.input.KeyCodeCombination;
26 import org.controlsfx.control.action.Action;
27 import org.openide.util.NbBundle;
34 public class Back extends Action {
36 private static final Image
BACK_IMAGE =
new Image(
"/org/sleuthkit/autopsy/timeline/images/arrow-180.png", 16, 16,
true,
true,
true);
40 @NbBundle.Messages({
"Back.text=Back",
41 "Back.longText=Go back to the last view settings."})
43 super(Bundle.Back_text());
44 setLongText(Bundle.Back_longText());
45 setGraphic(
new ImageView(BACK_IMAGE));
46 setAccelerator(
new KeyCodeCombination(KeyCode.LEFT, KeyCodeCombination.ALT_DOWN));
49 setEventHandler((ActionEvent t) -> {
synchronized ReadOnlyBooleanProperty getCanRetreat()
final TimeLineController controller
static final Image BACK_IMAGE
Back(TimeLineController controller)
synchronized void retreat()