us.ihmc.simulationconstructionset.gui.actions.NextCameraKeyAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simulation-construction-set
Show all versions of simulation-construction-set
Simulation Construction Set
package us.ihmc.simulationconstructionset.gui.actions;
import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent;
import javax.swing.AbstractAction;
import javax.swing.Action;
import us.ihmc.simulationconstructionset.commands.NextCameraKeyCommandExecutor;
public class NextCameraKeyAction extends AbstractAction
{
private static final long serialVersionUID = -5162293334622550111L;
private NextCameraKeyCommandExecutor executor;
public NextCameraKeyAction(NextCameraKeyCommandExecutor executor)
{
super("Next Camera Key");
this.executor = executor;
putValue(Action.MNEMONIC_KEY, new Integer(KeyEvent.VK_R));
putValue(Action.LONG_DESCRIPTION, "Procedes to the next chronological CameraKey.");
putValue(Action.SHORT_DESCRIPTION, "next camera key");
}
@Override
public void actionPerformed(ActionEvent actionEvent)
{
executor.nextCameraKey();
}
}