dmolony-DiskBrowser/src/com/bytezone/diskbrowser/gui/DebuggingAction.java
2020-02-08 20:13:51 +10:00

33 lines
1.2 KiB
Java

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");
putValue (Action.ACCELERATOR_KEY, KeyStroke.getKeyStroke ("meta D"));
this.owner = owner;
}
// ---------------------------------------------------------------------------------//
@Override
public void actionPerformed (ActionEvent e)
// ---------------------------------------------------------------------------------//
{
owner.setDebug (((JMenuItem) e.getSource ()).isSelected ());
}
}