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

us.ihmc.simulationconstructionset.gui.actions.CropBufferAction 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 us.ihmc.simulationconstructionset.commands.CropBufferCommandExecutor;
import us.ihmc.simulationconstructionset.gui.actions.dialogActions.AbstractActionTools;

public class CropBufferAction extends AbstractAction
{
   private static final long serialVersionUID = 5039888169851613916L;

   private CropBufferCommandExecutor executor;

   public CropBufferAction(CropBufferCommandExecutor executor)
   {
      super("Crop Buffer to In/Out");
      this.executor = executor;

      String iconFilename = "icons/CropBuffer.png";
      int shortKey = KeyEvent.VK_C;
      String longDescription = "Long Description";
      String shortDescription = "Short Description";

      AbstractActionTools.setupIconButton(this, iconFilename, shortKey, longDescription, shortDescription);
   }

   @Override
   public void actionPerformed(ActionEvent actionEvent)
   {
      executor.cropBuffer();
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy