dmolony-DiskBrowser/src/com/bytezone/diskbrowser/gui/DebuggingAction.java

27 lines
664 B
Java
Raw Normal View History

2016-03-14 22:35:22 +00:00
package com.bytezone.diskbrowser.gui;
import java.awt.event.ActionEvent;
import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.JMenuItem;
import javax.swing.KeyStroke;
public class DebuggingAction extends AbstractAction
{
private final DataPanel owner;
public DebuggingAction (DataPanel owner)
{
super ("Debugging");
putValue (Action.SHORT_DESCRIPTION, "Show debugging information");
2018-07-28 12:00:02 +00:00
putValue (Action.ACCELERATOR_KEY, KeyStroke.getKeyStroke ("meta D"));
2016-03-14 22:35:22 +00:00
this.owner = owner;
}
@Override
public void actionPerformed (ActionEvent e)
{
owner.setDebug (((JMenuItem) e.getSource ()).isSelected ());
}
}