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

29 lines
784 B
Java
Raw Normal View History

2015-06-01 09:35:51 +00:00
package com.bytezone.diskbrowser.gui;
import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent;
import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.JMenuItem;
import javax.swing.JTextArea;
import javax.swing.KeyStroke;
class LineWrapAction extends AbstractAction
{
JTextArea owner;
public LineWrapAction (JTextArea owner)
{
super ("Line wrap");
putValue (Action.SHORT_DESCRIPTION, "Print the contents of the output panel");
putValue (Action.ACCELERATOR_KEY, KeyStroke.getKeyStroke ("alt W"));
putValue (Action.MNEMONIC_KEY, KeyEvent.VK_W);
this.owner = owner;
}
public void actionPerformed (ActionEvent e)
{
owner.setLineWrap (((JMenuItem) e.getSource ()).isSelected ());
}
}