All Downloads are FREE. Search and download functionalities are using the official Maven repository.

us.ihmc.simulationconstructionset.gui.actions.NextCameraKeyAction Maven / Gradle / Ivy

There is a newer version: 0.25.2
Show newest version
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();
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy