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;
 
   36     private static final Image 
BACK_IMAGE = 
new Image(
"/org/sleuthkit/autopsy/timeline/images/arrow.png", 16, 16, 
true, 
true, 
true); 
 
   41         super(NbBundle.getMessage(
Forward.class, 
"Forward.action.name.text"));
 
   42         setGraphic(
new ImageView(BACK_IMAGE));
 
   43         setAccelerator(
new KeyCodeCombination(KeyCode.RIGHT, KeyCodeCombination.ALT_DOWN));
 
   46         setEventHandler((ActionEvent t) -> {
 
final TimeLineController controller
 
synchronized ZoomParams advance()
 
synchronized ReadOnlyBooleanProperty getCanAdvance()
 
Forward(TimeLineController controller)
 
static final Image BACK_IMAGE